/* ================================================================
   REI DO TUCUNARÉ — CSS Principal
   Cores: #00357B (azul) | #F1AE00 (ouro) | #001a3d (escuro)
   ================================================================ */

/* ── VARIÁVEIS ────────────────────────────────────────────── */
:root {
    --blue:        #00357B;
    --blue-dark:   #001a3d;
    --blue-mid:    #004fa3;
    --gold:        #F1AE00;
    --gold-light:  #f9c72f;
    --gold-dark:   #c98f00;
    --white:       #ffffff;
    --gray-light:  #f5f5f5;
    --gray:        #888;
    --text:        #2c2c2c;
    --shadow:      0 4px 24px rgba(0,53,123,0.12);
    --shadow-lg:   0 8px 40px rgba(0,53,123,0.2);
    --radius:      12px;
    --radius-sm:   6px;
    --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Oswald', sans-serif;
    --font-body:    'Roboto', sans-serif;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue-dark);
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: var(--blue);
}
.section-title span { color: var(--gold); }
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 10px auto 0;
    border-radius: 2px;
}
.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

/* ── TOPBAR ────────────────────────────────────────────────── */
.header-topbar {
    background: var(--blue-dark);
    padding: 8px 0;
    font-size: 0.82rem;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.topbar-contact { display: flex; flex-wrap: wrap; gap: 16px; }
.topbar-item {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.topbar-item:hover { color: var(--gold); }
.topbar-item i { color: var(--gold); font-size: 0.85rem; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: var(--transition);
}
.topbar-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--blue-dark); }

/* ── NAVBAR ────────────────────────────────────────────────── */
#main-navbar {
    background: var(--blue);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
#main-navbar.scrolled {
    background: rgba(0,53,123,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}
.navbar-brand { padding: 10px 0; }
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(241,174,0,0.3);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.navbar-nav { gap: 2px; }
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 22px 14px !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.nav-link i { font-size: 0.8rem; opacity: 0.7; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }

/* Toggle mobile com ícone de peixe */
.navbar-toggler {
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    background: transparent;
    outline: none;
    box-shadow: none !important;
}
.nav-toggle-icon {
    color: var(--gold);
    font-size: 1.3rem;
    transform: rotate(-45deg);
    display: block;
    transition: var(--transition);
}
.navbar-toggler[aria-expanded="true"] .nav-toggle-icon { transform: rotate(45deg); }

/* Botão Fale Conosco */
.btn-fale-conosco {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--blue-dark) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(241,174,0,0.3);
    transition: var(--transition);
}
.btn-fale-conosco:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241,174,0,0.45);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.navbar-cta { display: flex; align-items: center; }

/* ── HERO SLIDESHOW ────────────────────────────────────────── */
#hero-slider {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--blue-dark);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide.active { opacity: 1; }
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,26,61,0.35) 0%,
        rgba(0,26,61,0.5) 60%,
        rgba(0,26,61,0.75) 100%
    );
}
/* Slides com imagens de peixe via unsplash (substitua pelas suas) */
.slide-1 { background-image: url('https://reidotucunare.com.br/images/temp/slider_21.jpg'); }
.slide-2 { background-image: url('https://reidotucunare.com.br/images/temp/slider_22.jpg'); }
.slide-3 { background-image: url('https://reidotucunare.com.br/images/temp/slider_23.jpg'); }

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241,174,0,0.15);
    border: 1px solid rgba(241,174,0,0.4);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
    animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    animation: fadeInLeft 0.8s ease 0.4s both;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-bottom: 35px;
    font-weight: 300;
    animation: fadeInLeft 0.8s ease 0.6s both;
}
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--blue-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 25px rgba(241,174,0,0.4);
    transition: var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(241,174,0,0.55);
    color: var(--blue-dark);
}
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 35px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

/* Controles do slider */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    padding: 0;
}
.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,53,123,0.5);
    border: 2px solid rgba(241,174,0,0.4);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}
.slider-arrow:hover { background: var(--gold); color: var(--blue-dark); }
.slider-prev { left: 25px; }
.slider-next { right: 25px; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.scroll-indicator i { color: var(--gold); }

/* ── SEÇÃO RESERVAS ────────────────────────────────────────── */
#reservas {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
}
#reservas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(241,174,0,0.04);
    pointer-events: none;
}
.reservas-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.reservas-title span { color: var(--gold); }
.reservas-subtitle { color: rgba(255,255,255,0.7); }

