* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.logo {
  max-height: none;
  height: 40px;
  width: auto;
  font-weight: 700;
  color: #1e88e5;
  font-size: 24px;
  letter-spacing: -0.5px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1e88e5;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #1e88e5;
}

.btn-outline {
  border: 2px solid #1e88e5;
  padding: 8px 16px;
  border-radius: 25px;
  color: #1e88e5;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #1e88e5;
  color: #fff;
}

/* HERO */
.hero {
  background: linear-gradient(
    135deg,
    rgba(30,136,229,0.8),
    rgba(66,133,244,0.8)
  ),
  url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #fff;
  height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

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

.hero-content {
  max-width: 600px;
  animation: slideInUp 0.8s ease;
}

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

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero p {
  margin-bottom: 30px;
  font-size: 18px;
  opacity: 0.95;
  font-weight: 300;
}

.btn-primary {
  background: #fff;
  color: #1e88e5;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-whatsapp::after {
  display: none;
}

.btn-whatsapp-large {
  background: #25d366;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-whatsapp-large:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* DESTINOS */
.destinos {
  padding: 100px 0;
  background: #fafbfc;
}

.destinos h3 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
}

.destinos h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1e88e5, #42d9f5);
  margin: 15px auto 0;
  border-radius: 2px;
}

.destinos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
}

.destinos-subtitle {
  color: #555;
  font-size: 16px;
  margin-top: 8px;
}

.destinos-stats {
  display: grid;
  grid-auto-flow: column;
  gap: 20px;
  text-align: center;
}

.destinos-stats strong {
  display: block;
  font-size: 24px;
  color: #1e88e5;
}

.destinos-stats span {
  font-size: 13px;
  color: #666;
}

.card-meta {
  display: flex;
  gap: 10px;
  padding: 0 20px 22px;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
}

.badge {
  background: linear-gradient(135deg, #1e88e5, #42d9f5);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

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

.card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  background: #fff;
  cursor: pointer;
  animation: fadeInUp 0.6s ease both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

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

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(30,136,229,0.15);
}

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

.card:hover img {
  transform: scale(1.08);
}

.card h4 {
  padding: 20px 20px 10px;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.card p {
  padding: 0 20px 25px;
  color: #666;
  font-size: 14px;
}

/* SOBRE */
.sobre {
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f0f9 100%);
  padding: 100px 0;
}

.sobre-header {
  text-align: center;
  margin-bottom: 60px;
}

.sobre h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.sobre h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1e88e5, #42d9f5);
  margin: 15px auto 0;
  border-radius: 2px;
}

.sobre-intro {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin: 20px auto 0;
}

.sobre-content {
  display: grid;
  gap: 60px;
  margin-bottom: 60px;
}

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

.diferencial-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  animation: fadeInUp 0.6s ease both;
}

.diferencial-card:nth-child(1) { animation-delay: 0.1s; border-top-color: #1e88e5; }
.diferencial-card:nth-child(2) { animation-delay: 0.2s; border-top-color: #42d9f5; }
.diferencial-card:nth-child(3) { animation-delay: 0.3s; border-top-color: #26a69a; }
.diferencial-card:nth-child(4) { animation-delay: 0.4s; border-top-color: #ff6f00; }

.diferencial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30,136,229,0.12);
}

.diferencial-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.diferencial-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.diferencial-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  background: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

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

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, #1e88e5, #42d9f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  color: #666;
  font-size: 15px;
  font-weight: 500;
}

.sobre-footer {
  background: linear-gradient(135deg, #1e88e5 0%, #42d9f5 100%);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30,136,229,0.2);
}

.sobre-footer h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sobre-footer p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #1e88e5 0%, #42d9f5 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cta > .container > p {
  font-size: 18px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.form {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.form input {
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  width: 200px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form input:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.form .btn-primary {
  color: #1e88e5;
  background: #fff;
}

.form .btn-primary:hover {
  background: #f0f0f0;
}

.mensagem-feedback {
  margin-top: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.mensagem-feedback.sucesso {
  background: rgba(255, 255, 255, 0.95);
  color: #1e88e5;
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.mensagem-feedback.erro {
  background: rgba(255, 255, 255, 0.95);
  color: #e53935;
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* FOOTER */
.footer {
  background: #0a0e27;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  border-top: 1px solid #1a1f3a;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .header {
    padding: 15px 0;
  }

  .header .container {
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    font-size: 20px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
    padding: 6px 12px;
  }

  .btn-outline {
    padding: 6px 14px;
  }

  .hero {
    height: auto;
    min-height: 70vh;
    padding: 60px 0;
  }

  .hero h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 15px;
  }

  .destinos {
    padding: 60px 0;
  }

  .destinos h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .cards {
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .card {
    border-radius: 12px;
  }

  .card img {
    height: 200px;
  }

  .card h4 {
    font-size: 18px;
    padding: 15px 15px 8px;
  }

  .card p {
    padding: 0 15px 20px;
    font-size: 14px;
  }

  .sobre {
    padding: 60px 0;
  }

  .sobre-header {
    margin-bottom: 40px;
  }

  .sobre h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .sobre-intro {
    font-size: 15px;
    margin-top: 15px;
  }

  .sobre-diferenciais {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diferencial-card {
    padding: 25px 20px;
  }

  .diferencial-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .diferencial-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .sobre-stats {
    grid-template-columns: 1fr;
    padding: 35px 30px;
    gap: 25px;
  }

  .stat-number {
    font-size: 32px;
  }

  .sobre-footer {
    padding: 30px 25px;
  }

  .sobre-footer h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .sobre-footer p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .destinos h3,
  .sobre h3,
  .cta h3 {
    font-size: 24px;
  }

  .card img {
    height: 180px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ENTRE EM CONTATO */
.contato {
  background: #35495e;
  padding: 20px 0;
}

.contato-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin: 0 4px;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon:hover {
  background: #1e88e5;
  transform: translateY(-3px);
}

.social-icon.instagram:hover { background: #E4405F; }

.contato-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contato-link:hover {
  color: #42d9f5;
}

.contato-link .icon {
  font-size: 18px;
}

@media (max-width: 768px) {
  .contato-content {
    gap: 30px;
  }

  .contato-link {
    font-size: 13px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contato {
    padding: 15px 0;
  }

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

  .contato-link {
    font-size: 12px;
  }
}
