/* ==========================================
   JUNDÚ - HOSPITALIDADE E ARTE
   CSS - Design Premium & Moderno
   ========================================== */


/* ========== VARIÁVEIS DE CORES ========== */

:root {
    --bg-primary: #F5F1E8;
    --bg-secondary: #FFFFFF;
    --verde: #4E6B3C;
    --verde-escuro: #2F4F2F;
    --marrom: #6B4F36;
    --areia: #D8C3A5;
    --texto: #2B2B2B;
    --texto-claro: #666666;
    --bege: #E8DFD0;
    --accent: #A0845C;
    --sombra: rgba(0, 0, 0, 0.1);
    --sombra-pesada: rgba(0, 0, 0, 0.2);
}


/* ========== RESET & BASE ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--texto);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ========== TIPOGRAFIA ========== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--texto);
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: #444444;
    font-family: 'Inter', sans-serif;
}

.section-title {
    color: var(--verde-escuro);
    font-weight: 800;
    letter-spacing: -.6px;
    margin-bottom: 18px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-subtitle {
    color: #666;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}


/* ========== BOTÕES ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 16px 34px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .14);
}

.btn-primary {
    background: linear-gradient( 135deg, #5D7F47, #446235);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient( 135deg, #6C9053, #4E6B3C);
}

.btn-secondary {
    background: #ffffff;
    color: var(--verde);
    border: 2px solid rgba(78, 107, 60, .18);
}

.btn-secondary:hover {
    border-color: var(--verde);
}

.btn-outline {
    background: transparent;
    color: var(--verde);
    border: 2px solid var(--verde);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: var(--verde);
    color: white;
}

.btn-cotacao {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 100%;
    margin: 2rem auto 0;
    padding: 16px 34px;
    align-self: center;
}


/* ========== NAVBAR ========== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--sombra);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(245, 241, 232, 0.98);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--verde-escuro);
}

.logo-text {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--marrom) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--texto);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-link {
    color: white;
    background: var(--verde);
    padding: 8px 20px;
    border-radius: 50px;
}

.contact-link:hover {
    background: var(--verde-escuro);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--texto);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}


/* ========== HERO SECTION ========== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(47, 79, 47, 0.25) 0%, rgba(107, 79, 54, 0.18) 100%); */
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    /* o ultimo numero do RGBA define a transparência do fundo */
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-location {
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.scroll-icon {
    color: white;
    font-size: 1.5rem;
}


/* ========== SOBRE SECTION ========== */

.sobre {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--sombra-pesada);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--areia) 0%, var(--verde) 100%);
}

.sobre-content h2 {
    margin-bottom: 2rem;
    color: var(--verde-escuro);
}

.sobre-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444444;
    font-size: 1.05rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--bege);
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(78, 107, 60, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(78, 107, 60, 0.1);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--verde-escuro);
    font-weight: 600;
    font-size: 0.95rem;
}


/* ========== HISTÓRIA SECTION ========== */

.historia {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.historia-card {
    padding: 2.5rem;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid rgba(78, 107, 60, .12);
    border-top: 5px solid var(--verde);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .03);
    transition: all .35s ease;
    text-align: center;
}

.historia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12), 0 8px 18px rgba(0, 0, 0, .06);
    border-color: rgba(78, 107, 60, .25);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .12));
}

.historia-card h3 {
    color: var(--verde-escuro);
    margin-bottom: 1rem;
    font-weight: 700;
}

.historia-card p {
    color: #555;
    line-height: 1.8;
}


/* ========== ACOMODAÇÕES SECTION ========== */

.acomodacoes {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.acomodacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.acomodacao-card {
    border-radius: 20px;
    overflow: hidden;
    background: #FFFDFB;
    border: 1px solid rgba(78, 107, 60, .10);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08), 0 3px 10px rgba(0, 0, 0, .04);
    transition: .35s;
    display: flex;
    flex-direction: column;
}

.acomodacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .14), 0 10px 20px rgba(0, 0, 0, .06);
}

.acomodacao-card.premium {
    border-top: 4px solid var(--accent);
}

.card-header {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.card-header.camping {
    background: linear-gradient(135deg, var(--areia) 0%, var(--accent) 100%);
}

.card-header.arapongas {
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
}

.card-header.chales {
    background: linear-gradient(135deg, var(--marrom) 0%, var(--verde-escuro) 100%);
}

.card-header h3 {
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
}

.premium-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #FFFDF9;
}

.card-description {
    color: #5b5b5b;
    margin-bottom: 1.6rem;
    line-height: 1.8;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.benefit {
    color: var(--verde-escuro);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .45rem .7rem;
    border-radius: 10px;
    background: rgba(78, 107, 60, .05);
}

.benefit:hover {
    background: rgba(78, 107, 60, .10);
}


/* ========== GASTRONOMIA SECTION ========== */

.gastronomia {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.gastronomia-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #444444;
}

.cardapio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cardapio-box {
    background: #FCFAF6;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 107, 60, .10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06), 0 3px 10px rgba(0, 0, 0, .03);
    transition: .35s;
}

.cardapio-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10), 0 8px 18px rgba(0, 0, 0, .05);
}

