/* LEONEL EXCURSÃO - CSS COMPLETO COM DESIGN iOS 26 */

:root {
  --navy: #0f172a;
  --gold: #c9a962;
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #6b7280;
  --border: #e5e3df;
  --light-blue: #e0f2fe;
  --green: #10b981;
  --blue: #3b82f6;
  --purple: #a855f7;
  --ios-blur: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
}

h1 { font-size: 3rem; font-weight: 800; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
h2 { font-size: 2.5rem; font-weight: 800; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
h3 { font-size: 1.5rem; font-weight: 700; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* iOS 26 Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-ios {
  border-radius: 16px;
  backdrop-filter: blur(var(--ios-blur));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-ios:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.btn-ios:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b896 100%);
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4b896 0%, var(--gold) 100%);
  box-shadow: 0 12px 48px rgba(201, 169, 98, 0.4);
}

.btn-outline {
  background-color: rgba(248, 246, 241, 0.15);
  color: var(--cream);
  border: 2px solid rgba(248, 246, 241, 0.3);
  backdrop-filter: blur(var(--ios-blur));
}

.btn-outline:hover {
  background-color: rgba(248, 246, 241, 0.25);
  border-color: rgba(248, 246, 241, 0.5);
}

.btn-outline-dark {
  background-color: rgba(15, 23, 42, 0.1);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background-color: var(--navy);
  color: var(--cream);
}

.btn-secondary {
  background-color: rgba(15, 23, 42, 0.1);
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background-color: var(--navy);
  color: var(--cream);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #20ba5c);
  color: white;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba5c, #25d366);
  color: white;
}

.btn-whatsapp-sm {
  background: linear-gradient(135deg, #25d366, #20ba5c);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-whatsapp-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(var(--ios-blur));
  border-bottom: 1px solid rgba(229, 227, 223, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-text { display: none; }

@media (min-width: 640px) {
  .logo-text { display: block; }
}

.logo-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text);
  letter-spacing: 0.05em;
  font-weight: 500;
}

nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  nav { display: flex; }
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

nav a:hover, nav a.active {
  color: var(--gold);
}

.header-actions {
  display: none;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .header-actions { display: flex; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
  transform: scale(1.05);
  will-change: opacity, transform;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-caption {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
  z-index: 5;
}

.carousel-slide.active .slide-caption {
  opacity: 1;
}

.carousel-indicators {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.4s ease;
}

.carousel-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.carousel-indicators .indicator.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(201, 169, 98, 0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.3) 0%,
    rgba(15, 23, 42, 0.5) 50%,
    rgba(15, 23, 42, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid rgba(201, 169, 98, 0.4);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(248, 246, 241, 0.9);
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(248, 246, 241, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: var(--cream);
}

@media (min-width: 1024px) {
  .about { padding: 6rem 0; }
}

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

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text);
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  background-color: var(--white);
}

@media (min-width: 1024px) {
  .how-it-works { padding: 6rem 0; }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s ease;
}

.step-ios {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), #d4b896);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.step-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text);
  font-size: 1.125rem;
}

/* Why Choose */
.why-choose {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(15, 23, 42, 0.95) 100%);
  color: var(--cream);
}

@media (min-width: 1024px) {
  .why-choose { padding: 6rem 0; }
}

.why-choose .section-header h2 {
  color: var(--cream);
}

.why-choose .section-label {
  color: var(--gold);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(248, 246, 241, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(var(--ios-blur));
}

.feature-ios {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(201, 169, 98, 0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(255, 255, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  color: var(--navy);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
  border-color: transparent;
}

.feature-card h3 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(248, 246, 241, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background-color: var(--white);
}

@media (min-width: 1024px) {
  .testimonials { padding: 6rem 0; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  padding: 2rem;
  border-radius: 16px;
  background-color: var(--white);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-ios {
  background: rgba(248, 246, 241, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.testimonial-stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}

.testimonial-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.85rem;
  color: var(--text);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.3), rgba(240, 253, 250, 0.3));
}

@media (min-width: 1024px) {
  .faq-section { padding: 6rem 0; }
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 1.8rem;
  color: #d4b896;
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  display: none;
  overflow: hidden;
  background: #fafafa;
  padding: 0 2.5rem 2.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
  opacity: 1;
}

.faq-answer p {
  color: #4a4a4a;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}



/* Reservation Section */
.reservation-section {
  padding: 4rem 0;
  background-color: var(--cream);
}

@media (min-width: 1024px) {
  .reservation-section { padding: 6rem 0; }
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .reservation-content { grid-template-columns: 2fr 1fr; }
}

.reservation-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: rgba(248, 246, 241, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background-color: rgba(16, 185, 129, 0.15);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.15);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}

.reservation-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-box p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gold) 0%, #d4b896 100%);
}

@media (min-width: 1024px) {
  .cta-section { padding: 6rem 0; }
}

.cta-box {
  text-align: center;
  padding: 3rem;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(var(--ios-blur));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(15, 23, 42, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25d366, #20ba5c);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 40;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.whatsapp-ios {
  backdrop-filter: blur(var(--ios-blur));
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
  transform: scale(0.98);
}

.whatsapp-label {
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}

@media (min-width: 768px) {
  .whatsapp-label { display: block; }
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
  }
  
  .whatsapp-pulse {
    border-radius: 50%;
  }
}

/* Footer */
footer {
  background-color: var(--navy);
  color: var(--cream);
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-content { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.footer-logo h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0;
}

.footer-logo span {
  font-size: 0.8rem;
  color: rgba(248, 246, 241, 0.6);
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: rgba(248, 246, 241, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(248, 246, 241, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-section span {
  color: rgba(248, 246, 241, 0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links svg {
  transition: all 0.3s ease;
}

.social-links li a:hover svg {
  transform: scale(1.1);
  color: var(--gold);
}

.footer-cta {
  margin-top: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 246, 241, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(248, 246, 241, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
  }
  
  #main-nav.active {
    right: 0;
  }
  
  #main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
  }
  
  .header-actions {
    display: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-trust {
    flex-direction: column;
    align-items: center;
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}

/* Calendar Section Styles */
.calendar-section {
  padding: 4rem 0;
  background-color: var(--cream);
}

.page-excursoes .calendar-section {
  padding-top: 6rem;
}

.calendar-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.month-block {
  animation: fadeIn 0.8s ease-out;
}

.month-title {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

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

@media (min-width: 768px) {
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .calendar-grid { grid-template-columns: repeat(3, 1fr); }
}

.calendar-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.calendar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-gallery {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.gallery-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.card-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.card-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.card-info p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card-obs {
  font-style: italic;
  color: var(--gold) !important;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.btn-sm {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-top: auto;
  width: 100%;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Print Styles */
@media print {
  header, .whatsapp-float {
    display: none;
  }
}

/* Optimizations */
img {
  max-width: 100%;
  height: auto;
}


/* ===== PÁGINAS DE DESTINOS ===== */
.page-destino .destino-banner {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.destino-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
}

.destino-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.destino-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.destino-banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.destino-banner-content p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.destino-info {
  padding: 4rem 0;
}

.destino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .destino-grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.destino-main h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.destino-descricao p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.destino-galeria {
  margin-top: 3rem;
}

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

.galeria-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.galeria-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }
  
  .galeria-grid img {
    height: 250px;
  }
}

.destino-faq {
  margin-top: 3rem;
}

.destino-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.destino-card-info {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.destino-card-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
  text-align: center;
}

.destino-card-info h4 {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.destino-card-info h4:first-of-type {
  border-top: none;
  padding-top: 0;
}

.info-lista {
  list-style: none;
}

.info-lista li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.info-lista li:last-child {
  border-bottom: none;
}

.info-lista li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.info-lista li div {
  display: flex;
  flex-direction: column;
}

.info-lista li strong {
  font-size: 0.875rem;
  color: var(--text);
}

.info-lista li span {
  font-weight: 600;
  color: var(--navy);
}

.incluso-lista,
.nao-incluso-lista,
.pagamento-lista {
  list-style: none;
}

.incluso-lista li,
.nao-incluso-lista li,
.pagamento-lista li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
}

.btn-block {
  display: flex;
  width: 100%;
  margin-top: 1rem;
}

.destino-cta {
  padding: 4rem 0;
  background: var(--navy);
}

.cta-box {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

/* ===== PÁGINA PRÓXIMAS EXCURSÕES ===== */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

.page-hero p strong {
  color: var(--gold);
}

.excursoes-lista {
  padding: 4rem 0;
}

.lista-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lista-header h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.lista-header p {
  color: var(--text);
}

.excursoes-grid-lista {
  display: grid;
  gap: 1.5rem;
}

.excursao-card-lista {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 1.5rem;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  align-items: center;
  padding-right: 1.5rem;
}

.excursao-card-lista:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.excursao-imagem {
  position: relative;
  height: 150px;
}

.excursao-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.excursao-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-especial {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.badge-premium {
  background: linear-gradient(135deg, var(--gold), #b8942f);
  color: var(--navy);
}

.badge-feriado {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.badge-ferias {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.excursao-info {
  padding: 1rem 0;
}

.excursao-data {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.excursao-info h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.excursao-detalhes {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.excursao-detalhes span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--text);
}

.excursao-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-vagas {
  background: #dcfce7;
  color: #166534;
}

.status-ultimas {
  background: #fef3c7;
  color: #92400e;
}

.status-esgotado {
  background: #fee2e2;
  color: #991b1b;
}

.excursao-acoes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

@media (max-width: 900px) {
  .excursao-card-lista {
    grid-template-columns: 1fr;
    padding: 0;
  }
  
  .excursao-imagem {
    height: 200px;
  }
  
  .excursao-info {
    padding: 1rem 1.5rem;
  }
  
  .excursao-acoes {
    flex-direction: row;
    padding: 0 1.5rem 1.5rem;
  }
}

.lista-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.lista-cta p {
  color: var(--text);
  margin-bottom: 1rem;
}

/* ===== PÁGINAS DE POLÍTICAS ===== */
.page-hero-sm {
  padding: 6rem 0 3rem;
}

.politica-content {
  padding: 4rem 0;
}

.politica-box {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.politica-intro {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.politica-box h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.politica-box h2:first-of-type {
  margin-top: 0;
}

.politica-box p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.politica-box ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.politica-box ul li {
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.politica-tabela {
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.tabela-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tabela-header {
  background: var(--navy);
}

.tabela-header .tabela-col {
  color: var(--white);
  font-weight: 600;
}

.tabela-col {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

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

.tabela-row:nth-child(even):not(.tabela-header) {
  background: var(--cream);
}

.politica-nota {
  background: #fef3c7;
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
}

.politica-nota p {
  margin-bottom: 0;
  color: #92400e;
}

.politica-data {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .politica-box {
    padding: 1.5rem;
  }
  
  .tabela-row {
    grid-template-columns: 1fr;
  }
  
  .destino-banner-content h1 {
    font-size: 2.5rem;
  }
}

/* ===== TESTIMONIALS AVATAR ===== */
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
