/* ==========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    /* Color Palette */
    --purple: #6f00b8;
    --orange: #f7432b;
    --gold: #ffb41f;
    --green: #30563a;
    --cream: #fff8ed;
    --dark: #231f20;
    --white: #ffffff;
    --blue: #2986cc;
    --grey-text: #555555;
    --border-light: rgba(35, 31, 32, 0.1);
    
    /* Typography */
    --font-title: 'Skranji', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Container Width */
    --container-width: 1200px;
    
    /* Transition Speed */
    --transition: all 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

/* Common Layout Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.section-title.white-text {
    color: var(--white);
}

.section-title.purple-text {
    color: var(--purple);
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--grey-text);
}

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

.section-subtitle.green-light-text {
    color: rgba(255, 255, 255, 0.85);
}

.paragraph {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--dark);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--purple);
}

.btn-navbar {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(247, 67, 43, 0.2);
}

.btn-navbar:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 6px 15px rgba(247, 67, 43, 0.3);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    margin-top: 80px;
    position: relative;
    background-image: url('fotos/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 650px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(247, 67, 43, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 8px 20px rgba(247, 67, 43, 0.4);
}

/* ==========================================================================
   STATS BAR (GREEN BAR)
   ========================================================================== */
.green-bar {
    background-color: var(--green);
    color: var(--white);
    padding: 16px 0;
}