.cardapio-box h3 {
    color: var(--verde-escuro);
    margin-bottom: 1.5rem;
}

.cardapio-list {
    list-style: none;
    margin-bottom: 2rem;
}

.cardapio-list li {
    padding: 1rem 0;
    color: #555;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(78, 107, 60, .08);
    transition: .25s;
}

.cardapio-list li:hover {
    padding-left: 8px;
    color: var(--verde-escuro);
}

.cardapio-list li:last-child {
    border-bottom: none;
}

.cardapio-nota {
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(78, 107, 60, .05);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    color: #666;
    font-size: .92rem;
}

.planos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.plano-card {
    background: linear-gradient(135deg, #436133, #2F4F2F);
    color: #FFF;
    padding: 2rem;
    border-radius: 20px;
    border: none;
    box-shadow: 0 12px 30px rgba(47, 79, 47, .30);
    transition: .35s;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(47, 79, 47, .45);
}

.plano-card h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.plano-desc {
    color: rgba(255, 255, 255, 0.9);
}


/* ========== ESTRUTURA/COMODIDADES SECTION ========== */

.estrutura {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.comodidade-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.8rem;
    background: #FFFDF9;
    border-radius: 18px;
    border: 1px solid rgba(78, 107, 60, .10);
    border-left: 5px solid var(--verde);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    transition: .35s;
}

.comodidade-item:hover {
    transform: translateY(-6px);
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.comodidade-icon {
    color: var(--verde);
    font-size: 1.7rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 107, 60, .08);
    border-radius: 12px;
}

.comodidade-item p {
    color: #555;
    line-height: 1.7;
}


/* ========== DAY USE SECTION ========== */

.day-use {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.day-use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.day-use-card {
    background: #FFFDF9;
    padding: 2.6rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 107, 60, .10);
    border-top: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06), 0 3px 10px rgba(0, 0, 0, .03);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.day-use-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient( 90deg, var(--accent), var(--verde));
}

.day-use-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .12), 0 10px 22px rgba(0, 0, 0, .05);
}

.day-use-card h3 {
    color: var(--verde-escuro);
    margin-bottom: 0.75rem;
}

.plan-timing {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .9rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: rgba(78, 107, 60, .08);
    color: var(--verde-escuro);
    font-weight: 700;
    font-size: .9rem;
}

.day-use-desc {
    color: #555;
    line-height: 1.8;
}


/* ========== VIVÊNCIAS SECTION ========== */

.vivencias {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.vivencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.vivencia-card {
    background: #FFFDF9;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 107, 60, .10);
    border-top: 5px solid var(--verde);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06), 0 3px 10px rgba(0, 0, 0, .03);
    transition: .35s;
}

.vivencia-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--accent);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12), 0 8px 20px rgba(0, 0, 0, .05);
}

.vivencia-header {
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    margin-bottom: 1.4rem;
}

.vivencia-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 107, 60, .08);
    border-radius: 16px;
}

.vivencia-card h3 {
    color: var(--verde-escuro);
    margin: 0;
}

.vivencia-card p {
    color: #555;
    line-height: 1.8;
}

.vivencia-info {
    text-align: center;
    padding: 2.8rem;
    background: #F7F2E8;
    border-radius: 20px;
    border: 1px solid rgba(78, 107, 60, .10);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.vivencia-info p {
    margin-bottom: 0.75rem;
}

.vivencia-nota {
    color: #666;
    font-size: .95rem;
    font-style: italic;
}

.day-use-card,
.vivencia-card {
    backdrop-filter: blur(8px);
}

.day-use-card:hover,
.vivencia-card:hover {
    border-color: rgba(78, 107, 60, .22);
}


/* ========== PASSEIOS SECTION ========== */

.passeios {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.passeio-content {
    max-width: 800px;
    margin: 0 auto;
}

.passeio-intro {
    font-size: 1.15rem;
    color: #444444;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.passeio-details {
    background: #FFFDF9;
    padding: 2.8rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 107, 60, .10);
    border-left: 5px solid var(--verde);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06), 0 3px 10px rgba(0, 0, 0, .03);
    transition: .35s;
}

.passeio-details:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .10);
}

.detalhe {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(78, 107, 60, .08);
}

.detalhe:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detalhe p {
    color: #444444;
    line-height: 1.7;
}

.detalhe strong {
    color: var(--verde-escuro);
}

.passeio-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    background: #FFFDF9;
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(78, 107, 60, .10);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
    transition: .35s;
}

