/* ==========================================================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS (FONTES GOOGLE INTEGRADAS)
   ========================================================================== */
:root {
    --bg-light: #F4F1EC;
    --bg-white: #FCFBFA;
    --text-dark: #1C1C1C;
    --text-muted: #666666;
    --text-light: #FFFFFF;
    --accent-dark: #111111;

    /* Fontes do Google */
    --font-primary: 'Cormorant Garamond', 'Georgia', serif;
    --font-secondary: 'Inter', sans-serif;

    /* Transição Padrão para Efeitos Smooth */
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-primary);
    font-weight: 300;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.text-center {
    text-align: center !important;
}
.text-right { text-align: right; }
.text-left { text-align: left; }

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #cca334;
}


.subtitle-light {
    color: #cca334;
}

.signature-brand {
    font-family: 'Brush Script MT', cursive, serif;
    font-size: 32px;
    color: var(--text-dark);
}

/* ==========================================================================
   BOTÕES E ANIMAÇÕES DE HOVER
   ========================================================================== */
.btn {
    display: inline-block;
    font-family: var(--font-secondary);
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    z-index: 1;
}

/* Botão Escuro Principal */
.btn-primary {
    background: var(--accent-dark);
    color: var(--text-light);
    border: 1px solid var(--accent-dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Botão Secundário Sublinhado */
.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
    padding: 14px 0;
    margin-left: 20px;
}

.btn-secondary:hover {
    color: var(--text-muted);
    border-bottom-color: var(--text-muted);
    padding-left: 10px;
    /* Efeito de leve afastamento para a direita */
}

/* Botão Vazado Escuro */
.btn-outline {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    margin-top: 40px;
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Botão de Agendamento do Rodapé */
.btn-outline-dark {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    display: block;
    text-align: center;
    margin-top: 20px;
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--bg-light);
    letter-spacing: 2px;
    /* Efeito elegante de expansão do texto */
}

/* Links de Texto com seta (->) */
.btn-text {
    font-family: var(--font-secondary);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 4px;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s var(--transition-smooth);
}

.btn-text:hover {
    color: var(--text-muted);
    border-bottom-color: transparent;
    padding-left: 8px;
}

.text-light {
    color: var(--text-light);
    border-color: var(--text-light);
}

.text-light:hover {
    color: #A8A8A8;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    /* Reduzi levemente a altura para ocupar menos espaço ao rolar */
    background-color: rgba(244, 241, 236, 0.9);
    /* Mesma cor de fundo do site com 90% de opacidade */
    backdrop-filter: blur(10px);
    /* Efeito blur de vidro premium moderno */
    -webkit-backdrop-filter: blur(10px);
    /* Suporte para navegadores Safari/iOS */
    position: fixed;
    /* Fixa o menu na tela */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    /* Garante que o menu fique sempre por cima de tudo */
    /* border-bottom: 1px solid rgba(209, 201, 190, 0.4); */
    /* Linha divisória bem sutil */
    transition: all 0.3s var(--transition-smooth);
}

.logo {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    cursor: pointer;
}

.img-logo{
    width: 30%;
    
}

.img-logo-rodape{
    width: 40%;
    
}

.img-selo{
    width: 60%;
}

.nav-links a {
    font-family: var(--font-secondary);
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 15px;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
}

/* Linha sob o menu que expande no hover */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-dark);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    font-family: var(--font-secondary);
    border: 1px solid var(--text-dark);
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition-smooth);
    background: transparent;
}

.btn-nav:hover {
    background: var(--accent-dark);
    color: var(--text-light);
}

.menu-toggle {
    display: none;
}

.mobile-only {
    display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    display: flex;
    height: 100vh;
    min-height: 550px;
    align-items: center;
    background-color: var(--bg-light);
    padding-top: 100px;
    /* Aumentamos o padding para o conteúdo não começar escondido atrás do menu fixo */
}