.green-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.green-bar-item {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.green-bar-separator {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* ==========================================================================
   "O QUE É O FERAS?" SECTION (PURPLE SECTION)
   ========================================================================== */
.what-is-feras {
    background-color: var(--purple);
    color: var(--white);
    padding: 100px 0;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-is-feras .section-title {
    color: var(--white);
}

.what-is-feras .paragraph {
    color: rgba(255, 255, 255, 0.9);
}

.img-col {
    display: flex;
    justify-content: center;
}

.img-card-wrapper {
    position: relative;
    border-radius: 20px;
    background-color: var(--gold);
    padding: 0;
    /* Box shadow to simulate solid yellow offset border */
    box-shadow: 12px 12px 0px 0px var(--gold);
    border: 4px solid var(--gold);
}

.img-card {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}

/* ==========================================================================
   STATS COUNTERS SECTION (CREAM BACKGROUND)
   ========================================================================== */
.stats-counters {
    background-color: var(--cream);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-counters.in-view .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stats-counters.in-view .stat-item:nth-child(1) { transition-delay: 0.1s; }
.stats-counters.in-view .stat-item:nth-child(2) { transition-delay: 0.2s; }
.stats-counters.in-view .stat-item:nth-child(3) { transition-delay: 0.3s; }
.stats-counters.in-view .stat-item:nth-child(4) { transition-delay: 0.4s; }

.stat-number {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
}

/* Stat color mapping */
.stat-item:nth-child(1) .stat-number { color: var(--orange); }
.stat-item:nth-child(2) .stat-number { color: var(--purple); }
.stat-item:nth-child(3) .stat-number { color: var(--blue); }
.stat-item:nth-child(4) .stat-number { color: var(--green); }

.stat-label {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--grey-text);
    text-transform: uppercase;
}

/* ==========================================================================
   GALLERY SECTION (FERAS EM AÇÃO)
   ========================================================================== */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   CIRCUITO SECTION
   ========================================================================== */
.circuito-section {
    background-color: var(--cream);
}

.circuito-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.circuito-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.circuito-img-wrapper {
    position: relative;
    overflow: hidden;
}

.circuito-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

.circuito-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.circuito-badge.bg-orange {
    background-color: var(--gold);
    color: var(--dark);
}

.circuito-badge.bg-grey {
    background-color: var(--green);
}

.circuito-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.circuito-card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.circuito-card-desc {
    color: var(--grey-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   SEGURANÇA E BEM-ESTAR SECTION
   ========================================================================== */
.security-section {
    background-color: var(--green);
    color: var(--white);
    padding: 100px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.security-item {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.security-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.security-icon {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.security-label {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==========================================================================
   TIMELINE SECTION (PROGRAMAÇÃO DO SEU DIA)
   ========================================================================== */
.timeline-section {
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 16px;
    width: 4px;
    height: 100%;
    background-color: var(--purple);
}

.timeline-item {
    position: relative;
    padding-left: 56px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 6px;
    left: 8px;
    width: 20px;
    height: 20px;
    background-color: var(--gold);
    border: 4px solid var(--purple);
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background-color: var(--cream);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.timeline-time {
    display: inline-block;
    background-color: var(--purple);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.timeline-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-desc {
    color: var(--grey-text);
    font-size: 1rem;
}

/* ==========================================================================
   O LOCAL SECTION
   ========================================================================== */
.local-section {
    position: relative;
    background-image: url('fotos/local-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: var(--white);
}

.local-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Decreased overlay mask opacity to make the background photo more visible */
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.local-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 60px;
    align-items: center;
}

.local-header {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.local-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}

.local-address {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.local-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.local-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.local-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.local-list-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.local-list-item strong {
    color: var(--gold);
}

/* ==========================================================================
   COMBOS (INGRESSOS) SECTION
   ========================================================================== */
.combos-section {
    background-color: var(--cream);
    padding: 100px 0;
}

.combos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.combo-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.combo-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.combo-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.combo-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.combo-tagline {
    font-size: 1.1rem;
    color: var(--grey-text);
    margin-bottom: 24px;
}

.combo-price-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.price-val {
    font-family: var(--font-title);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
}

.combo-card:nth-child(1) .price-val { color: var(--orange); }
.combo-card:nth-child(2) .price-val { color: var(--purple); }

.price-desc {
    font-size: 1rem;
    color: var(--grey-text);
    margin-top: 6px;
    font-weight: 600;
}

.combo-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.paw-bullet {
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 2px;
}

.btn-combo {
    display: block;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 24px;
    border-radius: 50px;
    text-transform: uppercase;
}

.btn-combo-orange {
    background-color: var(--orange);
    box-shadow: 0 6px 15px rgba(247, 67, 43, 0.2);
}

.btn-combo-orange:hover {
    box-shadow: 0 8px 20px rgba(247, 67, 43, 0.3);
    transform: translateY(-2px);
}

.btn-combo-purple {
    background-color: var(--purple);
    box-shadow: 0 6px 15px rgba(111, 0, 184, 0.2);
}

.btn-combo-purple:hover {
    box-shadow: 0 8px 20px rgba(111, 0, 184, 0.3);
    transform: translateY(-2px);
}

/* Extras Box Layout */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.extra-item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extra-price {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.extra-desc {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.4;
}

/* ==========================================================================
   PRAÇA DE ALIMENTAÇÃO SECTION
   ========================================================================== */
.food-section {
    background-color: var(--white);
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.food-img {
    border-radius: 24px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.food-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.food-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--dark);
}

.food-subtext {
    font-size: 0.95rem;
    color: var(--grey-text);
    font-weight: 600;
}

/* ==========================================================================
   RETIRADA DE KITS SECTION
   ========================================================================== */
.kits-section {
    background-color: var(--cream);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.kits-schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.schedule-col {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.schedule-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--cream);
    padding-bottom: 12px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row .day {
    font-weight: 600;
    color: var(--dark);
}

.schedule-row .hours {
    font-weight: 700;
    color: var(--orange);
}

/* ==========================================================================
   YELLOW BANNER SECTION
   ========================================================================== */
.yellow-banner {
    background-color: var(--gold);
    color: var(--dark);
    padding: 80px 0;
}

.yellow-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

.banner-title {
    font-family: var(--font-title);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    word-break: keep-all;
}

.banner-paragraph {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.banner-paragraph:last-child {
    margin-bottom: 0;
}

.banner-paragraph strong {
    font-weight: 700;
}

/* ==========================================================================
   FAQ SECTION (DÚVIDAS FREQUENTES)
   ========================================================================== */
.faq-section {
    background-color: var(--cream);
}

.faq-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    text-align: left;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
}

.faq-trigger:hover {
    color: var(--purple);
}

.faq-icon-bubble {
    width: 32px;
    height: 32px;
    background-color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.faq-plus-minus {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    margin-top: -2px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-inner {
    padding: 0 32px 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    font-size: 1.05rem;
    color: var(--grey-text);
}

.faq-inner p {
    margin-bottom: 16px;
}

.faq-inner p:last-child {
    margin-bottom: 0;
}

.faq-inner ul {
    list-style: none;
}

.faq-inner ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.faq-inner ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--purple);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.faq-inner ul li:last-child {
    margin-bottom: 0;
}

/* T-shirt measurements table styling */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.medidas-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    text-align: center;
    background-color: var(--white);
}

.medidas-table th, 
.medidas-table td {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
}

.table-main-header th {
    background-color: var(--white);
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    border-bottom: none;
    text-align: left;
    padding-bottom: 4px;
}

.table-sub-header th {
    background-color: var(--white);
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    border-top: none;
    text-align: left;
    padding-top: 0;
    padding-bottom: 12px;
}

.sizes-header-row th {
    background-color: var(--gold);
    color: var(--dark);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
}

.sizes-header-row th:first-child {
    background-color: var(--white);
    border: none;
}

.medidas-table tbody tr {
    transition: var(--transition);
}

.medidas-table tbody tr:hover {
    background-color: rgba(255, 180, 31, 0.05);
}

.row-label {
    font-weight: 700;
    text-align: left;
    background-color: var(--white);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--orange);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 0.9fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 48px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 24px;
    /* Inverts the dark logo image to fully white in footer */
    filter: brightness(0) invert(1);
}

.footer-brand-title {
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.footer-brand-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Partners Area */
.footer-partners {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.partner-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    text-align: center;
}

.partner-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Address details */
.footer-info {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.info-text {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Bottom Strip */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 24px 0;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE ADAPTATION)
   ========================================================================== */
@media (max-width: 1024px) {
    .local-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    /* Base spacing adjustments */
    .green-bar {
        display: none !important;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Schedule - mobile */
    .schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .schedule-row .day,
    .schedule-row .hours {
        width: 100%;
    }

    /* Navbar menu drawer */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 24px;
        z-index: 999;
        transition: var(--transition);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero layout */
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Two column layouts to single column */
    .what-is-content,
    .circuito-grid,
    .combos-grid,
    .food-grid,
    .kits-schedule-grid,
    .yellow-banner-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .local-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .extras-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-info {
        grid-column: span 1;
    }

    .footer-partners {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .partner-group {
        align-items: flex-start;
    }

    .banner-title {
        font-size: 2rem;
    }

    .combo-img {
        height: 280px;
    }

    .food-img {
        height: 280px;
    }
}


@media (max-width: 480px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================================================================
   HOSPEDAGEM LANDING PAGE EXTRA STYLES
   ========================================================================== */
.hero-hospedagem {
    background-image: url('fotos/hospedagem_public1.jpg');
}

.acoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.price-desc-sub {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-top: 4px;
    font-weight: 600;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    color: var(--white);
}

.auratrip-details-box {
    margin: 24px 0;
    background-color: var(--cream);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.auratrip-subtitle {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.auratrip-subtitle:not(:first-child) {
    margin-top: 20px;
}

.auratrip-list {
    list-style: none;
    padding-left: 0;
}

.auratrip-list li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.auratrip-list li span {
    color: var(--orange);
    font-weight: bold;
}

.auratrip-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .acoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .acoms-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   MOBILE - AJUSTES
   ======================================== */

@media screen and (max-width: 768px) {

    /* Esconder a barra verde no mobile */
    div.green-bar {
        display: none !important;
        visibility: hidden !important;
    }

    /* Linha de informações - mobile */
    .schedule-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }

    .schedule-row .day {
        display: block;
        width: 100%;
    }

    .schedule-row .hours {
        display: block;
        width: 100%;
    }
}
