
/* RESET & VARIAVEIS */
:root {
    --primary-blue: #0A2E46; 
    --secondary-blue: #144565;
    --gold: #C99846; 
    --gold-hover: #e8b051;
    --white: #ffffff;
    --light-bg: #f5f7fa;
    --text-dark: #333333;
    --text-light: #f0f0f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background-color: var(--white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
img, video, iframe { max-width: 100%; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.bg-white { background-color: var(--white); }
.bg-blue { background-color: var(--primary-blue); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.title-white { color: var(--white) !important; }
.mt-20 { margin-top: 20px; }
.gap-10 { gap: 10px; }

/* BOTOES */
.cta-button {
    display: inline-block; background-color: var(--gold); color: var(--primary-blue);
    font-weight: 700; padding: 15px 30px; border-radius: 5px; text-decoration: none;
    font-size: 1.1rem; transition: all 0.3s ease; border: none; cursor: pointer;
    text-transform: uppercase; box-shadow: 0 4px 15px rgba(201, 152, 70, 0.4);
}
.cta-button:hover { background-color: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 152, 70, 0.6); }
.pulse { animation: pulse-animation 2s infinite; }
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(201, 152, 70, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(201, 152, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 152, 70, 0); }
}

/* HERO SECTION */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translateX(-50%) translateY(-50%); z-index: 1; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(10, 46, 70, 0.95) 0%, rgba(10, 46, 70, 0.6) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: left; color: var(--white); max-width: 800px; }
.hero-content .logo { max-width: 250px; margin-bottom: 30px; }
.hero-title { font-size: 3rem; font-weight: 700; margin-bottom: 15px; line-height: 1.2; }
.highlight-gold { color: var(--gold); font-family: 'Brush Script MT', cursive; font-size: 4rem; font-weight: 400; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 40px; font-weight: 300; line-height: 1.5; }