.reserva-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(241,174,0,0.2);
    border-radius: var(--radius);
    padding: 35px;
    backdrop-filter: blur(10px);
}
.form-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.form-control, .form-select {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
    transition: var(--transition) !important;
}
.form-control::placeholder { color: rgba(255,255,255,0.35) !important; }
.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.12) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(241,174,0,0.15) !important;
}
.form-select option { background: var(--blue); }
.btn-reservar {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--blue-dark);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    width: 100%;
    box-shadow: 0 6px 20px rgba(241,174,0,0.3);
    transition: var(--transition);
    cursor: pointer;
}
.btn-reservar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(241,174,0,0.45);
}
.reserva-info { color: rgba(255,255,255,0.8); }
.reserva-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.reserva-info-item:last-child { border-bottom: none; }
.reserva-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(241,174,0,0.1);
    border: 1px solid rgba(241,174,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
}
.reserva-info-item h5 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}
.reserva-info-item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ── SEÇÃO INSTITUCIONAL + VÍDEO ───────────────────────────── */
#institucional {
    padding: 80px 0;
    background: var(--white);
}
.video-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
    aspect-ratio: 16/9;
    background: var(--blue-dark);
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.institucional-text .section-title { text-align: left; }
.institucional-text .section-title::after { margin: 10px 0 0; }
.institucional-lead {
    font-size: 1.15rem;
    color: var(--blue);
    font-weight: 500;
    line-height: 1.7;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 25px 0;
}
.institucional-text p { color: #555; line-height: 1.8; }
.stat-box {
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    transition: var(--transition);
}
.stat-box:hover { background: var(--blue); }
.stat-box:hover .stat-number, .stat-box:hover .stat-label { color: var(--white); }
.stat-box:hover .stat-icon { background: rgba(241,174,0,0.2); color: var(--gold); }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    transition: var(--transition);
}
.stat-label { color: var(--gray); font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); }
.stat-icon { width: 40px; height: 40px; background: rgba(0,53,123,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1rem; margin: 0 auto 10px; transition: var(--transition); }

/* ── SEÇÃO PARCEIROS ───────────────────────────────────────── */
#parceiros {
    padding: 60px 0;
    background: var(--gray-light);
}
.parceiro-logo {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    filter: grayscale(80%) opacity(0.7);
}
.parceiro-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.parceiro-logo img {
    max-height: 60px;
    max-width: 130px;
    object-fit: contain;
}

/* ── GALERIA ───────────────────────────────────────────────── */
#galeria {
    padding: 80px 0;
    background: var(--white);
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--blue-dark);
}
.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.galeria-item:hover img { transform: scale(1.1); }
.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,53,123,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay i { color: var(--gold); font-size: 2rem; }
.btn-ver-tudo {
    background: transparent;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 35px;
    border-radius: 50px;
    border: 2px solid var(--blue);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}
.btn-ver-tudo:hover {
    background: var(--blue);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ── BLOG ──────────────────────────────────────────────────── */
#blog-home {
    padding: 80px 0;
    background: var(--gray-light);
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: var(--blue-dark);
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--blue-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}
.blog-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-date {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-card-date i { color: var(--gold); }
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--blue-dark);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--blue); }
.blog-card-text { color: #666; font-size: 0.9rem; line-height: 1.6; flex: 1; }
.btn-ler-mais {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 18px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    transition: var(--transition);
}
.btn-ler-mais:hover { color: var(--gold); gap: 10px; }
.btn-blog-todos {
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-blog-todos:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--gold);
}

