.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;
}
.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; 
}
.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;
        transform: translateX(130px); /* ajusta el valor */

}
.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;
}
@media (max-width: 768px) {
    .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;
    }
}