/************ Site footer ************/
.site-footer {
    background: #223a59;
    color: #d7dce4;
    font-family: "Inter", sans-serif;
}

.site-footer .footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 56px 20px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 40px;
}

.site-footer h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
}

/* Brand column */
.footer-brand .footer-logo {
    max-height: 100px;
    width: auto;
    margin-bottom: 16px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
}

.footer-brand p {
    color: #b9c1cd;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Links column */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d7dce4;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
    color: #e0b96a;
    padding-left: 4px;
}

/* Contact column */
.footer-contact .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #b9c1cd;
}

.footer-contact .footer-contact-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #e0b96a;
}

.footer-contact a {
    color: #b9c1cd;
    text-decoration: none;
    transition: color 0.25s ease;
    word-break: break-word;
}

.footer-contact a:hover {
    color: #e0b96a;
}

/* Social row */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: #e0b96a;
    border-color: #e0b96a;
    color: #223a59;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 18px 20px;
    font-size: 0.85rem;
    color: #9aa4b2;
}

/************ CTA banner "Vamos conversar?" (site-wide, above footer) ************/
.cta-banner {
    position: relative;
    width: 100%;
    background-image:
        linear-gradient(to right, rgba(40, 31, 18, 0.88) 0%, rgba(40, 31, 18, 0.6) 55%, rgba(40, 31, 18, 0.35) 100%),
        url('../images/vamos-conversar.jpg');
    background-size: cover;
    background-position: center 40%;
}

.cta-banner .cta-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cta-banner h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 60px;
    text-align: center;
}

/* Home CTA: heading and button left-aligned, gap between them centered on the banner (wider screens) */
@media (min-width: 768px) {
    .cta-home .cta-inner {
        position: relative;
        min-height: 250px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .cta-home h2 {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: calc(50% + 24px);
        margin: 0;
        text-align: left;
    }

    .cta-home .btn-gold {
        position: absolute;
        left: 20px;
        top: calc(50% + 24px);
    }
}

.cta-banner p {
    color: #f0e9dd;
    font-size: 1.15rem;
    margin: 0 0 30px;
    max-width: 480px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #b67a1c;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-gold:hover {
    background: #9c6716;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-gold .btn-arrow {
    display: flex;
    align-items: center;
}

.btn-gold:hover .btn-arrow {
    transform: translateX(4px);
}

/************ Responsive ************/
@media (max-width: 768px) {
    .site-footer .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 44px 22px 32px;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .cta-banner .cta-inner {
        padding: 70px 20px;
    }

    .cta-banner h2 {
        font-size: 2.3rem;
    }
}
