﻿/* AHORROS */
#productos{
    padding:120px 8% 80px;
    background:#f8fafc;
}
/* TITULO */
#productos .titulo{
    text-align:center;
    margin-bottom:70px;
}
#productos .titulo h2{
    font-size:60px;
    font-weight:800;
    color:#005ca8;
    margin-bottom:18px;
    position:relative;
    display:inline-block;
}
#productos .titulo h2::after{
    content:"";
    width:120px;
    height:5px;
    background:#005ca8;
    display:block;
    margin:18px auto 0;
    border-radius:10px;
}
#productos .titulo p{
    font-size:22px;
    color:#555;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}
/* CONTENEDOR */
.contenedor-productos{
    display:flex;
    flex-direction:column;
    gap:60px;
}
/* TARJETA */
.producto-card{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));
    align-items:center;
    gap:50px;
    background:white;
    padding:45px;
    border-radius:35px;
    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}
.producto-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 20px 45px rgba(0,0,0,.12);
}
/* REVERSE */
.producto-card.reverse .producto-img{
    order:2;
}
.producto-card.reverse .producto-info{
    order:1;
}
/* IMAGEN */
.producto-img img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:28px;
    transition:.4s;
    box-shadow:
    0 12px 30px rgba(0,0,0,.15);
}
.producto-card:hover .producto-img img{
    transform:scale(1.03);
}
/* INFO */
.producto-info h3{
    font-size:48px;
    color:#005ca8;
    margin-bottom:25px;
    font-weight:800;
}
.producto-info p{
    font-size:20px;
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}
/* BENEFICIOS */
.beneficio{
    background:#005ca8;
    color:white;
    padding:14px 22px;
    border-radius:15px;
    margin-bottom:15px;
    font-weight:600;
    width:fit-content;
    box-shadow:
    0 6px 15px rgba(0,0,0,.1);
}
/* MOBILE */
@media(max-width:900px){
    #productos .titulo h2{
        font-size:42px;
    }
    #productos .titulo p{
        font-size:18px;
    }
    .producto-card{
        display:flex;
        flex-direction:column;
        padding:25px;
        gap:30px;
    }
    .producto-info{
        order:1;
    }
    .producto-img{
        order:2;
    }
    .producto-info h3{
        font-size:34px;
        text-align:center;
    }
    .producto-info p{
        font-size:17px;
        text-align:center;
    }
    .beneficio{
        margin:0 auto 15px;
        text-align:center;
    }
    .producto-img img{
        height:250px;
        border-radius:20px;
    }
}
.btn-proyectar{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
    padding:15px 28px;
    background:#176c22;
    color:white;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}
.btn-proyectar:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 25px rgba(0,0,0,.18);
}
.btn-proyectar i{
    font-size:18px;
}