/* ============================================================ */
/* BLOCO 1: PRINCIPAL — Reset, Variáveis, Acessibilidade, Nav, Hero, Mapa, Seções, Footer, Responsivo */
/* Origem: index.html linhas 148–3240 */
/* ============================================================ */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --forest-deep: #0a3d2e;
            --mate-green: #2d5016;
            --polish-red: #dc143c;
            --earth-brown: #8b4513;
            --gold-polish: #d4a574;
            --gold: #d4a574;
            --cream-light: #f8f6f0;
            --cream: #f9f7f4;
            --white-pure: #ffffff;
            --white: #ffffff;
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Raleway', sans-serif;
        }

        html, body {
            overflow-x: hidden;
        }
        body {
            font-family: var(--font-body);
        }

        /* ============================================
           BARRA DE ACESSIBILIDADE - eMAG
           Conformidade com Lei Brasileira de Inclusão
        ============================================ */
        /* Trilho branco da barra de progresso */
        #sms-scroll-track {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgba(255,255,255,0.55);
            z-index: 10001;
            pointer-events: none;
        }
        /* Barra de progresso de scroll (preenchimento dourado) */
        #sms-scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            width: 0%;
            background: var(--gold-polish);
            z-index: 10002;
            transition: width .1s linear;
            pointer-events: none;
        }
        /* Skip links — invisíveis até receber foco via Tab */
        .skip-links { position: fixed; top: 0; left: 0; z-index: 10010; }
        .skip-links a { position: absolute; top: -9999px; left: 0; background: var(--gold-polish); color: #1a1a1a; padding: .75rem 1.25rem; font-weight: bold; text-decoration: none; white-space: nowrap; border-radius: 0 0 6px 0; }
        .skip-links a:focus { top: 0; outline: 3px solid #1a1a1a; outline-offset: 2px; }

        .accessibility-bar {
            background: #1a1a1a;
            color: #ffffff;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            position: relative;
            z-index: 10001;
        }

        .accessibility-bar .container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .accessibility-bar .shortcuts {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .accessibility-bar a,
        .accessibility-bar button {
            color: #ffffff;
            text-decoration: none;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }

        .accessibility-bar a:hover,
        .accessibility-bar a:focus,
        .accessibility-bar button:hover,
        .accessibility-bar button:focus {
            background: var(--gold-polish);
            color: #1a1a1a;
            border-color: var(--gold-polish);
            outline: 2px solid #ffffff;
            outline-offset: 2px;
        }

        .accessibility-bar .controls {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .accessibility-bar .font-controls {
            display: flex;
            gap: 0.25rem;
        }

        .accessibility-bar .font-controls button {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .accessibility-bar .contrast-btn {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        /* Skip Links para leitores de tela */
        .skip-links {
            position: absolute;
            top: -100px;
            left: 0;
            z-index: 10002;
        }

        .skip-links a {
            position: absolute;
            background: var(--gold-polish);
            color: #1a1a1a;
            padding: 1rem;
            font-weight: bold;
            text-decoration: none;
        }

        .skip-links a:focus {
            top: 100px;
            outline: 3px solid #1a1a1a;
        }

        /* Alto Contraste */
        body.high-contrast {
            background: #000000 !important;
            color: #ffff00 !important;
        }

        body.high-contrast * {
            background-color: #000000 !important;
            color: #ffff00 !important;
            border-color: #ffff00 !important;
        }

        body.high-contrast img {
            filter: grayscale(100%) contrast(120%);
        }

        body.high-contrast a {
            color: #00ffff !important;
            text-decoration: underline !important;
        }

        body.high-contrast .nav,
        body.high-contrast .accessibility-bar {
            background: #000000 !important;
            border-bottom: 2px solid #ffff00 !important;
        }

        body.high-contrast .btn,
        body.high-contrast button {
            background: #ffff00 !important;
            color: #000000 !important;
            border: 2px solid #ffff00 !important;
        }

        /* Fonte aumentada */
        body.font-large {
            font-size: 120% !important;
        }

        body.font-larger {
            font-size: 140% !important;
        }

        /* Responsivo barra acessibilidade */
        @media (max-width: 768px) {
            .accessibility-bar {
                padding: 0.4rem 0.75rem;
            }

            .accessibility-bar .container {
                justify-content: center;
            }

            .accessibility-bar .shortcuts {
                display: none;
            }

            .accessibility-bar .controls {
                width: 100%;
                justify-content: center;
            }
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 42px; /* 4px progresso + 38px barra acessibilidade */
            left: 0;
            right: 0;
            z-index: 9999;
            padding: 1.5rem 2rem;
            background: linear-gradient(180deg, 
                rgba(10, 61, 46, 0.95) 0%, 
                rgba(10, 61, 46, 0.7) 70%,
                transparent 100%);
            backdrop-filter: blur(20px);
        }

        /* Ajustar scroll para considerar barra de acessibilidade */
        html {
            scroll-padding-top: 150px;
        }

        /* Barra de acessibilidade fixa logo abaixo da barra de progresso */
        .accessibility-bar {
            position: fixed;
            top: 4px;
            left: 0;
            right: 0;
            z-index: 10001;
        }

        .nav-container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo img {
            height: 90px;
            width: auto;
            max-width: 350px;
        }
        @media (max-width: 768px) {
            .nav-logo img { height: 60px; max-width: 220px; }
        }

        .nav-links {
            display: flex;
            gap: 1rem;
            list-style: none;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a, .nav-links .dropdown-toggle {
            color: var(--white-pure);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.8rem;
            padding: 0.5rem 0.75rem;
            border-radius: 5px;
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            background: none;
            border: none;
            font-family: inherit;
        }

        .nav-links a:hover, .nav-links .dropdown-toggle:hover {
            background: rgba(212, 165, 116, 0.2);
        }

        /* Botão de Login */
        .nav-login-btn {
            background: linear-gradient(135deg, var(--gold-polish), #c4956a) !important;
            color: var(--forest-deep) !important;
            font-weight: 600 !important;
            border-radius: 25px !important;
            padding: 0.6rem 1.2rem !important;
        }

        .nav-login-btn:hover {
            background: linear-gradient(135deg, #c4956a, #b38559) !important;
            transform: scale(1.05);
        }

        .dropdown-toggle .arrow {
            font-size: 0.6rem;
            transition: transform 0.3s;
        }

        .nav-links li:hover .dropdown-toggle .arrow {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            z-index: 1000;
            padding: 0.5rem 0;
        }

        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            color: var(--forest-deep) !important;
            padding: 0.75rem 1.25rem;
            font-size: 0.85rem;
            text-transform: none;
            border-radius: 0;
        }

        .dropdown-menu a:hover {
            background: var(--cream-light) !important;
            color: var(--gold-polish) !important;
        }

        .dropdown-menu .divider {
            height: 1px;
            background: #eee;
            margin: 0.5rem 0;
        }

        /* ============================================
           MENU HAMBURGER - MOBILE
        ============================================ */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            cursor: pointer;
            z-index: 10001;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-toggle:hover,
        .nav-toggle:focus {
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--gold-polish);
            outline: none;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9997;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ============================================
           RESPONSIVO - MOBILE MENU
        ============================================ */
        @media (max-width: 968px) {
            .nav-toggle {
                display: flex !important;
            }

            .nav-links {
                position: fixed !important;
                top: 0 !important;
                right: -100% !important;
                width: 85% !important;
                max-width: 320px !important;
                height: 100vh !important;
                height: 100dvh !important;
                background: linear-gradient(180deg, var(--forest-deep) 0%, #062118 100%) !important;
                flex-direction: column !important;
                padding: 90px 0 2rem 0 !important;
                gap: 0 !important;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
                z-index: 9998 !important;
                overflow-y: auto !important;
                box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5) !important;
                list-style: none !important;
            }

            .nav-links.active {
                right: 0 !important;
            }

            .nav-links li {
                width: 100% !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
                list-style: none !important;
            }

            .nav-links li:last-child {
                border-bottom: none !important;
            }

            .nav-links a {
                display: block !important;
                padding: 1rem 1.5rem !important;
                font-size: 1.1rem !important;
                border-radius: 0 !important;
                color: white !important;
                text-decoration: none !important;
            }

            .nav-links a:hover,
            .nav-links a:focus {
                background: rgba(212, 165, 116, 0.2) !important;
                padding-left: 2rem !important;
            }

            /* Dropdown Toggle no Mobile */
            .nav-links .dropdown-toggle {
                display: block !important;
                width: 100% !important;
                padding: 1rem 1.5rem !important;
                font-size: 1.1rem !important;
                text-align: left !important;
                color: white !important;
                text-transform: uppercase !important;
            }

            .nav-links .dropdown-toggle:hover,
            .nav-links .dropdown-toggle:focus {
                background: rgba(212, 165, 116, 0.2) !important;
            }

            .nav-links .dropdown-toggle .arrow {
                float: right;
                transition: transform 0.3s;
            }

            .nav-links li.dropdown-open .dropdown-toggle .arrow {
                transform: rotate(180deg);
            }

            /* Dropdown Menu no Mobile */
            .nav-links .dropdown-menu {
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                background: rgba(0,0,0,0.2) !important;
                box-shadow: none !important;
                border-radius: 0 !important;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                padding: 0 !important;
            }

            .nav-links li.dropdown-open .dropdown-menu {
                max-height: 500px;
            }

            .nav-links .dropdown-menu a {
                color: white !important;
                padding: 0.75rem 1.5rem 0.75rem 2.5rem !important;
                font-size: 0.95rem !important;
                text-transform: none !important;
            }

            .nav-links .dropdown-menu a:hover {
                background: rgba(212, 165, 116, 0.3) !important;
                color: var(--gold-polish) !important;
            }

            .nav-links .dropdown-menu .divider {
                background: rgba(255,255,255,0.1) !important;
                margin: 0.25rem 1rem !important;
            }

            /* Language selector no mobile */
            .nav-links li:has(.language-selector) {
                padding: 1rem 1.5rem !important;
                border-bottom: none !important;
            }

            .nav-links .language-selector {
                width: 100% !important;
                margin: 0 !important;
            }

            .nav-links .current-language {
                width: 100% !important;
                justify-content: center !important;
            }

            .nav-links .language-dropdown {
                position: relative !important;
                top: auto !important;
                right: auto !important;
                left: auto !important;
                width: 100% !important;
                margin-top: 0.5rem !important;
                box-shadow: none !important;
                background: rgba(255,255,255,0.1) !important;
                border-radius: 10px !important;
            }

            .nav-links .language-dropdown .lang-option {
                color: white !important;
            }

            .nav-links .language-dropdown .lang-option:hover {
                background: rgba(255,255,255,0.1) !important;
            }

            .nav-links .language-dropdown .lang-option.active {
                background: var(--gold-polish) !important;
                color: var(--forest-deep) !important;
            }
        }

        /* ============================================
           INFO PANEL RESPONSIVO
        ============================================ */
        @media (max-width: 768px) {
            #map-hero {
                display: block !important;
                height: auto !important;
                min-height: auto !important;
                position: relative;
            }

            #map {
                height: 60vh !important;
                min-height: 350px !important;
                width: 100% !important;
            }

            #map iframe {
                height: 100% !important;
                width: 100% !important;
            }

            .map-info-panel {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 !important;
                border-radius: 20px 20px 0 0 !important;
                margin-top: -20px !important;
                padding: 1.5rem !important;
                box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2) !important;
                background: rgba(255, 255, 255, 0.98) !important;
                z-index: 100 !important;
            }

            .map-info-panel h1 {
                font-size: 1.6rem !important;
                margin-bottom: 0.5rem !important;
            }

            .map-info-panel > p {
                font-size: 0.9rem !important;
                margin-bottom: 1rem !important;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.6rem !important;
                margin-bottom: 1rem !important;
            }

            .stat-item {
                padding: 0.6rem 0.4rem !important;
            }

            .stat-number {
                font-size: 1.4rem !important;
            }

            .stat-label {
                font-size: 0.7rem !important;
            }

            .explore-btn {
                padding: 0.8rem !important;
                font-size: 0.9rem !important;
            }

            .scroll-indicator {
                display: none !important;
            }
        }

        /* ============================================
           SEÇÕES RESPONSIVAS
        ============================================ */
        @media (max-width: 768px) {
            .section {
                padding: 3rem 1rem;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            /* Attractions Grid */
            .attractions-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .attraction-card {
                margin: 0;
            }

            .attraction-image {
                height: 200px;
            }

            .attraction-content {
                padding: 1.5rem;
            }

            .attraction-title {
                font-size: 1.5rem;
            }

            .attraction-icon {
                font-size: 2rem;
            }

            /* About Hero */
            .about-hero {
                min-height: 60vh;
                padding: 3rem 1rem;
            }
            
            .about-hero-content {
                padding: 0 1.25rem;
                max-width: 100%;
                width: 100%;
                box-sizing: border-box;
            }
            
            .about-hero h1 {
                font-size: 1.8rem;
                line-height: 1.3;
                padding: 0 0.5rem;
                word-wrap: break-word;
            }
            
            .about-hero-subtitle {
                font-size: 0.95rem;
                padding: 0 1rem;
                line-height: 1.6;
                margin-bottom: 2rem;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .about-badge {
                padding: 0.5rem 0.8rem;
                font-size: 0.6rem;
                margin-bottom: 0.5rem;
                letter-spacing: 0.5px;
                white-space: normal;
            }
            
            .about-badges-container {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                width: 100%;
                overflow: hidden;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding: 0 0.5rem;
            }
            
            .about-stats .stat-item {
                padding: 1rem;
            }
            
            .about-stats .stat-number {
                font-size: 1.8rem;
            }
            
            .about-stats .stat-label {
                font-size: 0.75rem;
            }

            /* Reviews Grid */
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .review-card {
                padding: 1.5rem;
            }

            /* Footer */
            .footer {
                padding: 3rem 1rem 2rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* ============================================
           NAV RESPONSIVO EXTRA SMALL
        ============================================ */
        @media (max-width: 480px) {
            .nav {
                padding: 1rem;
            }

            .nav-logo img {
                height: 65px;
                width: auto;
                max-width: 220px;
            }

            .nav-toggle {
                width: 44px;
                height: 44px;
            }

            .map-info-panel {
                padding: 1.25rem;
            }

            .map-info-panel h1 {
                font-size: 1.5rem;
            }

            .stats-grid {
                gap: 0.5rem;
            }

            .stat-number {
                font-size: 1.3rem;
            }

            .explore-btn {
                padding: 0.875rem;
                font-size: 0.9rem;
            }
            
            /* About Hero - Extra Small */
            .about-hero {
                padding: 2rem 1rem;
                min-height: auto;
            }
            
            .about-hero h1 {
                font-size: 1.5rem !important;
                line-height: 1.4;
            }
            
            .about-hero h1 br {
                display: none;
            }
            
            .about-hero-subtitle {
                font-size: 0.95rem !important;
                line-height: 1.5;
            }
            
            .about-badge {
                font-size: 0.55rem;
                padding: 0.4rem 0.7rem;
                letter-spacing: 0.5px;
                white-space: normal;
            }
            
            .about-badges-container {
                flex-direction: column;
                gap: 0.4rem;
                width: 100%;
                align-items: center;
            }
            
            .about-stats .stat-number {
                font-size: 1.5rem;
            }
            
            .about-stats .stat-label {
                font-size: 0.7rem;
            }
        }

        /* Map Hero */
        #map-hero {
            position: relative;
            width: 100%;
            height: 100vh;
            height: 100dvh;
        }

        #map {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Info Panel */
        .map-info-panel {
            position: absolute;
            top: 120px;
            left: 2rem;
            width: 400px;
            max-width: calc(100vw - 4rem);
            background: rgba(255, 255, 255, 0.98);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 900;
        }

        .map-info-panel h1 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: var(--forest-deep);
            margin-bottom: 0.5rem;
        }

        .map-info-panel p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(10, 61, 46, 0.05);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--forest-deep);
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #0a3d2e !important;
            font-weight: 600;
            opacity: 1 !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
            margin-top: 0.25rem;
        }

        .explore-btn {
            width: 100%;
            padding: 1rem;
            background: var(--forest-deep);
            color: var(--white-pure);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .explore-btn:hover {
            background: var(--gold-polish);
            color: var(--forest-deep);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 900;
            text-align: center;
            color: var(--white-pure);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        /* Section */
        .section {
            padding: 6rem 2rem;
            max-width: 1800px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--forest-deep);
            margin-bottom: 1rem;
        }

        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .attraction-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            cursor: pointer;
        }

        .attraction-card:hover {
            transform: translateY(-10px);
        }

        .attraction-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .attraction-content {
            padding: 2rem;
        }

        .attraction-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .attraction-title {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--forest-deep);
            margin-bottom: 1rem;
        }

        .attraction-desc {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--forest-deep), #000);
            color: white;
            padding: 0;
            text-align: center;
        }

        .footer-main {
            padding: 4rem 2rem 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--gold-polish);
        }

        /* ============================================
           RODAPÉ INSTITUCIONAL - Conformidade Legal
           Logos obrigatórios e links de transparência
        ============================================ */
        .footer-institutional {
            background: #111;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 2rem;
        }

        .footer-institutional .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Régua de Logos Obrigatórios */
        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
        }

        .partners-logos .logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .partners-logos .logo-item:hover {
            opacity: 1;
        }


        .partners-logos .logo-item img {
            max-width: 120px;
            max-height: 50px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .partners-logos .logo-item span {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Links Institucionais */
        .institutional-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
        }

        .institutional-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: color 0.2s;
        }

        .institutional-links a:hover {
            color: var(--gold-polish);
        }

        .institutional-links a::before {
            content: '•';
            color: var(--gold-polish);
        }

        .institutional-links a:first-child::before {
            display: none;
        }

        /* Créditos e Copyright */
        .footer-credits {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
        }

        .footer-credits p {
            margin: 0.3rem 0;
        }

        .footer-credits a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
        }

        .footer-credits a:hover {
            color: var(--gold-polish);
        }

        /* Responsivo footer institucional */
        @media (max-width: 768px) {
            .footer-institutional {
                padding: 1.5rem 1rem;
            }

            .partners-logos {
                gap: 1.5rem;
                padding: 1rem;
            }

            .partners-logos .logo-placeholder,
            .partners-logos .logo-item img {
                max-width: 80px;
                max-height: 35px;
            }

            .institutional-links {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }

            .institutional-links a::before {
                display: none;
            }
        }
    

        /* ===== SEÇÃO SOBRE ===== */

        /* Hero Section */
        .about-hero {
            position: relative;
            min-height: 70vh;
            background: linear-gradient(135deg, var(--forest-deep) 0%, var(--mate-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 4rem 2rem;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 1200px;
            width: 100%;
            padding: 0 1.5rem;
            color: var(--white);
        }

        .about-badges-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            animation: fadeInDown 1s ease-out;
        }

        .about-badge {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: rgba(220, 20, 60, 0.2);
            border: 2px solid var(--polish-red);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .about-badge.badge-oms {
            background: rgba(59, 130, 246, 0.2);
            border-color: #3b82f6;
        }

        .about-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 6vw, 5rem);
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.2s both;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .about-hero h1 strong {
            font-weight: 700;
            color: var(--gold);
        }

        .about-hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            animation: fadeInUp 1s ease-out 0.4s both;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 1;
            color: var(--white-pure);
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        /* Pilares Section */
        .pilares-section {
            padding: 8rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-intro {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-label {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--forest-deep);
            color: var(--gold);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--forest-deep);
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .section-title strong {
            font-weight: 700;
        }

        .section-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Timeline/Grid Pilares */
        .pilares-timeline {
            position: relative;
            display: grid;
            gap: 4rem;
        }

        /* Linha vertical decorativa */
        .pilares-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(
                to bottom,
                var(--forest-deep) 0%,
                var(--polish-red) 50%,
                var(--earth-brown) 100%
            );
            transform: translateX(-50%);
        }

        .pilar-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }
        @media (max-width: 768px) {
            .pilar-item {
                grid-template-columns: 1fr !important;
                direction: ltr !important;
                padding-left: 0 !important;
                gap: 1.5rem;
            }
            .pilar-item:nth-child(even) { direction: ltr !important; }
            .pilar-item::before { display: none; }
            .pilares-timeline::before { display: none; }
            .pilar-visual { height: 220px !important; }
            .pilar-content { padding: 0 !important; }
            .pilar-title { font-size: 1.8rem !important; }
        }

        .pilar-item:nth-child(even) {
            direction: rtl;
        }

        .pilar-item:nth-child(even) > * {
            direction: ltr;
        }

        /* Círculo no centro da timeline */
        .pilar-item::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--white);
            border: 4px solid;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .pilar-item:nth-child(1)::before {
            border-color: var(--forest-deep);
        }

        .pilar-item:nth-child(2)::before {
            border-color: var(--polish-red);
        }

        .pilar-item:nth-child(3)::before {
            border-color: var(--earth-brown);
        }

        .pilar-visual {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.5s;
        }

        .pilar-visual:hover {
            transform: scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
        }

        .pilar-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pilar-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: var(--white);
        }

        .pilar-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .pilar-content {
            padding: 2rem;
        }

        .pilar-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .pilar-item:nth-child(1) .pilar-badge {
            background: rgba(10, 61, 46, 0.1);
            color: var(--forest-deep);
            border: 2px solid var(--forest-deep);
        }

        .pilar-item:nth-child(2) .pilar-badge {
            background: rgba(220, 20, 60, 0.1);
            color: var(--polish-red);
            border: 2px solid var(--polish-red);
        }

        .pilar-item:nth-child(3) .pilar-badge {
            background: rgba(139, 69, 19, 0.1);
            color: var(--earth-brown);
            border: 2px solid var(--earth-brown);
        }

        .pilar-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .pilar-item:nth-child(1) .pilar-title {
            color: var(--forest-deep);
        }

        .pilar-item:nth-child(2) .pilar-title {
            color: var(--polish-red);
        }

        .pilar-item:nth-child(3) .pilar-title {
            color: var(--earth-brown);
        }

        .pilar-year {
            font-size: 1rem;
            font-weight: 700;
            opacity: 0.6;
            margin-bottom: 1rem;
        }

        .pilar-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .pilar-highlights {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .highlight-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.03);
            border-radius: 10px;
            border-left: 4px solid;
        }

        .pilar-item:nth-child(1) .highlight-item {
            border-color: var(--forest-deep);
        }

        .pilar-item:nth-child(2) .highlight-item {
            border-color: var(--polish-red);
        }

        .pilar-item:nth-child(3) .highlight-item {
            border-color: var(--earth-brown);
        }

        .highlight-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .highlight-text {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Animações */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .pilares-timeline::before {
                left: 30px;
            }

            .pilar-item {
                grid-template-columns: 1fr;
                padding-left: 80px;
            }

            .pilar-item:nth-child(even) {
                direction: ltr;
            }

            .pilar-item::before {
                left: 30px;
            }

            .pilar-visual {
                height: 300px;
            }
        }
    


        /* Reviews Section */
        .reviews-section {
            background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .reviews-section::before {
            content: '"';
            position: absolute;
            top: 2rem;
            left: 2rem;
            font-size: 20rem;
            font-family: var(--font-display);
            color: rgba(10, 61, 46, 0.03);
            line-height: 1;
        }

        .reviews-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .review-card {
            background: var(--white-pure);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .review-stars {
            color: #fbbf24;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .review-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 2rem;
            border-top: 2px solid #f0f0f0;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--forest-deep), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
        }

        .review-author-info h4 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: var(--forest-deep);
            margin-bottom: 0.3rem;
        }

        .review-author-info p {
            font-size: 0.9rem;
            color: #999;
        }

        .review-badge {
            position: absolute;
            top: -15px;
            right: 2rem;
            background: var(--gold);
            color: var(--forest-deep);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        }

        .tripadvisor-badge {
            text-align: center;
            margin-top: 4rem;
            padding: 2rem;
            background: rgba(10, 61, 46, 0.05);
            border-radius: 15px;
        }

        .tripadvisor-badge h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            color: var(--forest-deep);
            margin-bottom: 1rem;
        }

        .rating-summary {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .rating-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
        }

        .rating-stars-large {
            font-size: 2rem;
            color: #fbbf24;
        }


        /* Blog/Eventos Section */
        .blog-section {
            background: var(--cream);
            padding: 8rem 2rem;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-card {
            background: var(--white-pure);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-category {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(10, 61, 46, 0.1);
            color: var(--forest-deep);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .blog-category.evento {
            background: rgba(220, 20, 60, 0.1);
            color: var(--polish-red);
        }

        .blog-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--forest-deep);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f0f0f0;
            font-size: 0.9rem;
            color: #999;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-read-more {
            margin-left: auto;
            color: var(--gold);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* ============================================
           ONDE FICAR
        ============================================ */
        .section-where-stay {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--cream-light) 0%, #ffffff 100%);
        }

        .hotels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .hotel-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
        }

        .hotel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            border-color: var(--gold-polish);
        }

        .hotel-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .hotel-name {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--forest-deep);
            margin-bottom: 1rem;
            text-align: center;
        }

        .hotel-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .hotel-features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--cream-light);
            border-radius: 10px;
        }

        .feature {
            font-size: 0.9rem;
            color: var(--forest-deep);
        }

        .hotel-contact {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .hotel-contact p {
            margin: 0.3rem 0;
            color: #666;
            font-size: 0.9rem;
        }

        /* ============================================
           A CIDADE (História)
        ============================================ */


        

@media (max-width: 768px) {
            
            .hotels-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           CALENDÁRIO DE EVENTOS
        ============================================ */


        /* ============================================
           SISTEMA DE BUSCA
        ============================================ */


        .search-results.active {
            display: block;
        }

        .search-result-item {
            padding: 1rem;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background 0.2s;
        }

        .search-result-item:hover {
            background: var(--cream-light);
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-title {
            font-weight: 600;
            color: var(--forest-deep);
            margin-bottom: 0.3rem;
        }

        .search-result-category {
            font-size: 0.85rem;
            color: var(--gold-polish);
            margin-bottom: 0.3rem;
        }

        .search-result-description {
            font-size: 0.85rem;
            color: #666;
        }

        /* ============================================
           FORMULÁRIO DE CONTATO
        ============================================ */

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--forest-deep);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: var(--font-body);
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold-polish);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .checkbox-label input[type="checkbox"] {
            width: auto;
            cursor: pointer;
        }


        .btn-submit.loading {
            background: #999;
            pointer-events: none;
        }


        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        /* ============================================
           NEWSLETTER
        ============================================ */


        .newsletter-message.success {
            background: rgba(255,255,255,0.2);
            color: white;
            display: block;
        }


        
        /* ============================================
           SELETOR DE IDIOMAS
        ============================================ */
        .nav-links .language-selector {
            position: relative;
            margin-left: 1rem;
        }

        .current-language {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 25px;
            color: white;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .current-language:hover {
            background: rgba(255,255,255,0.2);
            border-color: var(--gold-polish);
            transform: translateY(-2px);
        }

        .current-language .flag {
            font-size: 1.2rem;
        }

        .current-language .lang-code {
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .current-language .dropdown-arrow {
            font-size: 0.7rem;
            opacity: 0.7;
            transition: transform 0.3s;
        }

        .language-selector.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .language-dropdown {
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            padding: 0.5rem;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 10000;
            transition: all 0.3s ease;
        }

        .language-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }


        .lang-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            width: 100%;
            padding: 0.75rem 1rem;
            background: transparent;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s;
            color: var(--forest-deep);
            font-weight: 500;
            font-size: 0.95rem;
            text-align: left;
        }

        .lang-option:hover {
            background: var(--cream-light);
        }

        .lang-option.active {
            background: var(--gold-polish);
            color: white;
        }

        .lang-option .flag {
            font-size: 1.3rem;
        }

        @media (max-width: 768px) {
            .nav-links .language-selector {
                margin-left: 0;
                margin-top: 1rem;
            }
            
            .language-dropdown {
                right: auto;
                left: 0;
            }
        }

        /* ============================================
           BOTÃO VOLTAR AO TOPO
        ============================================ */
        .back-to-top {
            position: fixed;
            bottom: 6rem; /* afastado do chatbot (65px + 20px bottom) */
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gold-polish);
            color: var(--forest-deep);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
            z-index: 9999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--gold-light);
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.4);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            .back-to-top {
                bottom: 6rem; /* mantém acima do chatbot no mobile */
                right: 1rem;
                width: 45px;
                height: 45px;
            }
        }

        /* ============================================
           SEÇÃO DIRETO DO PRODUTOR
        ============================================ */
        
        
        
        
        
        
        
        
        
        .produtor-item.active {
            background: #d4a574 !important;
            border-color: #d4a574;
        }
        
        /* Painel de detalhes */
        
        .produtor-details.active {
            display: block;
        }
        
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        
        .produtor-locais {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
        }
        
        .local-card {
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 1.25rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s ease;
        }
        
        .local-card:hover {
            background: rgba(255,255,255,0.15);
        }
        
        .local-icon {
            width: 50px;
            height: 50px;
            background: var(--gold-polish);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .local-info h4 {
            color: var(--white-pure);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        
        .local-info p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        .local-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }
        
        .local-btn {
            background: rgba(255,255,255,0.15);
            border: none;
            color: var(--white-pure);
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
        }
        
        .local-btn:hover {
            background: rgba(255,255,255,0.25);
        }
        
        .local-btn.map-btn {
            background: var(--forest-rich);
        }
        
        .local-btn.map-btn:hover {
            background: #1a6d53;
        }

        /* Modal do Mini-Mapa */
        .map-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 1rem;
        }
        
        .map-modal-overlay.active {
            display: flex;
        }
        
        .map-modal {
            background: var(--white-pure);
            border-radius: 20px;
            width: 100%;
            max-width: 700px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            animation: modalIn 0.3s ease;
        }
        
        @keyframes modalIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        .map-modal-header {
            background: var(--forest-deep);
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .map-modal-header h3 {
            color: var(--white-pure);
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-display);
        }
        
        .map-modal-close {
            background: rgba(255,255,255,0.1);
            border: none;
            color: var(--white-pure);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .map-modal-close:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .map-modal-map {
            height: 300px;
            background: #e0e0e0;
        }
        
        .map-modal-info {
            padding: 1.5rem;
            background: #f5f3f0;
        }
        
        .map-modal-info p {
            margin-bottom: 0.6rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
        }
        
        .map-modal-info strong {
            color: var(--forest-deep);
            min-width: 80px;
        }
        
        .map-modal-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1.25rem;
        }
        
        .map-modal-btn {
            flex: 1;
            padding: 0.9rem;
            border-radius: 10px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            text-decoration: none;
        }
        
        .map-modal-btn.primary {
            background: var(--forest-deep);
            color: var(--white-pure);
        }
        
        .map-modal-btn.primary:hover {
            background: var(--forest-rich);
        }
        
        .map-modal-btn.secondary {
            background: #e8e4db;
            color: var(--forest-deep);
        }
        
        .map-modal-btn.secondary:hover {
            background: #ddd8cf;
        }

        @media (max-width: 768px) {
            .produtor-locais {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           MOBILE FIXES CONSOLIDADOS v2
        ============================================ */
        @media (max-width: 768px) {
            .nav { top: 0 !important; padding: 0.75rem 1rem !important; }
            html { scroll-padding-top: 80px; }
            .section { padding: 3rem 1rem !important; }
            .pilares-section { padding: 3rem 1rem !important; }
            .reviews-section { padding: 4rem 1rem !important; }
            .blog-section { padding: 4rem 1rem !important; }
            .blog-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
            .festas-grid { grid-template-columns: 1fr !important; }
            .festas-destaque-section { padding: 3rem 1rem !important; }
            .diorama-section { padding: 2rem 1rem !important; }
            .diorama-title { font-size: 1.8rem !important; }
            .gallery-section { padding: 3rem 1rem !important; }
            .gallery-title { font-size: 2rem !important; }
            .reviews-grid { grid-template-columns: 1fr !important; }
            .hotels-grid { grid-template-columns: 1fr !important; }
            .contact-section { padding: 3rem 1rem !important; }
            .contact-cards-grid { grid-template-columns: 1fr !important; }
            .about-hero { padding: 2rem 1rem !important; min-height: auto !important; }
            .about-hero h1 { font-size: 1.6rem !important; line-height: 1.3 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; padding: 0 0.5rem !important; }
            .about-badge { white-space: normal !important; font-size: 0.7rem !important; padding: 0.5rem 1rem !important; text-align: center !important; }
            .footer-main { padding: 2rem 1rem !important; }
            .footer-links { flex-direction: column !important; gap: 0.75rem !important; align-items: center !important; }
            .back-to-top { bottom: 6rem !important; right: 1rem !important; } /* acima do chatbot */
        }
        @media (max-width: 480px) {
            .nav-logo img { height: 50px !important; max-width: 180px !important; }
            .about-hero h1 { font-size: 1.5rem !important; }
            .about-badges-container { flex-direction: column !important; align-items: center !important; }
            .section-title { font-size: 1.8rem !important; }
            .pilar-title { font-size: 1.5rem !important; }
            .festa-card { padding: 1.25rem !important; }
        }

/* ============================================================ */
/* BLOCO 2: BANNER AGROSAMAS — Modal de evento especial */
/* Origem: index.html linhas 3427–3617 */
/* ============================================================ */

        /* AgroSamas Banner Styles */
        .agrosamas-banner {
            background: linear-gradient(135deg, #1a5f4a 0%, #0d3d2e 50%, #1a1a2e 100%);
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .agrosamas-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        /* Classe para esconder o banner */
        .agrosamas-hidden {
            display: none !important;
        }
        
        .agrosamas-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .agrosamas-content {
            text-align: center;
            color: white;
        }
        
        .agrosamas-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ffd700, #ffaa00);
            color: #1a1a2e;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .agrosamas-title {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .agrosamas-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }
        
        .agrosamas-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        
        .agrosamas-info span {
            background: rgba(255,255,255,0.15);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.95rem;
        }
        
        .agrosamas-highlights {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .agrosamas-highlights span {
            background: rgba(255,215,0,0.2);
            border: 1px solid rgba(255,215,0,0.4);
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-size: 0.9rem;
        }
        
        .agrosamas-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .agrosamas-btn {
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .agrosamas-btn.primary {
            background: linear-gradient(135deg, #ffd700, #ffaa00);
            color: #1a1a2e;
        }
        
        .agrosamas-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,215,0,0.4);
        }
        
        .agrosamas-btn.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .agrosamas-btn.secondary:hover {
            background: white;
            color: #1a1a2e;
        }
        
        .agrosamas-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .agrosamas-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }
        
        @media (max-width: 768px) {
            .agrosamas-banner {
                padding: 1.5rem 1rem;
            }
            
            .agrosamas-title {
                font-size: 2rem;
            }
            
            .agrosamas-info {
                gap: 0.5rem;
            }
            
            .agrosamas-info span {
                font-size: 0.85rem;
                padding: 0.4rem 0.8rem;
            }
            
            .agrosamas-highlights span {
                font-size: 0.8rem;
            }
            
            .agrosamas-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

/* ============================================================ */
/* BLOCO 3: DIORAMA — Imagem artística da cidade */
/* Origem: index.html linhas 3720–3822 */
/* ============================================================ */

        /* Diorama Section Styles */
        .diorama-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
        }

        .diorama-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .diorama-title {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--forest-deep);
            margin-bottom: 1rem;
        }

        .diorama-subtitle {
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .diorama-image-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
            max-width: 1200px;
        }

        .diorama-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .diorama-scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 61, 46, 0.9);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            animation: bounce 2s infinite;
            white-space: nowrap;
        }

        .diorama-scroll-indicator span {
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .diorama-section {
                padding: 3rem 1rem;
            }

            .diorama-title {
                font-size: 2rem;
            }

            .diorama-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .diorama-image {
                border-radius: 15px;
            }

            .diorama-scroll-indicator {
                padding: 10px 20px;
                font-size: 0.9rem;
                bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .diorama-title {
                font-size: 1.6rem;
            }

            .diorama-subtitle {
                font-size: 0.95rem;
            }

            .diorama-scroll-indicator {
                padding: 8px 16px;
                font-size: 0.8rem;
                bottom: 10px;
            }
        }

/* ============================================================ */
/* BLOCO 4: FESTAS EM DESTAQUE — AgroSamas + Natal Ouro Verde */
/* Origem: index.html linhas 4067–4280 */
/* ============================================================ */

        /* Festas em Destaque Section */
        .festas-destaque-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #0a3d2e 0%, #0d5a3e 50%, #0a3d2e 100%);
            position: relative;
            overflow: hidden;
        }

        .festas-destaque-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .festas-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .festas-header {
            text-align: center;
            margin-bottom: 3rem;
            color: white;
        }

        .festas-label {
            display: inline-block;
            background: linear-gradient(135deg, #d4a574, #c4956a);
            color: #0a3d2e;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .festas-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .festas-title strong {
            color: #d4a574;
        }

        .festas-subtitle {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .festas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .festa-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .festa-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .festa-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .festa-agrosamas .festa-badge {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
        }

        .festa-natal .festa-badge {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
        }

        .festa-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .festa-nome {
            font-family: var(--font-display);
            font-size: 1.8rem;
            color: #0a3d2e;
            margin-bottom: 0.75rem;
        }

        .festa-descricao {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .festa-info {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .festa-info span {
            background: #f0f0f0;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #333;
        }

        .festa-destaques {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .festa-destaques span {
            background: linear-gradient(135deg, #0a3d2e, #0d5a3e);
            color: white;
            padding: 0.3rem 0.7rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .festa-btn {
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 1rem;
            background: linear-gradient(135deg, #d4a574, #c4956a);
            color: #0a3d2e;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .festa-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
        }

        .festas-cta {
            text-align: center;
        }

        .festas-ver-mais {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            border: 2px solid white;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .festas-ver-mais:hover {
            background: white;
            color: #0a3d2e;
        }

        @media (max-width: 768px) {
            .festas-destaque-section {
                padding: 3rem 1rem;
            }

            .festas-title {
                font-size: 1.8rem;
            }

            .festas-grid {
                grid-template-columns: 1fr;
            }

            .festa-card {
                padding: 1.5rem;
            }

            .festa-nome {
                font-size: 1.5rem;
            }
        }

/* ============================================================ */
/* BLOCO 5: FORMULÁRIO DE CONTATO */
/* Origem: index.html linhas 4795–4968 */
/* ============================================================ */

        /* Contact Form Styles */
        .contact-main-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
            text-align: left;
        }
        
        .contact-form-wrapper {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            border: 1px solid #e8e0d5;
        }
        
        .form-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--forest-deep);
        }
        
        .contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .contact-form .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .contact-form .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .contact-form label {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            color: var(--forest-deep);
            font-weight: 600;
        }
        
        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            padding: 0.9rem 1rem;
            border: 2px solid rgba(10, 61, 46, 0.2);
            border-radius: 10px;
            background: var(--white-pure);
            color: #333;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #999;
        }
        
        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--forest-deep);
            box-shadow: 0 0 0 3px rgba(10, 61, 46, 0.1);
        }
        
        .contact-form select option {
            background: var(--white-pure);
            color: #333;
        }
        
        .checkbox-group {
            margin: 1rem 0;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--forest-deep);
        }
        
        .checkbox-label input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--forest-deep);
        }
        
        .form-submit {
            width: 100%;
            padding: 1.2rem 2rem;
            background: var(--forest-deep);
            color: var(--white-pure);
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        
        .form-submit:hover {
            background: var(--forest-rich);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(10, 61, 46, 0.3);
        }
        
        .form-status {
            text-align: center;
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 10px;
            display: none;
        }
        
        .form-status.success {
            display: block;
            background: rgba(76, 175, 80, 0.2);
            color: #81c784;
            border: 1px solid rgba(76, 175, 80, 0.3);
        }
        
        .form-status.error {
            display: block;
            background: rgba(244, 67, 54, 0.2);
            color: #e57373;
            border: 1px solid rgba(244, 67, 54, 0.3);
        }
        
        .contact-cards-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        @media (max-width: 992px) {
            .contact-main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .contact-form .form-row {
                grid-template-columns: 1fr;
            }
            .contact-form-wrapper {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 600px) {
            .contact-cards-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-form-wrapper {
                padding: 1.5rem;
            }
        }

/* ============================================================ */
/* BLOCO 6: SEÇÃO CONTATO — Cards informativos */
/* Origem: index.html linhas 5019–5172 */
/* ============================================================ */

        /* Contact Section Styles */
        .contact-section {
            padding: 3.5rem 2rem;
            background: var(--forest-deep);
            color: var(--white-pure);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-label {
            background: var(--white-pure) !important;
            color: var(--forest-deep) !important;
        }

        .contact-title {
            color: var(--white-pure) !important;
        }

        .contact-intro {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .contact-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-card {
            padding: 2rem;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contact-card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .contact-card-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .contact-card-subtitle {
            opacity: 0.8;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .contact-card-link {
            color: var(--gold);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .contact-card-link.contact-email {
            font-size: 0.95rem;
            word-break: break-all;
        }

        .contact-card-address {
            color: var(--gold);
            font-size: 1rem;
            line-height: 1.6;
        }

        .social-section {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .social-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--gold);
            transform: translateY(-5px);
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 4rem 1rem;
            }

            .contact-intro {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }

            .contact-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-card {
                padding: 1.5rem;
            }

            .contact-card-icon {
                font-size: 2.5rem;
            }

            .contact-card-title {
                font-size: 1.3rem;
            }

            .social-title {
                font-size: 1.4rem;
            }

            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

/* ============================================================ */
/* BLOCO 7: GALERIA PREVIEW — Preview de fotos no index */
/* Origem: index.html linhas 5285–5371 */
/* ============================================================ */

        .gallery-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
        }

        .gallery-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .gallery-title {
            font-family: var(--font-display);
            font-size: 3.5rem;
            color: var(--forest-deep);
            margin-bottom: 1rem;
        }

        .gallery-subtitle {
            color: #666;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2) !important;
        }
        
        .gallery-item:hover .gallery-overlay {
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
        }

        /* Forçar altura responsiva nas imagens da galeria (sobrepõe inline style) */
        .gallery-section .gallery-item img {
            height: 280px;
            width: 100%;
            object-fit: cover;
            display: block;
        }
        
        @media (max-width: 768px) {
            .gallery-section {
                padding: 4rem 1rem;
            }

            .gallery-header {
                margin-bottom: 2.5rem;
            }

            .gallery-title {
                font-size: 2rem;
            }

            .gallery-subtitle {
                font-size: 1rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }

            .gallery-section .gallery-item img {
                height: 220px !important;
            }
        }

        @media (max-width: 480px) {
            .gallery-title {
                font-size: 1.7rem;
            }

            .gallery-section .gallery-item img {
                height: 190px !important;
            }
        }

/* ── Mascotes Teaser Section ── */
.mascotes-teaser-section {
    background: linear-gradient(135deg, #0a3d2e 0%, #1a5d43 60%, #0d5a3e 100%);
    padding: 5rem 2rem;
    overflow: hidden;
    position: relative;
}

.mascotes-teaser-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mascotes-teaser-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mascotes-teaser-text {
    flex: 1;
    color: #fff;
    z-index: 1;
}

.mascotes-teaser-text .section-label {
    display: inline-block;
    background: rgba(212,165,116,0.2);
    color: #d4a574;
    border: 1px solid rgba(212,165,116,0.4);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-family: var(--fb);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.mascotes-teaser-text h2 {
    font-family: var(--fd);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

.mascotes-teaser-text p {
    font-family: var(--fb);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    max-width: 480px;
}

.mascotes-teaser-btn {
    display: inline-block;
    background: #d4a574;
    color: #0a3d2e;
    font-family: var(--fb);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.mascotes-teaser-btn:hover {
    background: #e8c9a0;
    transform: translateY(-2px);
}

.mascotes-disclaimer {
    display: block;
    margin-top: 1rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    font-family: var(--fb);
}

.mascotes-teaser-figures {
    flex: 1;
    position: relative;
    height: 380px;
    z-index: 1;
}

.mascote-fig {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

.mascote-fig--main {
    width: 260px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mascote-fig--side {
    width: 180px;
    bottom: 0;
    z-index: 2;
    opacity: 0.9;
}

.mascote-fig--left  { left: 0;   transform: scaleX(-1); }
.mascote-fig--right { right: 0; }

@media (max-width: 900px) {
    .mascotes-teaser-inner { flex-direction: column; gap: 2rem; text-align: center; }
    .mascotes-teaser-text p { max-width: 100%; }
    .mascotes-teaser-figures { width: 100%; height: 260px; }
    .mascote-fig--main  { width: 180px; }
    .mascote-fig--side  { width: 120px; }
}

@media (max-width: 480px) {
    .mascotes-teaser-figures { height: 200px; }
    .mascote-fig--main  { width: 140px; }
    .mascote-fig--side  { width: 90px; }
}