.hero-content {
    width: 45%;
    padding: 0 8%;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content .highlight {
    font-style: italic;
    color: #cca334;
}

.hero-content p {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 400px;
}

.hero-image {
    width: 55%;
    height: 100%;
    background: #EAE6DF;
    overflow: hidden;
}

.hero-image:hover img {
    transform: scale(1.03);
    /* Efeito suave de zoom na pedra principal */
}

/* ==========================================================================
   QUEM SOMOS
   ========================================================================== */
.about {
    display: flex;
    padding: 100px 8%;
    background-color: var(--bg-white);
    gap: 8%;
    align-items: center;
}

.about-content {
    width: 40%;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.about-grid {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.grid-img {
    height: 350px;
    background: #EEE;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

/* Efeito flutuante individual nas fotos da galeria */
.grid-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.grid-img:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   O QUE FAZEMOS
   ========================================================================== */
.services {
    padding: 100px 8%;
    background-color: var(--bg-light);
}

.services h2 {
    font-size: 42px;
    max-width: 600px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid #D1C9BE;
    padding-top: 50px;
}

.service-card {
    text-align: center !important;
    transition: transform 0.3s var(--transition-smooth);
    padding: 10px;
}

/* Destaca sutilmente o bloco de serviço ao passar o mouse */
.service-card:hover {
    transform: translateY(-3px);
}

.service-card .icon {
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.2);
}

.icon_services{
    margin: 0 auto;
    max-width: 55%;
    min-height: 25%;
}

.icon_services-maury-forte{
    margin: 0 auto;
    max-width: 80%;
    min-height: 25%;
}
.service-card h3 {
    font-size: 14px;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================================
   PRA QUEM FAZEMOS
   ========================================================================== */
.targets {
    padding: 10px 8%;
    background-color: var(--bg-white);
}

.targets h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.targets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.target-card {
    transition: all 0.3s var(--transition-smooth);
}

.img-card{
    max-height: 50%;
    margin-bottom: 10px;
}

.target-card .img-wrapper {
    overflow: hidden;
    height: 280px;
    margin-bottom: 20px;
}

/* Efeito de zoom confinado ao container da imagem do card */
.target-card:hover img {
    transform: scale(1.06);
}

.target-card h3 {
    font-size: 15px;
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.target-card p {
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 15px;
}

/* ==========================================================================
   CARROSSEL / MUSEU ABERTO
   ========================================================================== */

.museum-carousel {
    display: flex;
    background-color: #0E1716;
    color: var(--text-light);
    padding: 20px 0 20px 8%;
    align-items: center;
}

.museum-info {
    width: 35%;
    padding-right: 1%;
}

.museum-info h2 {
    font-size: 46px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.museum-info p {
    font-family: var(--font-secondary);
    color: #A8A8A8;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Container que serve como uma "janela" limitadora */
.carousel-container {
    width: 62%;
    position: relative;
    overflow: hidden;
}

/* O trilho que se move horizontalmente */
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Cada slide ocupa exatamente 1/3 do container descontando os espaçamentos */
.carousel-slide {
    min-width: calc((100% - 40px) / 3);
    /* (100% do espaço - 40px dos dois gaps) dividido por 3 */
    height: 400px;
    background: #222;
    overflow: hidden;
}

.carousel-slide:hover img {
    transform: scale(1.04);
}

.carousel-controls {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--text-light);
    color: #0E1716;
}

/* Ajuste Responsivo para Celulares */
@media (max-width: 768px) {
    .museum-carousel {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .museum-info {
        width: 100%;
        padding-right: 0;
    }

    .carousel-container {
        width: 100%;
    }

    /* Em celulares, fazemos o slide ocupar quase toda a tela lateral (85%) para o usuário ver que há mais itens */
    .carousel-slide {
        min-width: 85%;
        height: 300px;
    }
}


/* ==========================================================================FOOTER========================================================================== */
.main-footer {
    background-color: var(--bg-light);
    padding: 80px 8% 30px 8%;
    border-top: 1px solid #D1C9BE;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid #D1C9BE;
}

.footer-brand h2 {
    font-size: 42px;
    margin-bottom: 40px;
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: bold;
}

.footer-info p {
    font-family: var(--font-secondary);
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-dark);
}

.footer-info p a {
    text-decoration: none;
    color: var(--text-dark);
}

.footer-info p a:hover {
    text-decoration: none;
    color: var(--text-dark);
}


.footer-actions .certified {
    font-family: var(--font-secondary);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-secondary);
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--text-dark);
}

/* ==========================================================================📱 MEDIA QUERIES (RESPONSIVIDADE COMPLETA PARA CELULARES)========================================================================== */
@media (max-width: 1024px) {

    .services-grid,
    .targets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .navbar {
        padding: 15px 5%;
        /* Ajuste de espaçamento compacto para celulares */
        height: 60px;
        /* Definimos uma altura fixa para a barra no celular */
    }

    .hero {
        padding-top: 90px;
        /* Garante que o topo do site não fique cortado no celular */
    }


    .about,
    .services,
    .targets,
    .museum-carousel,
    .main-footer {
        padding: 60px 5%;
    }

    /* Menu Hambúrguer Móvel */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 110;
    }

    .menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--text-dark);
        transition: 0.3s;
    }

    /* Transformações para o botão X */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        display: flex;
        flex-direction: column;
        padding: 100px 40px;
        gap: 20px;
        transition: 0.4s var(--transition-smooth);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        position: fixed;
        top: 60px; 
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-white);
        display: flex;
        flex-direction: column;
        padding: 60px 40px;
        gap: 25px;
        transition: right 0.4s var(--transition-smooth);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        margin: 0;
    }

    .nav-links a::after {
        display: none;
    }

    /* Remove animação de hover pesada na versão mobile */
    .btn-nav.mobile-only {
        text-align: center;
        margin-top: 20px;
    }

    /* Ajustes das Seções para Celular */
    .hero {
        flex-direction: column-reverse;
        height: auto;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        width: 100%;
        padding: 40px 0 0 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin: 0 auto 30px auto;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
        border: 1px solid var(--text-dark);
        padding: 14px;
        text-align: center;
    }

    .hero-image {
        width: 100vw;
        height: 300px;
        margin-left: -5%;
    }

    .about {
        flex-direction: column;
        gap: 40px;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .grid-img {
        height: 220px;
    }

    .services h2,
    .targets h2,
    .footer-brand h2 {
        font-size: 30px;
    }

    .services-grid,
    .targets-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .museum-carousel {
        flex-direction: column;
        padding: 60px 5%;
        gap: 40px;
    }

    .museum-info {
        width: 100%;
        padding-right: 0;
    }

    .museum-info h2 {
        font-size: 32px;
    }

    .carousel-container {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-socials a {
        margin: 0 10px;
    }
}

.page-content {
    background-color: var(--bg-sand);
    color: var(--text-main);
    font-family: var(--font-secondary); /* Garante que o texto corrido siga a fonte 'Inter' */
    margin-top: 75px; 
}

/* Rótulos pequenos em caixa alta usando a fonte geométrica limpa 'Inter' */
.section-label {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 20px;
    color: #cca334;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Links com seta baseados na tipografia 'Inter' */
.btn-arrow {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 5px;
    display: inline-block;
    margin-top: 25px;
    transition: all 0.3s var(--smooth);
}
.btn-arrow:hover {
    color: var(--text-muted);
    border-bottom-color: transparent;
    padding-left: 8px;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.about-hero {
    background-color: var(--bg-sand);
    padding: 80px 0 80px 8%;
}
.about-hero-container {
    display: flex;
    align-items: center;
    gap: 5%;
}
.about-hero-text {
    width: 45%;
}
.about-hero-text h1 {
    font-size: 58px; /* Mantém o mesmo tamanho de destaque do h1 da Home */
    line-height: 1.15;
    margin-bottom: 30px;
}
.about-hero-text p {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--text-muted);
    max-width: 440px;
    line-height: 1.6;
}
.about-hero-image {
    width: 50%;
    height: 520px;
    background-color: #EAE6DF;
    overflow: hidden;
}
.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--smooth);
}
.about-hero-image:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   2. NOSSA ORIGEM
   ========================================================================== */
