/*!
Theme Name: boulevard
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: boulevard
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

boulevard is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

 /* =========================================
           VARIÁVEIS DE ALTO PADRÃO
           ========================================= */
        :root {
            --navy-blue: #0A192F;
            --navy-light: #112A46;
            --gold-accent: #C5A880;
            --gold-hover: #D6BFA0;
            --wa-color: #25D366;
            
            --text-dark: #1A1A1A;
            --text-gray: #555555;
            --bg-body: #F9F9F8;
            --bg-white: #FFFFFF;
            
            --font-title: 'Marcellus', serif;
            --font-body: 'Jost', sans-serif;
            
            --radius: 4px;
            --shadow-soft: 0 15px 35px rgba(10, 25, 47, 0.05);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* =========================================
           RESET E BASE
           ========================================= */
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: var(--font-body);
            background-color: var(--bg-body);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 400; color: var(--navy-blue); line-height: 1.2; }
        p { color: var(--text-gray); font-weight: 300; }
        a { text-decoration: none; }
        
        .container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
        .section { padding: 100px 0; }

        /* =========================================
           NAVBAR (LUXURY GLASSMORPHISM)
           ========================================= */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 24px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .navbar.scrolled {
            background: rgba(10, 25, 47, 0.98);
            backdrop-filter: blur(10px);
            padding: 16px 5%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-bottom: 1px solid transparent;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--bg-white);
            line-height: 1;
            z-index: 1001; /* Fica acima do menu mobile */
        }
        .logo-main { font-family: var(--font-body); font-size: 1.8rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
        .logo-sub { font-family: var(--font-body); font-size: 0.65rem; font-weight: 400; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-accent); }

        .nav-wrapper { display: flex; align-items: center; gap: 40px; }
        
        .nav-links { display: flex; gap: 40px; list-style: none; }
        .nav-links a { color: var(--bg-white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; transition: var(--transition); opacity: 0.8; }
        .nav-links a:hover { opacity: 1; color: var(--gold-accent); }

        .nav-cta {
            border: 1px solid var(--gold-accent);
            color: var(--gold-accent);
            padding: 10px 24px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .nav-cta:hover { background: var(--gold-accent); color: var(--navy-blue); }

        /* Mobile Menu Button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
            z-index: 1001;
        }
        .menu-toggle span {
            display: block;
            height: 2px;
            width: 100%;
            background-color: var(--gold-accent);
            transition: var(--transition);
        }

.custom-logo-link img {
	width: 120px;
    height: auto;
}

.footer-grid .brand-col .logo {
	align-items: flex-start;
}
        /* =========================================
           HERO SECTION
           ========================================= */
        .hero {
            min-height: 100vh;
            background: linear-gradient(to bottom, rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.8)), url('https://bnautica.orbiondigital.com.br/wp-content/uploads/2026/04/o-que-fazer-em-angra-dos-reis-2024-1_16by9.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--bg-white);
            position: relative;
            padding-top: 80px;
        }

        .hero-content { max-width: 900px; padding: 0 24px; }
        
        .hero-subtitle { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 4px; color: var(--gold-accent); margin-bottom: 24px; display: block; }
        .hero h1 { color: var(--bg-white); font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 24px; text-shadow: 0 10px 30px rgba(0,0,0,0.3); line-height: 1.1; }
        .hero p { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 3vw, 1.2rem); font-weight: 300; margin-bottom: 40px; }

        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gold-accent);
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-15px) translateX(-50%); } 60% { transform: translateY(-7px) translateX(-50%); } }

        /* =========================================
           GRIDS & HEADERS
           ========================================= */
        .section-header { text-align: center; margin-bottom: 60px; padding: 0 15px; }
        .section-header h2 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 16px; position: relative; display: inline-block; }
        .section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 40px; height: 2px; background: var(--gold-accent); }
        .section-header p { font-size: clamp(1rem, 3vw, 1.1rem); max-width: 600px; margin: 24px auto 0; }

        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

        /* =========================================
           CARDS DE PASSEIOS
           ========================================= */
        .luxury-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
        }
        .luxury-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08); }

        .card-img { height: 250px; background-size: cover; background-position: center; position: relative; }
        .card-tag { position: absolute; top: 20px; left: 20px; background: var(--navy-blue); color: var(--gold-accent); padding: 6px 16px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }

        .card-body { padding: 32px 24px; display: flex; flex-direction: column; flex: 1; }
        .card-body h3 { font-size: 1.4rem; margin-bottom: 16px; }
        .card-body p { margin-bottom: 24px; font-size: 0.95rem; flex: 1; }

        .card-footer { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 24px; }
        
        .price-wrapper { display: flex; flex-direction: column; }
        .price-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); margin-bottom: 2px; }
        .price { font-family: var(--font-title); font-size: 1.8rem; color: var(--navy-blue); line-height: 1; }

        .btn-reserve {
            background: var(--navy-blue);
            color: var(--bg-white);
            padding: 10px 20px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }
        .btn-reserve:hover { background: var(--gold-accent); color: var(--navy-blue); }

        /* =========================================
           CONCIERGE DE TRANSPORTE
           ========================================= */
        .transfer-card { display: flex; background: var(--bg-white); box-shadow: var(--shadow-soft); transition: var(--transition); border-radius: var(--radius); overflow: hidden; }
        .transfer-card:hover { transform: translateY(-5px); }
        .transfer-img { width: 45%; background-size: cover; background-position: center; min-height: 100%; }
        .transfer-body { width: 55%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
        .transfer-body h3 { font-size: clamp(1.4rem, 4vw, 1.8rem); margin-bottom: 16px; }

        /* =========================================
           RELATOS
           ========================================= */
        .review-card { background: var(--bg-white); padding: 40px; box-shadow: var(--shadow-soft); position: relative; border-top: 3px solid var(--gold-accent); }
        .quote-icon { position: absolute; top: 30px; right: 30px; font-size: 2rem; color: rgba(197, 168, 128, 0.15); }
        .stars { color: var(--gold-accent); margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 2px; }
        .review-text { font-size: 1.05rem; font-style: italic; color: var(--text-dark); margin-bottom: 24px; line-height: 1.7; }
        .client-name { font-family: var(--font-title); font-size: 1.1rem; color: var(--navy-blue); }
        .client-loc { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); }

        /* =========================================
           FOOTER
           ========================================= */
        .footer { background: var(--navy-blue); color: var(--bg-white); padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        
        .footer .logo-main { font-size: 2rem; }
        .footer-desc { color: rgba(255,255,255,0.6); margin-top: 20px; max-width: 350px; font-size: 0.95rem; }
        
        .footer-title { font-family: var(--font-title); font-size: 1.2rem; color: var(--gold-accent); margin-bottom: 24px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
        .footer-links a:hover { color: var(--gold-accent); padding-left: 5px; }
        
        .contact-info p { color: rgba(255,255,255,0.7); margin-bottom: 16px; font-size: 0.95rem; display: flex; align-items: center; gap: 12px; }
        .contact-info i { color: var(--gold-accent); }

        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

        /* Animações */
        .reveal { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* =========================================
           MEDIA QUERIES (MOBILE E TABLET)
           ========================================= */
        @media (max-width: 992px) {
            .transfer-card { flex-direction: column; }
            .transfer-img { width: 100%; height: 250px; }
            .transfer-body { width: 100%; padding: 32px; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        }

        @media (max-width: 768px) {
            .section { padding: 60px 0; }
            .section-header { margin-bottom: 40px; }
            
            /* Navbar Mobile */
            .menu-toggle { display: flex; }
            .nav-wrapper {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: var(--navy-blue);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
                gap: 30px;
                z-index: 1000;
            }
            .nav-wrapper.active { right: 0; }
            .nav-links { flex-direction: column; text-align: center; gap: 24px; }
            .nav-links a { font-size: 1.2rem; }

            /* Hamburger Animation */
            .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            .menu-toggle.active span:nth-child(2) { opacity: 0; }
            .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

            /* Ajustes Finos Mobile */
            .hero-content { margin-top: 0; }
            .card-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
            .btn-reserve { width: 100%; justify-content: center; }
            
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-desc { margin: 16px auto; }
            .contact-info p { justify-content: center; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
			
			.footer-grid .brand-col .logo {
	align-items: center;
}
			
        }

        @media (max-width: 480px) {
            .grid-3, .grid-2 { grid-template-columns: 1fr; }
            .hero-subtitle { font-size: 0.75rem; letter-spacing: 2px; }
        }
 