/* style.css */
/* ==========================================================================
   NATIVUS EXPERIENCE ATINS - PREMIUM STYLE
   ========================================================================== */

/* Variables & Theme Setup */
:root {
    --bg-dark: #0A0B0D;
    --bg-card: rgba(22, 25, 31, 0.75);
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-hover: #E5C158;
    --accent-green: #25D366;
    --accent-green-hover: #20bd5a;
    --text-white: #FFFFFF;
    --text-muted: #A0A5B5;
    --text-subtle: #6C7284;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 11, 13, 0.85);
}

/* Reset & Base Settings */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
    background: linear-gradient(180deg, rgba(10, 11, 13, 0.8) 0%, rgba(10, 11, 13, 0) 100%);
}

.navbar.scrolled {
    padding: 0.85rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

.logo-badge i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.logo-subtext {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    padding-left: 0.1rem;
}

.logo-subtext .dot {
    color: var(--gold-primary);
    font-size: 0.5rem;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-cta-btn {
    display: none;
}

/* Actions & Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(37, 211, 102, 0.12);
    color: var(--accent-green);
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-whatsapp-nav i {
    font-size: 1rem;
}

.btn-whatsapp-nav:hover {
    background: var(--accent-green);
    color: #000;
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem 2rem;
    overflow: hidden;
}

/* Background Layers */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: 1;
    transform: scale(1.05);
    animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(10, 11, 13, 0.4) 0%, rgba(10, 11, 13, 0.9) 80%),
        linear-gradient(180deg, rgba(10, 11, 13, 0.7) 0%, rgba(10, 11, 13, 0.4) 50%, #0A0B0D 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 820px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-light);
}

/* Main Heading */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.highlight-gold {
    background: linear-gradient(135deg, #FFF 20%, var(--gold-primary) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #B89228 100%);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #E5C158 0%, var(--gold-primary) 100%);
}

.btn-primary-hero .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-primary-hero:hover .arrow-icon {
    transform: translateX(4px);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Highlights Grid */
.hero-highlights {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 1.25rem 2rem;
    border-radius: 20px;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.highlight-info {
    display: flex;
    flex-direction: column;
}

.highlight-info strong {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 700;
}

.highlight-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.highlight-divider {
    width: 1px;
    height: 35px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-subtle);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-indicator a:hover {
    color: var(--gold-primary);
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    display: block;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.2rem;
        width: 100%;
    }
    
    .highlight-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background: rgba(10, 11, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .btn-whatsapp-nav {
        display: none;
    }

    .mobile-cta-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--accent-green);
        color: #000;
        font-weight: 700;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        margin-top: 1rem;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-hero, .btn-secondary-hero {
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }
}


/* ==========================================
   Seção: Sobre Vila de Atins & Nativus
   ========================================== */

.sobre-section {
  padding: 60px 20px;
  background-color: #fcfaf7;
  color: #2c3e50;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.8;
}

.sobre-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.sobre-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1b4d3e;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.sobre-section .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #d4a373;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.sobre-section .section-title:hover::after {
  width: 100px;
}

.sobre-section .content-block p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #4a5568;
}

.sobre-section .content-block p:last-child {
  margin-bottom: 0;
}

.sobre-section strong {
  color: #1b4d3e;
  font-weight: 600;
}

@media (max-width: 768px) {
  .sobre-section {
    padding: 40px 16px;
  }
  .sobre-section .section-title {
    font-size: 1.6rem;
  }
  .sobre-section .content-block p {
    font-size: 1rem;
  }
}


/* ==========================================
   Seção: Experiências (Cards)
   ========================================== */

.experiencias-section {
  padding: 80px 20px;
  background-color: #f7f5f0;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
}

.experiencias-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.experiencias-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.experiencias-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b4d3e;
  margin-bottom: 12px;
}

.experiencias-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   CATEGORIA HEADER
   ========================================== */

.category-section {
  margin-bottom: 50px;
}

.category-section:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #1b4d3e 0%, #2a6b57 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27, 77, 62, 0.2);
  position: relative;
  overflow: hidden;
}

.category-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(212, 163, 115, 0.1);
  border-radius: 50%;
}

.category-header .category-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #d4a373;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.category-header .category-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.category-header .category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-header .category-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

.category-header .category-badge {
  display: inline-block;
  background: rgba(212, 163, 115, 0.25);
  color: #d4a373;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ==========================================
   CARDS GRID
   ========================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.experience-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.experience-card .card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #e2e8f0;
}

.experience-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .card-image img {
  transform: scale(1.06);
}

.experience-card .card-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #d4a373, #c4955a);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(212, 163, 115, 0.3);
}

.experience-card .card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.experience-card .card-title {
  font-size: 1.2rem;
  color: #1b4d3e;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.experience-card .card-description {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.experience-card .card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 16px;
}

.experience-card .card-price {
  font-size: 0.9rem;
  color: #1b4d3e;
  font-weight: 700;
  background: #e8f3ee;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.experience-card .card-price i {
  color: #d4a373;
  font-size: 0.8rem;
}

