/* Reset e Estilos Globais */
:root {
    --bg-light: #fdfaf6; /* Bege claro de fundo */
    --bg-teal: #170c1d ; /*#3c214c*/
    --text-dark: #0a2d4d;
    --text-light: #ffffff;
    --text-muted: #7f8c8d;
    --accent-coral: #85235e;
    --accent-gold: #b48c4f;
}
.uppercase{
    text-transform: uppercase;
}

/*margin classes*/
 .margin-top-4{
    margin-top: 48px!important;
}
 .margin-top-5{
    margin-top: 60px!important;
}
.margin-top-6{
    margin-top: 80px!important;
}
 .margin-bottom-5{
    margin-bottom: 60px!important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

h2 {
   font-size: 3.5rem;
   color: var(--text-dark);
   margin-bottom: 24px;
   line-height: 1;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

a {
    text-decoration: none;
    color: var(--accent-coral);
    font-weight: 600;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

section {
    padding: 60px 0!important;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px auto;
}
.title{
    line-height: 1;
    text-transform: uppercase;
}

/* Botão Principal (CTA) */
.cta-button {
    display: inline-block;
    background-color: var(--accent-coral);
    color: var(--bg-light);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 92, 92, 0.3);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 92, 92, 0.4);
}

.cta-hero{
    margin-top: 320px;
}

/* Header */
.main-header {
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    background: var(--bg-teal);
    padding: 16px 0;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
   width: 12em;
   filter: opacity(.8);
}

/* Seção Hero */
#hero {
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./assets/reveillon-banner.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
    color: white;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), rgba(0,0,0,0.2));
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 16px;
    color: #85235e;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.reveillon-logo{
    display: flex;
    align-self: center;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    padding:2em;
}

/* Layout de Duas Colunas Genérico */
.two-columns-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
}

/* Seções de Conteúdo */
.intro{
    margin-bottom: 40px;
}
.experience-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.experience-icon{
    height: 70px;
    margin-right: 12px;
}
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.fogos{
    background-image: url('/assets/fogos-02.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

.fogos-2{
    background-image: url('/assets/fogos-3.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 500px;
}

/* --- Ajuste para Itens de Experiência em Largura Total --- */
.full-width-info .experience-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* --- Estilos para a Galeria Mosaico --- */
.mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-radius: 12px;
    overflow: hidden;
}

.mosaic-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* --- Estilos do Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 2, 20, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    padding: 15px;
    transition: background-color 0.3s ease;
    user-select: none;
    border-radius: 5px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.no-scroll {
    overflow: hidden;
}

/* Divisores de Seção */
.section-divider {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}
.divider-bottom {
    top: auto;
    bottom: -1px;
    transform: rotate(180deg);
}
.divider-fill-light {
    fill: var(--bg-light);
}

/* Seção com Fundo Colorido */
.bg-teal {
    background-color: var(--bg-teal);
}
.bg-teal h2, .bg-teal h3 {
    color: var(--text-light);
}
.bg-teal p {
    color: rgba(255, 255, 255, 0.85);
}

/* Imagem Sobreposta */
.overlapping-image {
    /* position: relative; 
    width: 100%!important;
     z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); */
    display: flex;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to top, transparent 10%, black 40%);
    mask-image: linear-gradient(to top, transparent 10%, black 40%);
    margin-bottom: -100px;
    }

/* Rodapé */
.main-footer {
    padding: 120px 0 60px 0;
    background-color: var(--bg-teal);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}
.main-footer a {
    color: #fff;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 20px 0;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para as seções de features */
.feature-section {
    padding: 80px 0;
    position: relative;
}
.feature-header {
    text-align: center;
    margin-bottom: 40px;
}
.feature-header h2 {
    margin-bottom: 16px;
}
.feature-header h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--accent-coral);
}
.feature-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}
.bg-teal .feature-subtitle {
    color: rgba(255, 255, 255, 0.85);
}
.feature-content {
    max-width: 900px;
    margin: 0 auto;
}
.feature-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}
.feature-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}
.feature-list.light li {
    color:var(--bg-dark-blue);
}
.bg-teal .feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

