.ctaSection {
    background: #eee2b0;
    color: #0b2941;
    text-align: center;
    padding: 100px 40px;
    border-radius: 24px;
    margin: 40px auto;
    max-width: 900px;
    width: calc(100% - 48px);
}
.ctaTitle {
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 20px;
}
.ctaSubtitle {
    font-size: 18px;
    color: #3a3020;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.5;
}
.ctaEmail {
    font-size: 16px;
    color: #7a6a40;
    margin-bottom: 32px;
}
.ctaButton {
    display: inline-block;
    background: #ff6501;
    color: white;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}
.ctaButton:hover {
    background: #e55a00;
    transform: scale(1.04);
}
/* ===========================
   FOOTER NUEVO
=========================== */
.footer {
    background: #ec671c;
    border-top: 1px solid rgba(255,101,1,0.25);
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    border-radius: 16px;
    padding: 28px 32px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    height: auto;
    margin: 0 24px 10px; /* 👈 menos espacio abajo */
}
.footerNav {
    display: flex;
    gap: 14px;
}
.footerNav a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.2s;
}
.footerNav a:hover { 
    color: #ff6501; }
.footerCopy{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:12px;
    color:#fcfcfc;
    text-align:center;
}
.footerBrand {
    font-size: 11px;
    color: #ffffff;
}
.footerSocial {
    display: flex;
    gap: 12px;
}
.footerSocial a {
    background: #0b3d62;
    color: white;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.footerSocial a:hover {
    background: #0b3d62;
    color: white;
    transform: none;
}
/* ===========================
   RESPONSIVE FOOTER + CTA
=========================== */
@media (max-width: 768px) {
    .ctaSection {
        padding: 60px 24px;
        margin: 20px auto;
        width: calc(100% - 24px);
        border-radius: 16px;
    }

    .ctaTitle {
        font-size: 30px;
    }

    .ctaSubtitle {
        font-size: 15px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        padding: 28px 20px;
        gap: 20px;
        text-align: center;
    }

    .footerNav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footerSocial {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.footerPrivacy:hover{
    color:var(--orange);
}
.footerTop{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.footerDivider{
    width:1px;
    height:18px;
    background:white;
}

.footerPrivacy{
    color:white;
    text-decoration:none;
}

.footerPrivacy:hover{
    color:var(--orange);
}

.footerBrand{
    font-size:11px;
    color:white;
}
@media (max-width: 1366px){

    .footer{
        gap:12px;
        padding:20px;
    }

    .footerNav{
        gap:12px;
    }

    .footerSocial{
        gap:8px;
    }

    .footerSocial a{
        padding:8px 10px;
        font-size:12px;
    }

    .footerTop{
        flex-wrap:wrap;
        justify-content:center;
    }

}