/* ==========================
   CONDICIONES INGENY
========================== */

.ingeny-condiciones{
    background:#F8F6F2;
}

.section-subtitle{
    display:block;
    margin-bottom:15px;

    font-family:'Inter',sans-serif;
    font-size:13px;
    font-weight:500;

    letter-spacing:3px;
    text-transform:uppercase;

    color:#B08A4F;
}

.section-title{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    font-weight:500;

    color:#2A2A2A;

    margin-bottom:15px;
}

.section-line{
    width:80px;
    height:1px;

    background:#C6A769;

    margin:0 auto 25px;
}

.section-description{
    max-width:700px;
    margin:auto;

    color:#6A645B;
    font-size:18px;
    line-height:1.8;
}

.condicion-card{
    background:#FFFFFF;

    padding:35px;

    height:100%;

    border:1px solid #E8E0D5;

    transition:.3s;
}

.condicion-card:hover{
    transform:translateY(-5px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.06);
}

.condicion-card span{
    display:block;

    font-family:'Cormorant Garamond',serif;
    font-size:46px;

    color:#C6A769;

    margin-bottom:15px;
}

.condicion-card h3{
    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    margin-bottom:15px;

    color:#2A2A2A;
}

.condicion-card p{
    font-family:'Inter',sans-serif;

    font-size:15px;
    line-height:1.8;

    color:#6A645B;

    margin:0;
}

.destacada{
    background:#FFFDF9;
    border:2px solid #C6A769;
}

/* ===================================================
   FAQ PREMIUM
=================================================== */

.faq-section{
    padding:120px 0;
    background:#F8F5F1;
}

.faq-header{
    margin-bottom:70px;
}

.faq-subtitle{
    display:block;

    color:#B08A4F;

    letter-spacing:4px;
    font-size:13px;

    font-weight:600;

    margin-bottom:15px;
}

.faq-title{
    font-family:'Cormorant Garamond', serif;
    font-size:58px;
    color:#2A2A2A;

    margin-bottom:20px;
}

.faq-line{
    width:90px;
    height:1px;

    background:#C6A769;

    margin:0 auto 25px;
}

.faq-description{
    max-width:700px;
    margin:auto;

    color:#6B665F;
    font-size:18px;
}

/* TARJETAS */

.faq-card{

    position:relative;

    background:#FFF;

    padding:35px;

    border-radius:20px;

    border:1px solid #EFE8DD;

    height:100%;

    transition:all .35s ease;

    box-shadow:
        0 8px 25px rgba(0,0,0,.04);
}

/* BARRA DECORATIVA */

.faq-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#C6A769;

    transform:scaleX(0);

    transition:.35s;

    border-radius:20px 20px 0 0;
}

/* HOVER */

.faq-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.10);

    border-color:#D9BC87;
}

.faq-card:hover::before{
    transform:scaleX(1);
}

.faq-icon{

    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#F7F1E8;

    margin-bottom:25px;

    transition:.35s;
}

.faq-icon i{

    font-size:26px;

    color:#B08A4F;
}

.faq-card:hover .faq-icon{

    background:#C6A769;
    transform:rotate(10deg);
}

.faq-card:hover .faq-icon i{
    color:white;
}

/* TITULO */

.faq-card h3{

    font-family:'Cormorant Garamond', serif;

    font-size:34px;

    line-height:1.2;

    margin-bottom:18px;

    color:#2A2A2A;
}

/* TEXTO */

.faq-card p{

    font-family:'Inter', sans-serif;

    font-size:16px;

    line-height:1.8;

    color:#66605A;

    margin:0;
}

/* RESPONSIVE */

@media(max-width:768px){

    .faq-section{
        padding:80px 0;
    }

    .faq-title{
        font-size:42px;
    }

    .faq-card{
        padding:28px;
    }

    .faq-card h3{
        font-size:28px;
    }

}