:root {
    --navy: #0b1d3a;
    --navy-overlay: rgba(11, 29, 58, 0.82);
    --orange: #f78b31;
    --white: #ffffff;
    --gray-bg: #f8fafc;
    --border: #e2e8f0;
    --font-h: 'Bebas Neue', sans-serif;
    --font-b: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--navy); overflow-x: hidden; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* Animação Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* HEADER - TRANSPARENTE E ALINHADO À DIREITA */
header { 
    background: transparent;
    padding: 30px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    transition: all 0.4s ease-in-out; 
}

header.scrolled { 
    background: var(--navy); 
    padding: 15px 0; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-family: var(--font-h); 
    font-size: 42px; 
    color: var(--white); 
    letter-spacing: 2px;
}
.logo span { color: var(--orange); }

/* Empurra o menu para a direita */
.nav-links { 
    display: flex; 
    list-style: none; 
    align-items: center;
    margin-left: auto; 
}

.nav-links li a { 
    color: var(--white); 
    text-decoration: none; 
    margin-left: 35px; 
    font-size: 14px; 
    font-weight: 700; 
    text-transform: uppercase; 
    transition: 0.3s;
}
.nav-links li a:not(.btn-nav):hover { color: var(--orange); }

/* PADRÃO DE BOTÕES */
.btn-main, .btn-outline { 
    padding: 15px 35px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: 800; 
    font-size: 14px; 
    transition: 0.4s; 
    display: inline-block; 
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-main { background: var(--orange); color: white; border-color: var(--orange); }
.btn-main:hover { background: transparent; color: var(--white); transform: translateY(-3px); }

/* Botão específico do menu (ajuste de transparência no hover) */
.btn-nav { margin-left: 35px; padding: 10px 25px; }
.btn-nav:hover { color: var(--white) !important; border-color: white !important; }

.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--navy); transform: translateY(-3px); }

.btn-full { width: 100%; border: none; margin-top: 15px; }
.btn-full:hover { background: var(--navy); color: white; }

/* HERO SECTION */
.hero {
    min-height: 100vh; display: flex; align-items: center; color: var(--white); padding: 120px 0 80px;
    background: linear-gradient(var(--navy-overlay), var(--navy-overlay)), 
                url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&q=80&w=2000');
    background-size: cover; background-position: center;
}
.hero-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero-text h1 { font-family: var(--font-h); font-size: 90px; line-height: 0.9; margin: 25px 0; }
.highlight { color: var(--orange); }
.badge { color: var(--orange); font-weight: 800; letter-spacing: 6px; font-size: 14px; border-left: 3px solid var(--orange); padding-left: 15px; }
.hero-text p { font-size: 18px; margin-bottom: 40px; opacity: 0.9; }

/* FORM CARD */
.booking-card { background: white; padding: 45px; border-radius: 20px; color: var(--navy); box-shadow: 0 40px 100px rgba(0,0,0,0.4); }
.card-header { text-align: center; margin-bottom: 30px; }
.card-header h3 { font-family: var(--font-h); font-size: 35px; }
.input-group { margin-bottom: 18px; }
.input-group label { display: block; font-size: 11px; font-weight: 700; color: #64748b; margin-bottom: 6px; text-transform: uppercase; }
.input-group input, .input-group select { width: 100%; padding: 14px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-b); background: #f1f5f9; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* ABOUT SECTION */
.about { padding: 140px 0; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-box { position: relative; }
.about-img-box img { width: 100%; border-radius: 20px; display: block; } /* display block resolve sumiço em alguns browsers */
.exp-badge { position: absolute; bottom: -25px; right: -25px; background: var(--orange); color: white; padding: 30px; border-radius: 12px; text-align: center; }
.exp-badge strong { font-size: 50px; display: block; font-family: var(--font-h); line-height: 1; }
.sub-title { color: var(--orange); font-weight: 800; letter-spacing: 3px; font-size: 14px; display: block; margin-bottom: 15px; }
.about-text h2 { font-family: var(--font-h); font-size: 60px; line-height: 1; margin-bottom: 25px; }

/* SERVICES & CONTACT SPACING */
.services { background: var(--gray-bg); padding: 140px 0; }
.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 { font-family: var(--font-h); font-size: 70px; }
.divider { width: 70px; height: 5px; background: var(--orange); margin: 20px auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.s-card { background: white; padding: 50px; border-radius: 15px; transition: 0.4s; text-align: left; }
.s-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.s-card i { font-size: 45px; color: var(--orange); margin-bottom: 25px; display: block; }
.s-card a { color: var(--orange); text-decoration: none; font-weight: 800; }

.contact-section { padding: 140px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 140px; align-items: flex-start; }
.info-list { display: grid; gap: 40px; margin-bottom: 60px; }
.info-item { display: flex; align-items: center; gap: 25px; }
.icon-circle { min-width: 70px; height: 70px; border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 26px; background: rgba(247, 139, 49, 0.05); }
.info-item p { font-size: 22px; font-weight: 700; }

.map-box { height: 550px; border-radius: 30px; overflow: hidden; }
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 50px; text-align: center; }

/* MOBILE */
.hamburger { display: none; cursor: pointer; color: white; font-size: 28px; }
@media (max-width: 992px) {
    header { background: var(--navy); padding: 15px 0; }
    .hamburger { display: block; }
    .nav-links { 
        position: fixed; right: -100%; top: 0; background: var(--navy); 
        width: 80%; height: 100vh; flex-direction: column; padding: 100px 40px; 
        transition: 0.5s; 
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 15px 0; width: 100%; }
    .nav-links li a { margin-left: 0; font-size: 18px; }
    .btn-nav { margin-left: 0; text-align: center; }
    .hero-content, .contact-wrapper, .services-grid, .about-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .hero-text h1 { font-size: 60px; }
}