.origin-section {
    background-color: var(--bg-white);
    padding: 100px 8%;
}
.origin-container {
    display: flex;
    gap: 10%;
}
.origin-text {
    width: 45%;
}
.origin-text h2 {
    font-size: 42px; /* Padronizado com o h2 das seções da Home */
    line-height: 1.2;
    margin-bottom: 30px;
}
.origin-text p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}
.origin-image-placeholder {
    width: 45%;
}

/* ==========================================================================
   3. O SIGNIFICADO DO NOSSO NOME
   ========================================================================== */
.meaning-section {
    background-color: var(--bg-white);
    padding: 40px 8% 100px 8%;
}
.meaning-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 40px auto 0 auto;
    gap: 40px;
}
.meaning-box {
    width: 40%;
}
.meaning-box h3 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 10px;
}
.meaning-box p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--text-muted);
}
.meaning-logo {
    width: 20%;
    display: flex;
    justify-content: center;
}
.logo-icon-mold {
    width: 60px;
    height: 60px;
    border: 1px solid #D1C9BE;
    position: relative;
}

/* ==========================================================================
   4. MANIFESTO (FAIXA ESCURA)
   ========================================================================== */
.manifesto-section {
    background-color: #000000;
    color: var(--text-light);
    padding: 20px 8%;
    text-align: center;
}
.manifesto-container {
    max-width: 700px;
    margin: 0 auto;
}
.manifesto-section h2 {
    font-size: 46px; /* Alinhado ao estilo do h2 do carrossel escuro da Home */
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 35px;
}
.manifesto-section p {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: #A8A8A8;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ==========================================================================
   5. NOSSA FORMA DE TRABALHAR (4 PILARES)
   ========================================================================== */
.pillars-section {
    background-color: var(--bg-sand);
    padding: 100px 8%;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid #D1C9BE;
    padding-top: 40px;
}
.pillar-card {
    transition: transform 0.3s var(--smooth);
}
.pillar-card:hover {
    transform: translateY(-3px);
}
.pillar-card h4 {
    font-family: var(--font-secondary); /* Títulos dos pilares usam a fonte de leitura geométrica */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.pillar-card p {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   6. CURADORIA MAURY FORTI
   ========================================================================== */
.curator-section {
    background-color: var(--bg-white);
    padding: 100px 8%;
}
.curator-container {
    display: flex;
    gap: 8%;
    align-items: center;
}
.curator-left-banner {
    width: 45%;
    /*background-color: #121A19; */
    background-image: url('img/img_005.jpg');
    background-repeat: no-repeat;  
    background-size: cover;        
    background-position: center; 

    padding: 60px 45px;
    height: 480px;
    display: flex;
    align-items: flex-end;
}
.curator-left-banner h3 {
    font-size: 28px;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 40px;
         text-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
}
.btn-banner-talk {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text-light);
    padding-bottom: 5px;
    transition: padding 0.3s ease;
}
.btn-banner-talk:hover {
    padding-left: 6px;
}

.curator-right-content {
    width: 47%;
}
.curator-right-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}
.curator-right-content p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   📱 MEDIA QUERIES (COMPATIBILIDADE INTEGRAL PARA CELULARES)
   ========================================================================== */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .about-hero, .origin-section, .meaning-section, .manifesto-section, .pillars-section, .curator-section {
        padding: 60px 5%;
    }

    /* 1. Hero Mobile */
    .about-hero-container { flex-direction: column; gap: 35px; }
    .about-hero-text { width: 100%; text-align: center; }
    .about-hero-text h1 { font-size: 36px; }
    .about-hero-text p { margin: 0 auto; }
    .about-hero-image { width: 100vw; height: 280px; margin-left: -5%; }

    /* 2. Origem Mobile */
    .origin-container { flex-direction: column; }
    .origin-text { width: 100%; text-align: center; }
    .origin-text h2 { font-size: 32px; }
    .origin-image-placeholder { display: none; } 

    /* 3. Significado do Nome Mobile */
    .meaning-grid { flex-direction: column; gap: 30px; text-align: center; }
    .meaning-box { width: 100%; }
    .text-right, .text-left { text-align: center; }
    .meaning-logo { order: -1; margin-bottom: 10px; } 

    /* 4. Manifesto Mobile */
    .manifesto-section h2 { font-size: 32px; }

    /* 5. Pilares Mobile */
    .pillars-grid { grid-template-columns: 1fr; gap: 35px; }
    .pillar-card { text-align: center; }

    /* 6. Curadoria Maury Forti Mobile */
    .curator-container { flex-direction: column-reverse; gap: 40px; }
    .curator-right-content { width: 100%; text-align: center; }
    .curator-right-content h2 { font-size: 32px; }
    
    .curator-left-banner { 
        width: 100vw; 
        margin-left: -5%; 
        height: auto; 
        padding: 50px 30px; 
        align-items: center; 
        text-align: center;
    }
    .curator-left-banner h3 { font-size: 24px; }
}

