
:root {
  --gold: #D4AF37;
  --gold-dark: #B8941F;
  --gold-light: #F5E6C8;
  --blue: #1e3a8a;
  --blue-dark: #1e40af;
  --blue-light: #3b82f6;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: background 0.3s ease;
}

.navbar {
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  width: 140px;
  height: 50px;
  border-radius: 0;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(212, 175, 55, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp 1s ease;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1) drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  display: inline-block;
  position: relative;
  color: #fff; 
}

@media (max-width: 600px) {
  .hero-title {
    animation: none;
    width: auto;
    border-right: none;
    white-space: normal;
  }
}

}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: white;
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

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

@keyframes scrollDown {
  0%, 100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes floatCloud {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-20px) translateY(-10px);
  }
}

@keyframes floatPlane {
  0% {
    transform: translateX(-100px) translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(calc(100vw + 100px)) translateY(-20px);
    opacity: 0;
  }
}

@keyframes wave {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--blue);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.servicos {
  padding: 100px 0 0;
  background: var(--gray-50);
  position: relative;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 5%;
  width: 100px;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cellipse cx='30' cy='25' rx='28' ry='14' fill='rgba(30,58,138,0.04)'/%3E%3Cellipse cx='55' cy='30' rx='32' ry='16' fill='rgba(30,58,138,0.03)'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  animation: floatCloud 20s ease-in-out infinite;
  pointer-events: none;
}

.servicos::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 8%;
  width: 80px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 40'%3E%3Cellipse cx='25' cy='20' rx='24' ry='12' fill='rgba(212,175,55,0.05)'/%3E%3Cellipse cx='45' cy='24' rx='28' ry='14' fill='rgba(212,175,55,0.04)'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  animation: floatCloud 18s ease-in-out infinite reverse;
  pointer-events: none;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.servico-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.servico-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.servico-icon svg {
  width: 32px;
  height: 32px;
}

.servico-card h3 {
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 600;
}

.servico-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.servicos-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)),
              url('https://i.postimg.cc/nh5jYk0G/download.jpg') center/cover;
  background-blend-mode: overlay;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.servicos-cta .plane-decoration {
  position: absolute;
  top: 30%;
  left: -100px;
  width: 60px;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath d='M2,15 L25,15 L25,10 L45,15 L45,18 L58,15 L45,12 L45,15 L25,20 L25,15 Z' fill='rgba(255,255,255,0.15)'/%3E%3Ccircle cx='48' cy='15' r='2' fill='rgba(255,255,255,0.2)'/%3E%3Cpath d='M48,15 L35,15' stroke='rgba(255,255,255,0.1)' stroke-width='1' stroke-dasharray='2,2'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  animation: floatPlane 35s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.servicos-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(30, 64, 175, 0.85));
}

.servicos-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.servicos-cta-content h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.servicos-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.8;
}

.diferenciais {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80'%3E%3Cpath d='M0,40 Q300,20 600,40 T1200,40 L1200,80 L0,80 Z' fill='rgba(59,130,246,0.03)'/%3E%3Cpath d='M0,50 Q300,35 600,50 T1200,50 L1200,80 L0,80 Z' fill='rgba(59,130,246,0.02)'/%3E%3C/svg%3E") repeat-x bottom;
  background-size: 1200px 80px;
  animation: wave 20s linear infinite;
  pointer-events: none;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.diferencial-item {
  text-align: center;
  padding: 32px;
}

.diferencial-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.diferencial-icon svg {
  width: 40px;
  height: 40px;
}

.diferencial-item h3 {
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 12px;
  font-weight: 600;
}

.diferencial-item p {
  color: var(--gray-600);
  line-height: 1.7;
}

.destinos {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

.destinos::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 90px;
  height: 45px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 45'%3E%3Cellipse cx='28' cy='22' rx='26' ry='13' fill='rgba(30,58,138,0.04)'/%3E%3Cellipse cx='50' cy='26' rx='30' ry='15' fill='rgba(30,58,138,0.03)'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  animation: floatCloud 22s ease-in-out infinite;
  pointer-events: none;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.destino-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.destino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.destino-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.destino-content {
  padding: 32px;
}

.destino-content h3 {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 700;
}

.destino-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.destino-link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.destino-link:hover {
  background: var(--gold-dark);
  transform: translateX(4px);
}

.historia {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.historia::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q300,25 600,0 T1200,0 L1200,60 Q900,40 600,60 T0,60 Z' fill='rgba(249,250,251,0.8)'/%3E%3C/svg%3E") repeat-x top;
  background-size: 1200px 100px;
  pointer-events: none;
}

.historia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.historia-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.historia-carousel {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.historia-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: white;
  border-radius: 16px;
  overflow: hidden;
}

.historia-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.historia-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 32px;
  border-radius: 6px;
}

.depoimentos {
  padding: 100px 0;
  background: var(--gray-50);
  overflow: hidden;
  position: relative;
}

.depoimentos::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 3%;
  width: 110px;
  height: 55px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 55'%3E%3Cellipse cx='32' cy='27' rx='30' ry='15' fill='rgba(212,175,55,0.05)'/%3E%3Cellipse cx='60' cy='30' rx='35' ry='17' fill='rgba(212,175,55,0.04)'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  animation: floatCloud 24s ease-in-out infinite;
  pointer-events: none;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 30px;
  padding: 40px 0;
  align-items: start;
}

