/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-small {
  height: 100px;
  width: auto;
}

.logo-large {
  height: 6rem;
  width: auto;
  margin-bottom: 1rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  background: none;
  border: none;
  color: #374151;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link:hover {
  color: #0284c7;
}

.nav-cta {
  background: #0284c7;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background: #0369a1;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.25rem;
}

.mobile-menu-btn span {
  width: 1.5rem;
  height: 0.125rem;
  background: #374151;
  transition: all 0.3s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/1287145/pexels-photo-1287145.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 74, 110, 0.8),
    rgba(13, 148, 136, 0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.text-accent {
  color: #fbbf24;
}

.text-primary {
  color: #0284c7;
}

.text-white {
  color: white;
}

.text-light {
  color: #e5e7eb;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn-primary:hover {
  background: #d97706;
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #374151;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.chevron-down {
  width: 2rem;
  height: 2rem;
  color: white;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40%,
  43% {
    transform: translateX(-50%) translateY(-10px);
  }
  70% {
    transform: translateX(-50%) translateY(-5px);
  }
  90% {
    transform: translateX(-50%) translateY(-2px);
  }
}

/* About Section */
.about {
  padding: 5rem 0;
  background: #f9fafb;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-text {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  background: #dbeafe;
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #0284c7;
}

.stat-number {
  font-weight: 600;
  color: #111827;
  font-size: 1.125rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-badge svg {
  width: 2rem;
  height: 2rem;
  color: #f59e0b;
}

.badge-title {
  font-weight: 600;
  color: #111827;
}

.badge-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Destinations Section */
.destinations {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.destination-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.destination-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.card-image {
  position: relative;
  overflow: hidden;
}

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

.destination-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.badge-bestseller {
  background: #f59e0b;
}

.badge-offer {
  background: #10b981;
}

.badge-new {
  background: #8b5cf6;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #6b7280;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-current {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0284c7;
}

.price-old {
  color: #6b7280;
  text-decoration: line-through;
}

.btn-card {
  background: #0284c7;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-card:hover {
  background: #0369a1;
}

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

/* Services Section */
.services {
  padding: 5rem 0;
  background: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-icon {
  background: #dbeafe;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: #0284c7;
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.service-description {
  color: #6b7280;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1rem;
}

.stars {
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #111827;
}

.author-location {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: #0284c7;
}

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

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

.contact-form input,
.contact-form select {
  margin-bottom: 1.5rem;
}

.contact-form textarea {
  margin-bottom: 1.5rem;
  resize: vertical;
}

.btn-form {
  width: 100%;
  background: #f59e0b;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-form:hover {
  background: #d97706;
}

/* Form Messages */
.form-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.contact-info {
  color: white;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.contact-value {
  font-weight: 600;
  color: white;
}

.contact-label {
  color: #bfdbfe;
  font-size: 0.875rem;
}

.special-offer {
  background: #f59e0b;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.offer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.offer-text {
  color: white;
  margin-bottom: 1rem;
}

.offer-disclaimer {
  color: #fef3c7;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.brand-name {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-description {
  color: #9ca3af;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-title {
    font-size: 4rem;
  }

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

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

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

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

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

  .about-badge {
    position: static;
    margin-top: 1rem;
    align-self: flex-start;
  }
}

/* ===== PARTNERS SECTION STYLES ===== */
/* Adicionar este CSS ao final do arquivo styles.css */

.partners {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,30 50,50 T100,50 V100 H0 Z" fill="rgba(59,130,246,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave)"/></svg>')
    repeat;
  opacity: 0.5;
}

.partners .container {
  position: relative;
  z-index: 1;
}

.partners-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

.partner-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 15px;
  padding: 20px;
  min-height: 120px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  background-color: black;
}

.partner-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.partner-name {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.partner-description {
  font-size: 16px;
  font-weight: 600;
  color: #3b82f6;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-details {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.btn-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.external-link-icon {
  width: 16px;
  height: 16px;
}

.partners-cta {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.partners-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.cta-text {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .partners {
    padding: 60px 0;
  }

  .partner-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
    text-align: center;
  }

  .partner-logo {
    max-width: 200px;
    margin: 0 auto;
  }

  .partner-name {
    font-size: 24px;
  }

  .partners-cta {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .partner-card {
    padding: 20px;
  }

  .partner-logo {
    padding: 15px;
    min-height: 100px;
  }

  .partner-logo img {
    max-height: 60px;
  }
}

/* ===== NAVIGATION AND SCROLL STYLES ===== */
/* Adicionar ao arquivo styles.css */

/* ===== NAVBAR SCROLL EFFECT ===== */
.navbar {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .nav-cta {
  color: #1e293b;
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

/* ===== ACTIVE NAVIGATION STATES ===== */
.nav-link.active,
.nav-cta.active {
  color: #3b82f6;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 1px;
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.1);
}

.chevron-down {
  width: 24px;
  height: 24px;
  color: white;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.section-title,
.section-subtitle,
.service-card,
.destination-card,
.testimonial-card,
.partner-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card:nth-child(2) {
  transition-delay: 0.1s;
}
.service-card:nth-child(3) {
  transition-delay: 0.2s;
}
.service-card:nth-child(4) {
  transition-delay: 0.3s;
}
.service-card:nth-child(5) {
  transition-delay: 0.4s;
}
.service-card:nth-child(6) {
  transition-delay: 0.5s;
}

.destination-card:nth-child(2) {
  transition-delay: 0.2s;
}
.destination-card:nth-child(3) {
  transition-delay: 0.4s;
}

.testimonial-card:nth-child(2) {
  transition-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  transition-delay: 0.4s;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 50px 20px;
    gap: 30px;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu .nav-link,
  .nav-menu .nav-cta {
    font-size: 20px;
    padding: 15px 30px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .nav-menu .nav-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
  }

  .nav-menu .nav-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    margin-top: 20px;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background: rgba(59, 130, 246, 0.1);
  }
}

@media (max-width: 480px) {
  .nav-menu {
    top: 80px;
    height: calc(100vh - 80px);
    padding: 30px 15px;
    gap: 20px;
  }

  .nav-menu .nav-link,
  .nav-menu .nav-cta {
    font-size: 18px;
    padding: 12px 20px;
  }
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* Fallback for browsers that don't support scroll-behavior */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator {
    animation: none;
  }

  .animate-in,
  .service-card,
  .destination-card,
  .testimonial-card,
  .partner-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.nav-link:focus,
.nav-cta:focus,
.mobile-menu-btn:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== LOADING STATE ===== */
body.loading .animate-in {
  opacity: 0;
  transform: translateY(30px);
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
  .navbar.scrolled {
    background: white;
    border-bottom: 2px solid #000;
  }

  .nav-link.active {
    color: #000;
    font-weight: 700;
  }

  .nav-link.active::after {
    background: #000;
    height: 3px;
  }
}

/* ===== CORREÇÃO ESPECÍFICA PARA SCROLL LATERAL AOS ===== */
/* Substituir a correção anterior por esta versão */

/* Apenas contenção horizontal no body */
body {
  max-width: 100vw;
}

/* Remover overflow-x das sections - estava causando problemas verticais */
/* section { overflow-x: hidden; } - REMOVIDO */

/* Ajustar apenas as animações problemáticas com valores menores */
[data-aos="slide-right"] {
  transform: translateX(20px) !important;
  opacity: 0;
}

[data-aos="slide-left"] {
  transform: translateX(-20px) !important;
  opacity: 0;
}

[data-aos="fade-right"] {
  transform: translateX(15px) !important;
  opacity: 0;
}

[data-aos="fade-left"] {
  transform: translateX(-15px) !important;
  opacity: 0;
}

/* Estado animado */
[data-aos="slide-right"].aos-animate,
[data-aos="slide-left"].aos-animate,
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

/* Simplificar flip sem usar perspective */
[data-aos="flip-left"],
[data-aos="flip-right"] {
  transform: scale(0.95) !important;
  opacity: 0;
}

[data-aos="flip-left"].aos-animate,
[data-aos="flip-right"].aos-animate {
  transform: scale(1) !important;
  opacity: 1;
}

/* Mobile - valores ainda menores */
@media (max-width: 768px) {
  [data-aos="slide-right"],
  [data-aos="fade-right"] {
    transform: translateX(10px) !important;
  }

  [data-aos="slide-left"],
  [data-aos="fade-left"] {
    transform: translateX(-10px) !important;
  }
}

/* Diving Courses Section */
.courses {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.courses-content {
  margin-top: 3rem;
}

.courses-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.course-image-hero {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-image-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.course-text {
  padding: 1rem;
}

.course-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.course-description {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.course-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #10b981;
  flex-shrink: 0;
}

.highlight-item span {
  color: #4b5563;
  font-weight: 500;
}

.courses-cta {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.courses-cta .cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.courses-cta .cta-text {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

.btn-whatsapp svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Responsive adjustments for courses */
@media (max-width: 768px) {
  .courses-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .course-image-hero img {
    height: 250px;
  }

  .course-main-title {
    font-size: 1.5rem;
  }

  .course-highlights {
    grid-template-columns: 1fr;
  }

  .courses-cta {
    margin: 2rem 1rem 0;
    padding: 2rem 1rem;
  }

  .courses-cta .cta-title {
    font-size: 1.5rem;
  }

  .btn-whatsapp {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
/* Author placeholder for testimonials without photo */
.author-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Star rating styles */
.testimonials .star {
    color: #d1d5db;
}

.testimonials .star.filled {
    color: #fbbf24;
}