/* ==========================================================================
   HEADER DA PÁGINA DE CONTATO (BANNER SUPERIOR ESCURO)
   ========================================================================== */
.contact-hero {
    background-color: #121A19; /* Tom escuro premium do projeto original */
    padding: 60px 8%;
    text-align: center;
}
.contact-hero h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ==========================================================================
   CORPO PRINCIPAL (GRID DO FORMULÁRIO E CANAIS)
   ========================================================================== */
.contact-main {
    padding: 80px 8%;
    background-color: var(--bg-white);
}
.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10%;
    align-items: start;
}

/* Coluna Esquerda: Canais de Atendimento */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.channel-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.channel-icon {
    width: 44px;
    height: 44px;
    background-color: #333333; /* Círculo escuro para os ícones */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.channel-text h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
}
.channel-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Coluna Direita: Formulário */
.contact-form-block {
    width: 100%;
}
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 14px;
    border: 1px solid #E0E0E0;
    background-color: #FAFAFA;
    color: var(--text-main);
    transition: all 0.3s var(--smooth);
    outline: none;
}
/* Efeitos de foco nos inputs */
.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--text-main);
    background-color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.form-group textarea {
    resize: vertical;
}

/* Botão de Enviar */
.btn-submit {
    background-color: #2F2A26; /* Tom marrom escuro plano baseado no seu layout original */
    color: #FFFFFF;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s var(--smooth);
    letter-spacing: 0.5px;
}
.btn-submit:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ==========================================================================
   SEÇÃO DO MAPA
   ========================================================================== */
.map-section {
    background-color: #121A19;
    padding-top: 50px;
}
.map-header {
    text-align: center;
    padding-bottom: 35px;
}
.map-header h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 2px;
}
.map-container {
    width: 100%;
    line-height: 0; /* Remove pequenos espaços em branco abaixo do iframe */
}

/* ==========================================================================
   📱 MEDIA QUERIES (RESPONSIVIDADE COMPLETA PARA CELULARES)
   ========================================================================== */
@media (max-width: 968px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-hero { padding: 40px 5%; }
    .contact-hero h1 { font-size: 32px; }
    
    .contact-main { padding: 50px 5%; }
    .form-row-2 { grid-template-columns: 1fr; gap: 20px; }
    
    .channel-text h3 { font-size: 22px; }
    .btn-submit { width: 100%; text-align: center; } /* Botão ocupa a largura total no celular */
    
    .map-header h2 { font-size: 26px; }
}