/* ================================================
   VISIT PORTO SEGURO — Stylesheet
   Aesthetic: Tropical Editorial — warm, rich, refined
   ================================================ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean:    #006D8F;
  --ocean-lt: #00A3CC;
  --sand:     #E8F6FA;
  --sand-dk:  #C8E8F2;
  --terra:    #00869A;
  --terra-lt: #00AABF;
  --gold:     #F4B942;
  --green:    #00826A;
  --cream:    #F0FBFD;
  --dark:     #052530;
  --mid:      #1A4A58;
  --muted:    #5A8A98;
  --white:    #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-title:   'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(26,18,8,.08);
  --shadow-md: 0 8px 32px rgba(26,18,8,.12);
  --shadow-lg: 0 20px 60px rgba(26,18,8,.18);

  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

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

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
details { cursor: pointer; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { line-height: 1.15; }
h1 { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 300; }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; }
h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 500; }
em { font-style: italic; color: var(--terra); }
p { color: var(--mid); }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 12px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,97,42,.35);
}
.btn-primary:hover {
  background: var(--terra-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,97,42,.4);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}
.btn-outline:hover {
  background: var(--terra);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--terra);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.btn-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ocean);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.btn-link:hover { color: var(--terra); gap: 8px; }
.full-width { width: 100%; justify-content: center; }

/* ===== LINK BUTTON ===== */
.btn-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--terra);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(196,97,42,.35);
}

.btn-anchor:hover {
  background: var(--terra-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,97,42,.4);
}

.btn-anchor:active {
  transform: translateY(0);
}

.btn-anchor:focus {
  outline: 2px solid rgba(196,97,42,.4);
  outline-offset: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(253,250,244,.95);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-visit {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}

.logo-ps {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  letter-spacing: .02em;
}

.navbar.scrolled .logo-visit { color: var(--muted); }
.navbar.scrolled .logo-ps { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-links a { color: var(--mid); }
.navbar.scrolled .nav-links a:hover { color: var(--dark); background: var(--sand); }

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
  padding: 9px 20px !important;
  box-shadow: 0 4px 16px rgba(196,97,42,.3);
}
.nav-cta:hover { background: var(--terra-lt) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/porto-seguro/porto-seguro-turismo.jpg');
  background-size: cover;
  background-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(21, 60, 100, 0.75) 0%, rgba(7, 56, 78, 0.6) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  max-width: 800px;
}

.hero-pretitle {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-title em {
  color: rgba(255,220,160,.85);
  display: block;
  font-size: .65em;
  font-weight: 300;
  margin-bottom: 4px;
}

.hero-subtitle {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: left; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 0.65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50% { transform: scaleY(.7); opacity: .8; }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--ocean);
  padding: 14px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.strip-inner span {
  color: rgba(255,255,255,.7);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; line-height: 1.75; }
.about-text .btn { margin-top: 16px; }

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--sand-dk);
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--terra);
}

.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.about-card h3 { font-size: 0.9rem; margin-bottom: 8px; color: var(--dark); }
.about-card p { font-size: 0.8rem; line-height: 1.55; color: var(--muted); }

.card-2 { background: var(--ocean); border-color: var(--ocean); }
.card-2 h3, .card-2 p { color: rgba(255,255,255,.85); }


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

.about-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.card-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/porto-seguro/rio-buranhem.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-visual {
    min-height: 350px;
    order: -1;
  }
}

/* ===== BEACHES ===== */
.beaches { background: var(--cream); }

.beaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.beach-card.featured {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.beach-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--sand-dk);
  transition: var(--transition);
}

.beach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.beach-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.beach-card.featured .beach-img { height: 100%; min-height: 300px; }

/* Beach image placeholders with tropical colors */
.beach-espelho  {
  background-image: url('../images/praia-espelho.jpg');
}

.beach-arraial  { background-image: url('../images/arraial-dajuda.jpeg'); }
.beach-trancoso { background-image: url('../images/trancoso.jpg'); }
.beach-taperapua{ background-image: url('../images/taperapua.jpg'); }
.beach-coroa    { background-image: url('../images/praia-coroa-vermelha-bahia.webp'); }
.beach-caraiva  { background-image: url('../images/caraiva.jpg'); }