/* ── FOOTER ────────────────────────────────────────────────── */
#site-footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.7);
}
.footer-main { padding: 70px 0 40px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.footer-logo img { width: 65px; height: 65px; object-fit: contain; border-radius: var(--radius-sm); border: 2px solid rgba(241,174,0,0.3); }
.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.footer-logo-text span:first-child {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.footer-logo-text span:last-child {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--blue-dark); transform: translateY(-3px); }
.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(241,174,0,0.3);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links a i { color: var(--gold); font-size: 0.7rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { margin-bottom: 14px; }
.footer-contact-list a, .footer-contact-list span {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list i { color: var(--gold); margin-top: 2px; min-width: 14px; }
.btn-footer-whatsapp {
    background: #25D366;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 11px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    transition: var(--transition);
}
.btn-footer-whatsapp:hover { background: #1da851; color: var(--white); transform: translateY(-2px); }
.footer-privacy-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    transition: var(--transition);
}
.footer-privacy-link:hover { color: var(--gold); }
.footer-privacy-link i { color: var(--gold); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner { text-align: center; }
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin: 0 0 4px;
}
.footer-copy strong { color: var(--gold); }
.footer-cnpj { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(37,211,102,0.6);
    animation: none;
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--blue-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── LGPD COOKIE BAR ───────────────────────────────────────── */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--blue-dark);
    border-top: 3px solid var(--gold);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}
.cookie-bar-content i { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.cookie-bar-content p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; line-height: 1.5; }
.cookie-bar-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-policy {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    text-decoration: underline;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: var(--transition);
}
.btn-cookie-policy:hover { color: var(--gold); }
.btn-cookie-accept {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--blue-dark);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-cookie-accept:hover { transform: translateY(-2px); }

/* ── PWA BAR ───────────────────────────────────────────────── */
.pwa-install-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--blue);
    border-bottom: 3px solid var(--gold);
    padding: 10px 0;
}
.pwa-install-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 0.9rem;
}
.pwa-install-inner > i { color: var(--gold); font-size: 1.2rem; }
.pwa-install-inner > span { flex: 1; }
.btn-pwa-install {
    background: var(--gold);
    color: var(--blue-dark);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-pwa-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: var(--transition);
}
.btn-pwa-close:hover { color: var(--white); }

/* ── HERO BREADCRUMB (páginas internas) ────────────────────── */
.page-hero {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,26,61,0.8) 0%, rgba(0,53,123,0.6) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.page-hero h1 span { color: var(--gold); }
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb-item { font-size: 0.85rem; font-weight: 500; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── SEÇÃO GENÉRICA (em breve) ─────────────────────────────── */
.coming-soon-section {
    padding: 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.coming-soon-box {
    text-align: center;
    padding: 60px 40px;
    background: var(--gray-light);
    border-radius: var(--radius);
    border: 2px dashed rgba(0,53,123,0.2);
}
.coming-soon-icon { font-size: 4rem; color: var(--gold); margin-bottom: 20px; opacity: 0.7; }
.coming-soon-box h2 { color: var(--blue); font-size: 1.8rem; }
.coming-soon-box p { color: var(--gray); max-width: 500px; margin: 0 auto 25px; }

/* ── ANIMAÇÕES ─────────────────────────────────────────────── */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVO ────────────────────────────────────────────── */
@media (max-width: 1199px) { .galeria-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 991px) {
    #hero-slider { height: 70vh; }
    .navbar-collapse {
        background: var(--blue);
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }
    .navbar-cta { margin-top: 15px; }
    .btn-fale-conosco { margin-left: 0; width: 100%; justify-content: center; }
    .nav-link { padding: 12px 10px !important; }
    .nav-link::after { display: none; }
    .galeria-grid { grid-template-columns: repeat(2, 1fr); }
    .topbar-address { display: none; }
}
@media (max-width: 767px) {
    #hero-slider { height: 80vh; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; justify-content: center; }
    .slider-arrow { display: none; }
    .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .cookie-bar { flex-direction: column; }
    .cookie-bar-actions { width: 100%; justify-content: flex-end; }
    .page-hero { height: 240px; background-attachment: scroll; }
}
@media (max-width: 575px) {
    .galeria-grid { grid-template-columns: repeat(2, 1fr); }
    .topbar-contact { gap: 8px; }
    .header-topbar { display: none; }
    .logo-subtitle { font-size: 1.2rem; }
}

/* ── LIGHTBOX GALERIA ──────────────────────────────────────── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-sm); border: 3px solid var(--gold); }
.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ── MENSAGEM DE FEEDBACK ──────────────────────────────────── */
.alert-reserva {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}
.alert-reserva.sucesso {
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.4);
    color: #25D366;
}
.alert-reserva.erro {
    background: rgba(220,53,69,0.15);
    border: 1px solid rgba(220,53,69,0.4);
    color: #dc3545;
}
