/* ========================================
   CSS Reset & Base Styles
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Nature-inspired palette */
  --background: hsl(45, 30%, 97%);
  --foreground: hsl(150, 30%, 15%);
  --card: hsl(45, 25%, 95%);
  --card-foreground: hsl(150, 30%, 15%);
  
  /* blue primary */
  --primary: #014E8E;
  --primary-foreground: #FBFBFF;
  --primary-light: #01BAEF;
  --primary-dark: #013A6F;
  
  /* Earth brown secondary */
  --secondary: #20BF55;
  --secondary-foreground: #134611;
  
  /* Muted sage */
  --muted: rgba(1, 186, 239, 0.25);
  --muted-foreground: rgba(19, 70, 17, 0.65);
  
  /* accent */
  --accent: #02a7d4;
  --accent-foreground: #dddddd;
  --accent-dark: #014E8E;
  
  /* Nature colors */
  --sand: hsl(45, 40%, 92%);
  --leaf: hsl(203, 100%, 51%);
  --water: hsl(200, 60%, 50%);
  --earth: hsl(30, 35%, 40%);
  
  /* Border & Input */
  --border: rgba(19, 70, 17, 0.15);
  --input: rgba(19, 70, 17, 0.15);
  --ring: #01BAEF;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(19, 70, 17, 0.08);
  --shadow-medium: 0 8px 30px rgba(19, 70, 17, 0.12);
  --shadow-glow: 0 0 40px rgba(1, 186, 239, 0.35);
  
  /* Transitions */
  --shadow-soft: 0 4px 20px rgba(19, 70, 17, 0.08);
  --shadow-medium: 0 8px 30px rgba(19, 70, 17, 0.12);
  --shadow-glow: 0 0 40px rgba(1, 186, 239, 0.35);
  
  /* Border Radius */
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icones_grupo {
  position: fixed;     
  right: 50px;
  bottom: 70px;

  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.btn_insta,
.btn_facebook,
.btn_tabua_mare {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
  background-color:rgba(163, 163, 163, 0.57);
  border-radius: 10px;
}

.btn_insta:hover,
.btn_facebook:hover,
.btn_tabua_mare:hover {
  transform: scale(1.1);
}


/* ========================================
   Numeric System — Confiança & Precisão
======================================== */
.numeric {
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: 0.02em;
}

/* ========================================
   imports
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* ========================================
   Utility Classes
======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 2rem;
  }
}

.section-sand {
  background-color: var(--sand);
}

.section-primary {
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.text-left {
  text-align: left;
}

.text-light {
  color: var(--primary-foreground);
}

.text-light-muted {
  color: hsla(45, 30%, 97%, 0.8);
}

.text-accent {
  color: var(--accent);
}

/* ========================================
   Animations
======================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-10px) translateX(-50%); }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: hsl(195, 99%, 31%);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(195, 100%, 17%);
  box-shadow: var(--shadow-medium);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-weight: 600;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid hsla(45, 30%, 97%, 0.3);
  color: var(--primary-foreground);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background-color: hsla(45, 30%, 97%, 0.1);
  border-color: hsla(45, 30%, 97%, 0.5);
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-slow);
}

.header.scrolled {
  background-color: hsla(45, 30%, 97%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 3.5rem;
  height: 3rem;
  border-radius: 50%;
  background-color: hsla(195, 55%, 80%, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}

.logo-icon-accent {
  background-color:hsl(195, 55%, 80%);
}

.logo-icon-accent svg {
  color: hsl(195, 55%, 80%);
}

.logo:hover .logo-icon {
  transform: scale(1.2);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-foreground);
  transition: var(--transition);
}

.header.scrolled .logo-text {
  color: var(--foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--primary-foreground);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

.header.scrolled .nav-link {
  color: var(--foreground);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  color: var(--primary-foreground);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background-color: hsla(45, 30%, 97%, 0.1);
}

.header.scrolled .mobile-menu-btn {
  color: var(--foreground);
}

.header.scrolled .mobile-menu-btn:hover {
  background-color: var(--muted);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  padding: 1rem;
  box-shadow: var(--shadow-medium);
  gap: 0;
}

.nav-links.mobile-open .nav-link {
  color: var(--foreground);
  padding: 0.75rem 0;
  width: 100%;
}

.nav-links.mobile-open .btn {
  margin-top: 0.5rem;
  width: 100%;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsla(150, 50%, 15%, 0.6),
    hsla(150, 50%, 15%, 0.4),
    hsla(150, 50%, 15%, 0.8)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsla(42, 85%, 55%, 0.2);
  color: var(--accent);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsla(45, 30%, 97%, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: hsla(45, 30%, 97%, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: hsla(45, 30%, 97%, 0.7);
  animation: bounce 2s infinite;
  transition: var(--transition);
}

.scroll-indicator:hover {
  color: var(--accent);
}

.scroll-indicator svg {
  width: 2rem;
  height: 2rem;
}

/* ========================================
   Section Headers
======================================== */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsla(150, 45%, 25%, 0.1);
  color: hsl(195, 99%, 31%);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-badge-leaf {
  background-color: hsla(120, 40%, 45%, 0.1);
  color: var(--leaf);
}

.section-badge-accent {
  background-color: hsla(45, 30%, 97%, 0.1);
  color: var(--accent);
}

.section-badge-gold {
  background-color: hsla(42, 85%, 55%, 0.1);
  color: var(--accent-dark);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ========================================
   Tours Section
======================================== */
.tours-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tour-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-slow);
  will-change: transform;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.tour-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-rating,
.testimonial-counter {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.star-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  fill: var(--accent);
}

.tour-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}