.experience-card .card-duration {
  font-size: 0.85rem;
  color: #888888;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.experience-card .card-duration i {
  color: #d4a373;
}

.experience-card .btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1b4d3e, #2a6b57);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.experience-card .btn-card:hover {
  background: linear-gradient(135deg, #2a6b57, #1b4d3e);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.experience-card .btn-card i {
  font-size: 1rem;
}

/* ==========================================
   NO EXPERIENCES MESSAGE
   ========================================== */

.no-experiences {
  text-align: center;
  color: #999;
  padding: 40px;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

/* ==========================================
   RESPONSIVE - EXPERIÊNCIAS
   ========================================== */

@media (max-width: 1024px) {
  .category-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }
  
  .category-header .category-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .experiencias-section {
    padding: 50px 16px;
  }

  .experiencias-section .section-title {
    font-size: 1.75rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-header .category-title {
    font-size: 1.4rem;
  }
  
  .category-header .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .experience-card .card-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .experience-card .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .experience-card .card-price,
  .experience-card .card-duration {
    justify-content: center;
  }
}


/* ==========================================
   Seção: Dicas Importantes
   ========================================== */

.dicas-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
}

.dicas-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.dicas-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.dicas-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b4d3e;
  margin-bottom: 12px;
}

.dicas-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
}

.dicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.dica-card {
  background-color: #fcfaf7;
  padding: 30px 24px;
  border-radius: 12px;
  border: 1px solid #f0eae1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dica-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dica-icon {
  width: 50px;
  height: 50px;
  background-color: #e8f3ee;
  color: #1b4d3e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.dica-card h3 {
  font-size: 1.2rem;
  color: #1b4d3e;
  margin-bottom: 12px;
  font-weight: 600;
}

.dica-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .dicas-section {
    padding: 50px 16px;
  }
  .dicas-section .section-title {
    font-size: 1.75rem;
  }
  .dicas-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   Seção: Políticas de Cancelamento
   ========================================== */

.politicas-section {
  padding: 80px 20px;
  background-color: #f7f5f0;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
}

.politicas-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.politicas-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b4d3e;
  margin-bottom: 40px;
  text-align: center;
}

.politicas-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e0d8;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1b4d3e;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: #faf8f5;
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: #d4a373;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

.accordion-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .politicas-section {
    padding: 50px 16px;
  }
  .politicas-section .section-title {
    font-size: 1.75rem;
  }
  .accordion-header {
    font-size: 1rem;
    padding: 16px 18px;
  }
}


/* ==========================================
   Rodapé (Footer)
   ========================================== */

.site-footer {
  background-color: #112a22;
  color: #d8e2dc;
  padding: 60px 20px 20px;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-brand span {
  color: #d4a373;
}

.brand-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a3b8b0;
}

.footer-heading {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-links a, .footer-contact a {
  color: #a3b8b0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover, .footer-contact a:hover {
  color: #d4a373;
}

.footer-contact span {
  display: block;
  font-size: 0.8rem;
  color: #6c887e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-social-text {
  font-size: 0.9rem;
  color: #a3b8b0;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: #1b4d3e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background-color: #d4a373;
}

.footer-bottom {
  border-top: 1px solid #1f4236;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #6c887e;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer {
    padding: 40px 16px 16px;
  }
}


/* ==========================================
   Ajuste de Centralização: Hero Section
   ========================================== */

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 0 20px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-content,
.hero-section h1, 
.hero-title,
.hero-description,
.hero-subtitle {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section h1,
.hero-title {
  line-height: 1.05 !important;
  margin-bottom: 20px;
}

.hero-title span,
.hero-title p {
  display: block;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  line-height: 1.05 !important;
}

.hero-title-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


/* ==========================================
   LANGUAGE SELECTOR
   ========================================== */

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 0.3rem;
    margin-right: 0.5rem;
}

.language-selector .lang-btn {
    background: none;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
    font-family: var(--font-body);
    text-decoration: none;
}

.language-selector .lang-btn .lang-flag {
    font-size: 0.9rem;
    line-height: 1;
}

.language-selector .lang-btn .lang-code {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.language-selector .lang-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.language-selector .lang-btn.active {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.language-selector .lang-btn.active:hover {
    background: var(--gold-hover);
}

/* Language Selector Mobile */
.language-selector-mobile {
    display: none;
    flex-direction: row;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.language-selector-mobile .lang-btn {
    background: none;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
    font-family: var(--font-body);
    text-decoration: none;
}

.language-selector-mobile .lang-btn .lang-flag {
    font-size: 1rem;
}

.language-selector-mobile .lang-btn:hover {
    color: var(--text-white);
}

.language-selector-mobile .lang-btn.active {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .language-selector {
        display: none;
    }
    .language-selector-mobile {
        display: flex;
    }
}

@media (max-width: 480px) {
    .language-selector-mobile .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    .language-selector-mobile .lang-btn .lang-flag {
        font-size: 0.8rem;
    }
}