.info-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.label {
    color: var(--texto-claro);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.valor {
    color: var(--verde-escuro);
    font-weight: 700;
    font-size: 1.2rem;
}


/* ========== REGRAS SECTION ========== */

.regras {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.regra-intro {
    text-align: center;
    background: #F8F3EA;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 107, 60, .10);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.regra-intro p {
    font-size: 1.1rem;
    margin: 0;
}

.regras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.regra-item {
    background: #FFFDF9;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 107, 60, .10);
    border-top: 5px solid var(--verde);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
    transition: .35s;
}

.regra-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .10);
}

.regra-item h3 {
    color: var(--verde-escuro);
    margin-bottom: 1.5rem;
}

.regra-item ul {
    list-style: none;
}

.regra-item li {
    color: #555;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(78, 107, 60, .08);
    line-height: 1.7;
}

.regra-item li:last-child {
    border-bottom: none;
}

.reserva-info {
    background: #F8F3EA;
    padding: 3rem;
    border-radius: 22px;
    border: 1px solid rgba(78, 107, 60, .10);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}

.reserva-info h3 {
    color: var(--verde-escuro);
    margin-bottom: 2rem;
}

.info-detalhes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-block {
    background: #FFFDFB;
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(78, 107, 60, .08);
    border-left: 5px solid var(--verde);
    transition: .35s;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.info-block p {
    margin: 0;
    color: #444444;
    line-height: 1.7;
}

.info-block strong {
    color: var(--verde-escuro);
}

.historia-card,
.acomodacao-card,
.cardapio-box,
.plano-card,
.comodidade-item,
.day-use-card,
.vivencia-card,
.passeio-details,
.info-item,
.regra-item,
.info-block {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}


/* ========== FOOTER ========== */

.footer {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--marrom) 100%);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-tagline {
    font-style: italic;
    font-size: 1.05rem;
    opacity: 0.9;
}

.footer-hours {
    font-size: 0.95rem;
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link.whatsapp:hover {
    background: #20BA5C;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.payment-methods {
    font-size: 0.85rem;
}


/* ========== ANIMAÇÕES ========== */

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ========== SCROLL REVEAL ========== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s ease, transform .35s ease;
    will-change: opacity, transform;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========== RESPONSIVIDADE ========== */

@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .sobre-grid,
    .cardapio-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    .section-title {
        margin-bottom: 2rem;
    }
    .container {
        padding: 0 15px;
    }
    /* NAVBAR MOBILE */
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 27px var(--sombra);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        padding: 1rem;
        display: block;
        width: 100%;
    }
    .nav-link::after {
        display: none;
    }
    .contact-link {
        background: var(--verde);
        color: white;
        border-radius: 0;
        padding: 1rem;
    }
    /* HERO MOBILE */
    .hero {
        margin-top: 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-tagline {
        font-size: 1.3rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-buttons {
        gap: 1rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    /* GRID SECTIONS */
    .historia-grid,
    .acomodacoes-grid,
    .day-use-grid,
    .vivencias-grid,
    .regras-grid {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .passeio-info {
        grid-template-columns: 1fr;
    }
    .info-detalhes {
        grid-template-columns: 1fr;
    }
    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* PADDING */
    .sobre,
    .historia,
    .acomodacoes,
    .gastronomia,
    .estrutura,
    .day-use,
    .vivencias,
    .passeios,
    .regras,
    .footer {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.1rem;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-tagline {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .btn {
        width: 100%;
    }
    .section-title {
        margin-bottom: 1.5rem;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .cardapio-box,
    .regra-item {
        padding: 1.5rem;
    }
    .footer-section {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    p {
        font-size: 0.95rem;
    }
    .sobre-text {
        font-size: 1rem;
    }
}


/* ========== PRINT STYLES ========== */

@media print {
    .navbar,
    .hero-scroll-indicator {
        display: none;
    }
}

.media-video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* border-radius: 20px; */
    display: block
}

.card-body .media-video,
.motivo-image .media-video {
    height: 300px;
}

img {
    transition: transform .5s ease, filter .5s ease;
}

img:hover {
    transform: scale(1.03);
}

.historia-card,
.acomodacao-card,
.cardapio-box,
.plano-card,
.comodidade-item,
.day-use-card,
.vivencia-card,
.passeio-details,
.info-item,
.regra-item,
.info-block {
    position: relative;
    overflow: hidden;
}

.historia-card::after,
.acomodacao-card::after,
.cardapio-box::after,
.plano-card::after,
.comodidade-item::after,
.day-use-card::after,
.vivencia-card::after,
.passeio-details::after,
.info-item::after,
.regra-item::after,
.info-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(255, 255, 255, .12), transparent 35%);
    pointer-events: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ECE6D8;
}

::-webkit-scrollbar-thumb {
    background: var(--verde);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--verde-escuro);
}

::selection {
    background: rgba(78, 107, 60, .25);
    color: #222;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(78, 107, 60, .35);
    outline-offset: 4px;
    border-radius: 8px;
}