.tour-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.tour-card:hover .tour-title {
  color: hsl(195, 99%, 31%);
}

.tour-description {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted-foreground, #6b7280);
  margin-bottom: 1rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;

  overflow: hidden;
  max-width: 100%;
  min-height: calc(1.4em * 2);
}

#cta_saiba {
  z-index: 10;
  position: relative;
  font-family: 'Playfair Display', serif;
  margin-top: 1rem;
  font-size: 19px;              
  padding: 8px 1px 10px;            
  background: #046bd3;
  border: 3px solid #a2d7fb7c;
  color: white;
  border-radius: 10px;
  cursor: pointer;

  display: inline-flex;         
  align-items: center;
  justify-content: center;

  text-align: center;
  line-height: 1;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#cta_saiba:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #3498db;
}

.tour-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.tour-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.tour-detail:last-child {
  grid-column: span 2;
}

.tour-detail svg {
  width: 1rem;
  height: 1rem;
  color: hsl(195, 99%, 31%);
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.price-value {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: 0.025em;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ========================================
   Fauna Section
======================================== */
.fauna-gallery {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .fauna-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.fauna-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4/3;
}

.fauna-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.fauna-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsla(150, 50%, 15%, 0.8),
    transparent
  );
}

.fauna-main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .fauna-main-content {
    padding: 2rem;
  }
}

.fauna-habitat {
  color: var(--leaf);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.fauna-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .fauna-name {
    font-size: 1.875rem;
  }
}

.fauna-scientific {
  font-style: italic;
  font-size: 0.875rem;
  color: hsla(45, 30%, 97%, 0.7);
  margin-bottom: 0.75rem;
}

.fauna-description {
  color: hsla(45, 30%, 97%, 0.9);
  font-size: 0.9375rem;
}

.fauna-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fauna-thumb {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background-color: var(--card);
  text-align: left;
  width: 100%;
  transition: var(--transition);

}

.fauna-thumb:hover {
  background-color: var(--muted);
}

.fauna-thumb.active {
  background-color: hsl(195, 99%, 31%);
  box-shadow: var(--shadow-medium);
}