/* Imagem da Seção Shows */
.feature-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 40px;
    border-radius: 10px;
}
.frase-show{
    margin-top: -120px;
}

/* --- Estilos para a seção de Shows e Atrações --- */
.timeline-container {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}
.timeline-container h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 40px;
}
.timeline {
    position: relative;
    padding: 20px 0;
    text-align: left;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 3px solid var(--bg-teal);
    z-index: 1;
}
.timeline-time {
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 4px;
    font-size: 0.9rem;
}
.timeline-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0 0 8px 0;
    font-weight: 600;
}
.timeline-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}
.timeline-item.highlight::before {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}
.timeline-item.highlight h4 {
    color: var(--accent-gold);
}
.attractions-container {
    margin-top: 80px;
    text-align: center;
}
.attractions-container h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 40px;
}
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}
.attraction-item {
    padding: 20px;
}
.attraction-item svg {
    width: 50px;
    height: 50px;
    stroke: var(--accent-gold);
    margin-bottom: 16px;
}
.attraction-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.attraction-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Estilos para Seções de Hospedagem --- */
.hospedagem-section {
    padding: 100px 0;
}
.hospedagem-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}
.hospedagem-titles h2 {
    font-size: 2.8rem;
    line-height: 1.2;
}
.hospedagem-titles h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
}
.hospedagem-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.hospedagem-benefits ul li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
}
.hospedagem-benefits ul li::before {
    content: '✓';
    color: var(--accent-coral);
    font-weight: 700;
    margin-right: 12px;
    font-size: 1.2rem;
}

/*--- Estilos para Vídeo Responsivo ---*/
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-top: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Estilos para Seção Gastronomia --- */
.gastronomia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
}
.gastronomia-grid .feature-content {
    max-width: 100%;
    margin: 0;
}
.gastronomia-grid .feature-list {
    align-items: flex-start;
}
.gastronomia-grid .text-center {
    text-align: left;
}
.gastronomia-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#reservar{
    padding-top: 0px!important;
}

/* --- Media Queries (Responsividade) --- */

@media (min-width:901px){
    #hero{
        min-height: 550px;
    }
}

@media (max-width: 900px) {
     .cta-hero {
        margin-top: 200px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    h2, .hero-content h1 { font-size: 2.5rem; }
    .cta-button { padding: 14px 28px; }
    section { padding: 60px 0; }
    .section-divider svg { height: 80px; }
    .overlapping-image { margin-top: -80px; }

    .main-header .container {
        flex-direction: column;
        gap: 10px;
    }
    .reveillon-logo{
        width: 70vw;
    }
    .fogos {
        background-size: 120%;
    }
    .fogos-2 {
        background-size: 150%;
        background-position-y: 300px;
    }
    .mosaic-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .two-columns-grid {
        grid-template-columns: 1fr;
    }
    .feature-image {
        margin-bottom: 30px;
    }
    .feature-section {
        padding: 60px 0;
    }
    .feature-header h2 {
        font-size: 2.2rem;
    }
    .feature-header h3 {
        font-size: 1.8rem;
    }
    .timeline::before {
        left: 10px;
    }
    .timeline-item {
        padding-left: 45px;
    }
    .timeline-item::before {
        left: 2px;
    }
    .attractions-grid {
        gap: 20px;
    }
    .hospedagem-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .hospedagem-titles h2 {
        font-size: 2.2rem;
    }
    .gastronomia-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gastronomia-grid .text-center {
        text-align: center;
    }
    .gastronomia-image {
        order: -1;
    }
}

@media (max-width: 557px) {
   .experience{
    text-align: center;
   }
   .hospedagem-section{
    padding-top: 40px;
    padding-bottom: 40px;
   }
}

@media (max-width: 480px) {
    .cta-hero {
        margin-top: 200px;
        margin-bottom: 24px;
    }
}