/* SECTION TITLES */
.section-title { color: var(--primary-blue); font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; }
.subtitle-text { font-size: 1.1rem; color: #555; }

/* FEATURES GRID (CARDS) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-card { background: var(--light-bg); padding: 30px 20px; border-radius: 10px; text-align: center; transition: transform 0.3s; border-bottom: 4px solid var(--gold); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.feature-card i { font-size: 3rem; color: var(--primary-blue); margin-bottom: 15px; }
.feature-card h3 { color: var(--primary-blue); margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { font-size: 0.95rem; color: #666; }

/* LAYOUT GRIDS */
.grid-2-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.align-center { align-items: center; }

/* LISTAS DE ICONES (LAZER E DISTANCIAS) */
.icon-list, .distances-list { list-style: none; font-size: 1.1rem; }
.icon-list li, .distances-list li { margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid #e0e0e0; display: flex; align-items: center; }
.icon-list li i, .distances-list li i { color: var(--gold); margin-right: 15px; font-size: 1.2rem; width: 25px; text-align: center; }

/* PLACEHOLDERS */
.img-placeholder { background-color: #ddd; border: 2px dashed #aaa; color: #666; display: flex; align-items: center; justify-content: center; font-weight: bold; border-radius: 8px; width: 100%; }

/* YOUTUBE E MAPAS */
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 900px; margin: 0 auto 30px auto; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.grid-distances { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

/* GALERIA */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.gal-img { height: 250px; cursor: pointer; transition: transform 0.3s ease; }
.gal-img:hover { transform: scale(1.03); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; z-index: 999; padding-top: 50px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(10, 46, 70, 0.95); }
.lightbox-content { position: relative; margin: auto; max-width: 900px; width: 90%; }
.mySlides { display: none; }
.lightbox-img { height: 600px; background-color: #fff; }
.close { color: white; position: absolute; top: 10px; right: 25px; font-size: 35px; font-weight: bold; cursor: pointer; }
.prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -50px; color: white; font-weight: bold; font-size: 20px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; background-color: rgba(0, 0, 0, 0.5); }
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: var(--gold); }

/* FOOTER */
.footer { background-color: var(--primary-blue); color: var(--text-light); padding: 60px 0 20px; border-top: 5px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { max-width: 200px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.contact-info p { margin-bottom: 10px; }
.contact-info i { color: var(--gold); margin-right: 10px; }
.footer-menu h3, .footer-form h3 { color: var(--gold); margin-bottom: 20px; font-size: 1.3rem; }
.footer-menu ul { list-style: none; }
.footer-menu ul li { margin-bottom: 10px; }
.footer-menu ul li a { color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.footer-menu ul li a:hover { color: var(--gold); }

.footer-form input, .footer-form textarea { width: 100%; padding: 10px 15px; margin-bottom: 15px; border: none; border-radius: 4px; background-color: rgba(255,255,255,0.1); color: white; }
.footer-form input::placeholder, .footer-form textarea::placeholder { color: #ccc; }
.footer-form input:focus, .footer-form textarea:focus { outline: 2px solid var(--gold); background-color: rgba(255,255,255,0.2); }
.submit-btn { background-color: var(--gold); color: var(--primary-blue); border: none; padding: 12px 20px; width: 100%; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background 0.3s; }
.submit-btn:hover { background-color: var(--gold-hover); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.9rem; }

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .grid-2-cols, .grid-distances { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.5rem; }
    .highlight-gold { font-size: 3.2rem; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .highlight-gold { font-size: 2.6rem; }
    .hero-content { text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

/* GALERIA E LIGHTBOX - ATUALIZADO PARA TAG IMG */
.gal-img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Faz a mágica: corta o excesso da foto para caber no quadrado perfeito sem achatar */
    border-radius: 8px; /* Deixa os cantos arredondados e elegantes */
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gal-img:hover {
    transform: scale(1.03);
}

.lightbox-img {
    width: 100%;
    max-height: 80vh; /* A foto não vai estourar a altura da tela do celular/pc */
    object-fit: contain; /* Garante que a foto inteira apareça no modo tela cheia */
    border-radius: 4px;
}

/* =========================================
   1. ATUALIZE A CLASSE .hero e .hero-content
   ========================================= */
.hero {
    position: relative;
    min-height: 65vh; /* Alterado de 100vh para 65vh para o banner ficar menor no desktop */
    height: auto; 
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 60px 0; /* Reduzi proporcionalmente o respiro para harmonizar com a nova altura */
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--white);
    max-width: 800px;
    width: 90%; /* Garante margem lateral para não encostar na borda */
    margin: 0 auto;
}

.hero-content .logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight-gold {
    color: var(--gold);
    font-family: 'Brush Script MT', cursive;
    font-size: 4rem;
    font-weight: 400;
    display: inline-block; /* Evita quebra de linha estranha no meio da palavra */
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.5;
}


/* =========================================
   2. SUBSTITUA AS MEDIA QUERIES LÁ NO FINAL DO CSS
   ========================================= */
@media (max-width: 992px) {
    .grid-2-cols, .grid-distances { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    /* Redução suave para Tablets */
    .hero-title { font-size: 2.2rem; }
    .highlight-gold { font-size: 3.2rem; }
    .hero-content .logo { max-width: 200px; }
}

@media (max-width: 768px) {
    /* Ajustes agressivos para Celulares */
    .hero {
        padding: 80px 0 60px; /* Respiro superior ajustado para 80px no celular */
    }
    .hero-content { text-align: center; }
    .hero-title { 
        font-size: 1.8rem; 
        margin-top: 15px; 
    }
    .highlight-gold { 
        font-size: 2.5rem; 
    }
    .hero-subtitle { 
        font-size: 1rem; 
        margin-bottom: 25px; 
    }
    .hero-content .logo { 
        max-width: 150px; /* Logo menor para não roubar espaço do texto */
        margin-bottom: 10px; 
    }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}