.fauna-thumb img {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.fauna-thumb-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.fauna-thumb.active .fauna-thumb-content h4 {
  color: var(--primary-foreground);
}

.fauna-thumb-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.fauna-thumb.active .fauna-thumb-content p {
  color: hsla(45, 30%, 97%, 0.8);
}

/* ========================================
   About Section
======================================== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-float-card {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  padding: 1.5rem;
  max-width: 18rem;
}

@media (min-width: 640px) {
  .about-float-card {
    display: block;
  }
}

.float-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.float-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: hsla(42, 85%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.float-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--foreground);
}

.float-card-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.float-card-quote {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.about-text-secondary {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: hsla(150, 45%, 25%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(195, 99%, 31%);
}

.feature-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-decorations {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.decoration-1 {
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: var(--accent);
}

.decoration-2 {
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: var(--leaf);
}

.testimonials-wrapper {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: var(--background);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  position: relative;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.quote-icon {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.quote-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-foreground);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .testimonial-text {
    font-size: 1.25rem;
  }
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .testimonial-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: hsl(195, 99%, 31%);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.author-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.author-tour {
  font-size: 0.875rem;
  color: hsl(195, 99%, 31%);
  font-weight: 500;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-counter {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.nav-buttons {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-btn:hover {
  background-color: var(--muted);
}

.nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-btn-primary {
  background-color: hsl(195, 99%, 31%);
  color: var(--primary-foreground);
  border: none;
}

.nav-btn-primary:hover {
  background-color: var(--primary-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: hsla(45, 30%, 97%, 0.3);
  transition: var(--transition);
}

.dot:hover {
  background-color: hsla(45, 30%, 97%, 0.5);
}

.dot.active {
  width: 2rem;
  background-color: var(--accent);
}

/* ========================================
   Contact Section
======================================== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: hsla(150, 45%, 25%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(195, 99%, 31%);
  transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
  background-color: hsl(195, 99%, 31%);
}

.contact-item:hover .contact-item-icon svg {
  color: var(--primary-foreground);
}

.contact-item-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-item-value {
  font-weight: 500;
  color: var(--foreground);
  transition: var(--transition);
}

.contact-item:hover .contact-item-value {
  color: hsl(195, 99%, 31%);
}

.why-choose-card {
  background-color: hsl(195, 99%, 31%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--primary-foreground);
}

.why-choose-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-choose-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsla(45, 30%, 97%, 0.9);
}
.price-value
.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--accent-foreground);
}

.contact-form-wrapper {
  background-color: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--background);
  color: var(--foreground);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(195, 99%, 31%);
  box-shadow: 0 0 0 3px hsla(150, 45%, 25%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group textarea {
  resize: none;
}

.contact-form .btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
/* ================= CARDS ================= */

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}


/* ================= SECTION ================= */

.partners {
  background: linear-gradient(
    180deg,
    hsl(195, 55%, 96%) 0%,
    #ffffff 100%
  );
  padding: 100px 20px;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.partners-tag {
  display: inline-block;
  background: hsl(195, 55%, 85%);
  color: hsl(195, 60%, 25%);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.partners-header h2 {
  font-size: 2.4rem;
  color: hsl(195, 60%, 20%);
  margin-bottom: 16px;
}

.partners-header p {
  color: #555;
  line-height: 1.6;
}

/* ================= GRID ================= */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* ================= CARD ================= */
.partner-card {
  position: relative;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.14);
}


/* ================= BANNER ================= */

.partner-banner {
  height: 180px;
  width: 100%;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

.partner-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= LOGO ================= */

.partner-logo {
  position: absolute;
  right: 20px;
  top: calc(180px - 55px);

  width: 130px;
  height: 110px;

  background: #ffffffcc;
  padding: 12px;
  border-radius: 16px;

  object-fit: contain;
  box-shadow: 0 7px 17px rgba(0, 0, 0, 0.18);
}

/* ================= CONTEÚDO ================= */

.partner-content {
  padding: 0 26px 28px;
  text-align: center;
}

.partner-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2d2a;
  margin-bottom: 10px;
}

.partner-content p {
  font-size: 0.95rem;
  color: #5f6f6c;
  line-height: 1.6;
  margin-bottom: 18px;
}
/* ================= CTA ================= */

.partner-card {
  backface-visibility: hidden;
  transform: translateZ(0);
}



.partner-card a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: hsl(195, 60%, 30%);
  margin-top: 6px;
  transform: translateY(-10px);
}

.partner-card a:hover::after {
  width: 100%;
}

/* ================= CARD EM BREVE ================= */

.partner-soon {
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 480px) {
  .partner-card {
    max-width: 100%;
  }

  .partner-banner {
    height: 140px;
  }

  .partner-logo {
    width: 76px;
    height: 76px;
    margin-top: -38px;
  }
}

/* ========================================
   Footer
======================================== */
.footer {
  background-color: var(--primary-dark);
  color: var(--primary-foreground);
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .footer {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 6rem 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  color: var(--primary-foreground);
}

.footer-description {
  font-size: 0.875rem;
  color: hsla(45, 30%, 97%, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(45, 30%, 97%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links-column h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-column a {
  font-size: 0.875rem;
  color: hsla(45, 30%, 97%, 0.7);
  transition: var(--transition);
}

.footer-links-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(45, 30%, 97%, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsla(45, 30%, 97%, 0.6);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.heart {
  color: var(--accent);
}

/* ========================================
   Toast
======================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  padding: 1rem 1.5rem;
  z-index: 1100;
  transform: translateX(calc(100% + 2rem));
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.toast-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--leaf);
  flex-shrink: 0;
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   Responsive Adjustments
======================================== */
@media (max-width: 639px) {
  .hero-content {
    padding-top: 5rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}
.stat-number {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: 0.03em;
}