.depoimento-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: floatVertical 4s ease-in-out infinite;
}

.depoimento-card:nth-child(1) {
  align-self: start;
  margin-top: 0;
  animation-delay: 0s;
}

.depoimento-card:nth-child(2) {
  align-self: end;
  margin-bottom: 0;
  margin-top: 60px;
  animation-delay: 0.5s;
}

.depoimento-card:nth-child(3) {
  align-self: start;
  margin-top: 0;
  animation-delay: 1s;
}

.depoimento-card:nth-child(4) {
  align-self: end;
  margin-bottom: 0;
  margin-top: 60px;
  animation-delay: 1.5s;
}

.depoimento-card:nth-child(5) {
  align-self: start;
  margin-top: 0;
  animation-delay: 2s;
}

.depoimento-card:nth-child(6) {
  align-self: end;
  margin-bottom: 0;
  margin-top: 60px;
  animation-delay: 2.5s;
}

.depoimento-card:hover {
  animation-play-state: paused;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

@keyframes floatVertical {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.depoimento-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.depoimento-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.depoimento-stars {
  display: flex;
  gap: 4px;
  font-size: 1.25rem;
  color: var(--gold);
}

.depoimento-stars span {
  line-height: 1;
}

.depoimento-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
  text-align: center;
}

.garantia {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

.garantia::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath d='M0,50 Q300,30 600,50 T1200,50 L1200,100 L0,100 Z' fill='rgba(255,255,255,0.03)'/%3E%3Cpath d='M0,60 Q300,45 600,60 T1200,60 L1200,100 L0,100 Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") repeat-x;
  background-size: 1200px 100px;
  animation: wave 25s linear infinite;
  pointer-events: none;
}

.garantia::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 5%;
  width: 100px;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cellipse cx='30' cy='25' rx='28' ry='14' fill='rgba(255,255,255,0.06)'/%3E%3Cellipse cx='55' cy='28' rx='32' ry='16' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  animation: floatCloud 20s ease-in-out infinite;
  pointer-events: none;
}

.garantia-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.garantia-seal {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.garantia-seal svg {
  width: 80px;
  height: 80px;
  color: var(--gold);
}

.garantia-seal span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.garantia-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.garantia-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 16px;
}

.faq {
  padding: 100px 0;
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--gray-600);
  line-height: 1.8;
}

.contato {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
}

.contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,60 Q300,40 600,60 T1200,60 L1200,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x top;
  background-size: 1200px 120px;
  pointer-events: none;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 60px;
}

.contato-info h3 {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 32px;
  font-weight: 700;
}

.contato-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contato-item svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.contato-item strong {
  display: block;
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contato-item p {
  color: var(--gray-600);
  line-height: 1.7;
}

.contato-social {
  margin-top: 40px;
}

.contato-social h4 {
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.contato-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

.footer {
  background: var(--gray-900);
  color: white;
  padding: 60px 0 24px;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  width: 80px;
  border-radius: 8px;
}

.footer-logo p {
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  color: var(--gray-300);
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 24px;
  text-align: center;
  color: var(--gray-400);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--gray-900);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

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

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

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

  .historia-content {
    grid-template-columns: 1fr;
  }

  .historia-carousel {
    order: -1;
    height: 350px;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .depoimento-card:nth-child(even) {
    margin-top: 0;
  }

  .depoimento-card {
    animation: floatVertical 3s ease-in-out infinite;
  }

  .garantia-content {
    flex-direction: column;
    text-align: center;
  }

  .garantia-seal {
    width: 160px;
    height: 160px;
  }

  .garantia-seal svg {
    width: 60px;
    height: 60px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 150px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .cta-button {
    padding: 14px 32px;
    font-size: 1rem;
  }
}
.hero-section {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(212, 175, 55, 0.5));
  z-index: 1;
}

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