.beach-info { padding: 24px; }
.beach-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(196,97,42,.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.beach-info h3 { margin-bottom: 8px; font-size: 1.15rem; }
.beach-info p  { font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.beach-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.beach-meta span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===== LIGHTWEIGHT CAROUSEL ===== */
.beach-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.beach-carousel .carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.beach-carousel .carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Navigation arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  color: var(--terra);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.beach-carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

/* ===== TOURS ===== */
.tours {
  background: var(--white);
}

.tours .section-header h2 { color: var(--dark); }
.tours .section-header h2 em { color: var(--terra); }
.tours .section-header p { color: var(--text-muted); }
.tours .label { color: var(--terra); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tour-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.tour-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 100px;
  line-height: 1;
}

.tour-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-content h3 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.tour-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.tour-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-tags span {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Responsivo */
@media (max-width: 992px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--terra) 0%, #A03A15 100%);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner h2 em { color: rgba(255,220,160,.9); }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.05rem; }

/* ===== HOTELS ===== */
.hotels { background: var(--cream); }

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

.hotel-card {
  background: var(--cream);
  border: 1px solid var(--sand-dk);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.hotel-card.featured-hotel {
  background: var(--ocean);
  border-color: var(--ocean);
}

.hotel-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

/* Conteúdo do card */
.hotel-card h3,
.hotel-card p,
.hotel-card .btn-link {
  padding: 0 28px;
}

.hotel-card h3 {
  padding-top: 24px;
  font-size: 1.15rem;
  color: var(--dark);
}

.hotel-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  flex: 1;
}

.hotel-card .price-range {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--terra);
  padding-bottom: 4px;
}

.hotel-card .btn-link {
  padding-bottom: 28px;
  margin-top: auto;
}

/* Estilo do card destacado */
.hotel-card.featured-hotel h3,
.hotel-card.featured-hotel p { color: rgba(255,255,255,.9); }
.hotel-card.featured-hotel .price-range { color: var(--sand); }
.hotel-card.featured-hotel .btn-link { color: var(--sand-dk); }

/* ===== FOOD ===== */
/* ===== GASTRONOMIA ===== */
.food {
  background: var(--cream);
}

.food .container {
  max-width: 900px;
}

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

.food-text .label {
  display: inline-block;
  margin-bottom: 12px;
}

.food-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.food-text > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

.food-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.food-list li {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--sand-dk);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.food-list li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.food-card-img {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.food-list li:hover .food-card-img {
  transform: scale(1.05);
}

.food-card-content {
  padding: 24px;
}

.food-card-content strong {
  display: block;
  font-size: 1.15rem;
  color: var(--terra);
  margin-bottom: 8px;
}

.food-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Imagens dos pratos */
.food-card-img.moqueca {
  background-image: url('../images/caraiva.jpg');
}

.food-card-img.caldeirada {
  background-image: url('../images/caraiva.jpg');
}

.food-card-img.peixe-frito {
  background-image: url('../images/caraiva.jpg');
}

.food-card-img.acaraje {
  background-image: url('../images/caraiva.jpg');
}

.food-card-img.batida-caju {
  background-image: url('../images/caraiva.jpg');
}

/* Responsivo */
@media (max-width: 768px) {
  .food-text h2 {
    font-size: 2rem;
  }
  
  .food-text > p {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  
  .food-list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .food-card-img {
    height: 220px;
  }
  
  .food-card-content {
    padding: 20px;
  }
  
  .food-card-content strong {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .food-text h2 {
    font-size: 1.75rem;
  }
  
  .food-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .food-card-img {
    height: 200px;
  }
  
  .food-card-content {
    padding: 16px;
  }
}

/* ===== CLIMATE ===== */
.climate { background: var(--cream); }

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

.season-card {
  border-radius: var(--r-xl);
  padding: 36px 28px;
  border: 1px solid var(--sand-dk);
  background: var(--cream);
}

.season-card.best { border-color: var(--terra); background: rgba(196,97,42,.04); }

.season-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.season-emoji { font-size: 1.5rem; }
.season-header h3 { font-size: 1rem; color: var(--dark); }
.season-months {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--terra);
  background: rgba(196,97,42,.1);
  padding: 3px 10px;
  border-radius: 100px;
}

.season-card p { font-size: 0.85rem; line-height: 1.65; margin-bottom: 20px; }

.season-bar {
  height: 4px;
  background: var(--sand-dk);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.bar-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }
.bar-high { width: 90%; background: var(--terra); }
.bar-med  { width: 55%; background: var(--gold); }
.bar-low  { width: 25%; background: var(--ocean-lt); }

.season-label { font-size: 0.72rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--sand-dk);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--terra); }

.faq-item summary {
  padding: 24px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--terra);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-answer p { font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 { margin-bottom: 20px; }
.contact-text > p { margin-bottom: 36px; line-height: 1.75; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.ci-item strong { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.ci-item a { font-size: 0.9rem; color: var(--ocean); font-weight: 500; transition: var(--transition); }
.ci-item a:hover { color: var(--terra); }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--sand-dk);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

input, select, textarea {
  padding: 12px 16px;
  border: 1px solid var(--sand-dk);
  border-radius: var(--r-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196,97,42,.1);
}

textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding-top: 80px; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}

.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand .logo-visit { color: rgba(255,255,255,.35); }
.footer-brand .logo-ps   { color: rgba(255,255,255,.9); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.4); max-width: 280px; line-height: 1.65; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.fl-col { display: flex; flex-direction: column; gap: 12px; }
.fl-col strong { font-size: 0.7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.fl-col a { font-size: 0.85rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.fl-col a:hover { color: var(--sand); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,.25); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,.3); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .food-grid  { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .beaches-grid { grid-template-columns: repeat(2, 1fr); }
  .beach-card.featured { grid-column: 1 / 3; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(26,18,8,.97);
    padding: 80px 32px 32px;
    align-items: flex-start;
    gap: 8px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.4rem;
    color: rgba(255,255,255,.8);
    padding: 12px 16px;
    width: 100%;
  }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }

  .hero-content { padding: 120px 24px 80px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .beaches-grid { grid-template-columns: 1fr; }
  .beach-card.featured { grid-column: 1; display: block; }
  .beach-card.featured .beach-img { height: 220px; }

  .tours-grid { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .climate-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .about-visual { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ===== CAROUSEL LIGHTBOX ===== */
.carousel-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  height: 80vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
}

.lightbox-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
}

.lightbox-carousel .carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-carousel .carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Botão fechar */
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* Setas de navegação do lightbox */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

/* Contador de slides */
.lightbox-counter {
  position: absolute;
  top: -50px;
  left: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Dots do lightbox */
.lightbox-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 20px 0;
}

.lightbox-dots .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.lightbox-dots .carousel-dot.active {
  background: white;
  transform: scale(1.5);
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
}

/* Indicador de clique nos mini carrosséis */
.food-mini-carousel,
.beach-carousel {
  cursor: pointer;
  position: relative;
}

.food-mini-carousel::after,
.beach-carousel::after {
  content: '🔍';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 5;
  pointer-events: none;
}

.food-mini-carousel:hover::after,
.beach-carousel:hover::after {
  opacity: 1;
}

/* Prevenir scroll quando lightbox aberto */
body.lightbox-open {
  overflow: hidden;
}

/* Animações */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carousel-lightbox.active .lightbox-content {
  animation: fadeInScale 0.3s ease forwards;
}

/* Responsivo */
@media (max-width: 768px) {
  .lightbox-content {
    width: 95vw;
    height: 60vh;
    max-height: 500px;
  }
  
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  
  .lightbox-arrow.prev { left: 10px; }
  .lightbox-arrow.next { right: 10px; }
  
  .lightbox-close {
    top: -45px;
    right: 0;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  
  .lightbox-counter {
    top: -42px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .lightbox-content {
    width: 100vw;
    height: 50vh;
    max-height: 400px;
    border-radius: 0;
  }
  
  .lightbox-carousel {
    border-radius: 0;
  }
  
  .lightbox-arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}