/* =============================================
   CSS VARIABLES
============================================= */
:root {
    --gold: #d4af37;
    --gold-dark: #b8941e;
    --gold-light: #e8c84a;
    --graphite: #1a1a1a;
    --graphite-mid: #2d2d2d;
    --off-white: #fdfbf7;
    --beige: #f5f2eb;
    --text-dark: #222222;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.22);
    --radius: 4px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* =============================================
   HEADER
============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--graphite);
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    width: 150px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.header-nav a:hover {
    color: var(--gold);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-nav a.active {
    color: var(--gold);
}

.header-nav a.active::after {
    width: 100%;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.header-contacts a {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.header-contacts a:hover {
    color: var(--gold-light);
}

.header-contacts a svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.98);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
}

.mobile-nav-container a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    padding: 8px 0;
}

.mobile-nav-container a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1003;
}

.close-menu::before,
.close-menu::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.close-menu::before {
    transform: rotate(45deg);
}

.close-menu::after {
    transform: rotate(-45deg);
}

/* =============================================
   PAGE HEADER (BANNER INTERNO)
============================================= */
.page-header {
    margin-top: 72px;
    background: linear-gradient(rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.85)), url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYQpqL8rdSDq9wEzDDLsjwA9j5uEcXQIftrg1so-7_cgx5UKKHr7QMEgtiRFZeKEqNbbmYKy4pWaUIEs1u7QeiI8UwnWagEdSg0qJfVYl8Mt9tZ3Lal7NZ2zSLASAaG2pG7G1jEbam1qQi2eLYdauIb5jN9CwwzwUPYwUIIjizAuZWlXzSPNx0lY2w2Z2j/s1672/banner%20principal.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    margin-bottom: 24px;
    font-size: 12px;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb a:hover {
    color: var(--gold);
}

.page-header .breadcrumb span {
    color: var(--gold);
    margin: 0 8px;
}

.page-header .breadcrumb .current {
    color: var(--white);
}

/* =============================================
   ABOUT CONTENT
============================================= */
.about-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--graphite);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 16px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.about-text .subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* =============================================
   MISSÃO, VISÃO, VALORES
============================================= */
.mvv-section {
    padding: 80px 40px;
    background: var(--beige);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--gold);
}

.mvv-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--graphite);
    margin-bottom: 16px;
}

.mvv-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* =============================================
   VALORES LISTA
============================================= */
.valores-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.valores-header {
    text-align: center;
    margin-bottom: 60px;
}

.valores-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--graphite);
    margin-bottom: 12px;
}

.valores-header p {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.title-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 16px auto 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.valor-item {
    text-align: center;
    padding: 24px;
}

.valor-item .numero {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.valor-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 12px;
}

.valor-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =============================================
   EQUIPE
============================================= */
.equipe-section {
    padding: 80px 40px;
    background: var(--beige);
}

.equipe-header {
    text-align: center;
    margin-bottom: 60px;
}

.equipe-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--graphite);
    margin-bottom: 12px;
}

.equipe-header p {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.membro-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.membro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.membro-img {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #2c3e50, #4a6278);
    display: flex;
    align-items: center;
    justify-content: center;
}

.membro-img svg {
    width: 80px;
    height: 80px;
    fill: rgba(255, 255, 255, 0.3);
}

.membro-info {
    padding: 24px;
}

.membro-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 6px;
}

.membro-info .cargo {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.membro-info .descricao {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.membro-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.membro-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.membro-social a:hover {
    background: var(--gold);
}

.membro-social a svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    transition: var(--transition);
}

.membro-social a:hover svg {
    fill: var(--graphite);
}

/* =============================================
   NUMBERS SECTION
============================================= */
.numbers-section {
    padding: 80px 40px;
    background: var(--graphite);
    color: var(--white);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.number-item .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.number-item .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYQpqL8rdSDq9wEzDDLsjwA9j5uEcXQIftrg1so-7_cgx5UKKHr7QMEgtiRFZeKEqNbbmYKy4pWaUIEs1u7QeiI8UwnWagEdSg0qJfVYl8Mt9tZ3Lal7NZ2zSLASAaG2pG7G1jEbam1qQi2eLYdauIb5jN9CwwzwUPYwUIIjizAuZWlXzSPNx0lY2w2Z2j/s1672/banner%20principal.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold,
.btn-outline-white {
    display: inline-block;
    padding: 14px 36px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: var(--radius);
    cursor: pointer;
}

.btn-gold {
    background: var(--gold);
    color: var(--graphite);
}

.btn-gold:hover {
    background: var(--gold-dark);
}

.btn-outline-white {
    border: 1.5px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--graphite);
}

/* =============================================
   FOOTER
============================================= */
.footer-onde-estamos {
    background: var(--graphite-mid);
    padding: 72px 0 0;
}

.footer-title {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 40px;
}

.footer-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-title p {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    min-height: 400px;
}

.footer-contacts-col {
    padding: 52px 72px 52px 52px;
    background: var(--graphite);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-block {
    margin-bottom: 40px;
}

.footer-block-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-block-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--graphite);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
}

.contact-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-item a {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}
.trust-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.badge svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.4);
}

.badge span {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .trust-badges {
        justify-content: center;
    }
}
.footer-map-col {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.footer-map-col iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    display: block;
    min-height: 400px;
}

.footer-bottom {
    background: var(--gold);
    height: 8px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    header {
        justify-content: flex-start;
        gap: 20px;
    }

    .header-logo {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    .page-header {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .about-section {
        padding: 50px 20px;
    }

    .mvv-section {
        padding: 50px 20px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .valores-section {
        padding: 50px 20px;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .equipe-section {
        padding: 50px 20px;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .numbers-section {
        padding: 50px 20px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-contacts-col {
        padding: 40px 32px;
    }

    .footer-map-col {
        min-height: 300px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}