/* RESET */
* {margin: 0; padding: 0; box-sizing: border-box;}
html { scroll-behavior: smooth; }
body {font-family: Arial, sans-serif; background: #fff; color: #333; line-height: 1.6;}

/* ================= TOP BAR ================= */
.top-bar {
  background-color: #fff;
  padding: 10px 40px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.top-bar a, .top-bar-right span {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}
.top-bar a:hover {
  color: #0077ff;
}
.top-bar i {
  color: #888;
}
@media (max-width: 768px) {
  .top-bar {
    justify-content: center;
    padding: 10px 20px;
  }
}

/* ================= HEADER ================= */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo a { display: flex; align-items: center; }
nav ul {display: flex; list-style: none; gap: 30px;}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #0077ff;
}
.header-actions { display: flex; gap: 10px; }
.btn-header {
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s;
}
.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-header.primary {background: #0077ff; color: #fff;}
.btn-header.primary:hover {background: #005ecc;}
.btn-header.whatsapp {background: #25d366; color: #fff;}
.btn-header.whatsapp:hover {background: #1ea954;}
.menu-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; }

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  background: url("cancun.jpg") no-repeat center center/cover; 
  color: #fff;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  min-height: 90vh;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  z-index: 1;
  gap: 40px;
}
.hero-text {max-width: 600px;}
.hero-text .tag {
  background: #ffce00; color: #222; padding: 4px 10px;
  border-radius: 12px; font-size: 0.85rem; font-weight: bold;
}
.hero-text h1 { font-size: 3rem; margin: 20px 0; line-height: 1.2; }
.hero-text h1 span {color: #f7b500;}
.hero-text p {font-size: 1.1rem; margin-bottom: 20px;}
.hero-info {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.hero-buttons {display: flex; gap: 15px; margin-bottom: 30px;}
.btn {
  padding: 12px 20px; border-radius: 8px; font-weight: bold;
  text-decoration: none; font-size: 1rem; transition: all 0.3s;
  display: inline-block;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn.primary, .btn-primary {background: #0077ff; color: #fff;}
.btn.primary:hover, .btn-primary:hover {background: #005ecc;}
.btn.secondary, .btn-secondary {background: #f7b500; color: #222;}
.btn.secondary:hover, .btn-secondary:hover {background: #d9a300;}

.hero-stats {display: flex; gap: 40px; margin-top: 20px; font-size: 0.95rem;}
.hero-stats strong {font-size: 1.4rem; display: block; color: #fff;}
.hero-card {
  background: #fff; color: #222; border-radius: 12px;
  padding: 25px; max-width: 300px; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-card h3 {margin-bottom: 5px; font-size: 1.2rem;}
.hero-card .subtitle {font-size: 0.9rem; color: #666; margin-bottom: 15px;}
.hero-card ul {list-style: none; margin-bottom: 15px;}
.hero-card ul li {margin: 5px 0; font-size: 0.9rem;}
.hero-card .old-price {text-decoration: line-through; color: #999; font-size: 0.9rem;}
.hero-card .price {color: #0077ff; font-size: 1.5rem; font-weight: bold; margin: 10px 0;}
.hero-card .price span {font-size: 0.8rem; font-weight: normal; color: #333;}
.btn-card {
  display: block; text-align: center; padding: 12px; background: #0077ff;
  color: #fff; border-radius: 8px; font-weight: bold;
  text-decoration: none; margin-top: 10px; transition: all 0.3s;
}
.btn-card:hover {background: #005ecc; transform: translateY(-2px);}

/* ================= ABOUT SECTION ================= */
.about {background: #f9fbff; padding: 60px 20px;}
.about .container {max-width: 1200px; margin: auto;}
.about-header {text-align: center; margin-bottom: 40px;}
.about-header .tag {
  display: inline-block; background: #ffce00; color: #222; font-size: 0.9rem;
  font-weight: bold; padding: 4px 12px; border-radius: 20px; margin-bottom: 15px;
}
.about-header h2 {font-size: 2.5rem; margin-bottom: 15px;}
.about-header h2 span {color: #f7b500;}
.about-header p { font-size: 1.1rem; color: #555; max-width: 750px; margin: auto; line-height: 1.6; }
.stats { display: flex; justify-content: center; gap: 30px; margin: 40px 0; flex-wrap: wrap; }
.stat {
  background: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px; text-align: center; flex: 1; min-width: 200px;
  transition: transform 0.3s;
}
.stat:hover {
  transform: scale(1.05);
}
.stat strong {font-size: 2rem; color: #0077ff; display: block; margin-bottom: 8px;}
.stat span {font-size: 0.95rem; color: #444;}
.about-content { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin: 50px 0; }
.about-text {flex: 1; min-width: 300px;}
.about-text h3 {font-size: 1.5rem; margin-bottom: 15px;}
.about-text p {color: #444; margin-bottom: 15px; line-height: 1.6;}
.features {list-style: none; margin: 20px 0; padding: 0;}
.features li {margin-bottom: 12px; font-size: 0.95rem; color: #333;}
.about-image {flex: 1; min-width: 300px; position: relative;}
.about-image img { width: 100%; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.certifications {
  background: #fff; border-radius: 8px; padding: 8px 12px; font-size: 0.85rem;
  color: #333; position: absolute; bottom: -15px; left: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.cta {
  background: linear-gradient(to right, #eaf4ff, #ffe38f); border-radius: 12px;
  padding: 40px; text-align: center; margin-top: 60px;
}
.cta h3 {font-size: 1.6rem; margin-bottom: 15px;}
.cta p { max-width: 700px; margin: auto; font-size: 1rem; color: #444; line-height: 1.6; margin-bottom: 20px; }

/* ================= PACOTES SECTION ================= */
.pacotes-section { padding: 60px 20px; background-color: #f9fbfc; }
.pacotes-section h1 { text-align: center; margin-bottom: 15px; font-size: 2.5rem; color: #222; }
.pacotes-section h1 span { color: #0077ff; }
.pacotes-section p.sub { text-align: center; margin: 0 auto 40px; max-width: 700px; font-size: 1.1rem; color: #555; line-height: 1.6; }
.cards-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 20px; max-width: 1200px; margin: auto; }
.card {
  background: #fff; border-radius: 16px; box-shadow: 0 8px 30px rgba(0, 85, 170, 0.08); overflow: hidden;
  width: 360px; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #eef;
  height: 100%;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0, 85, 170, 0.12); }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-content { padding: 20px 25px; flex-grow: 1; }
.card-content h2 { font-size: 1.5rem; margin-bottom: 10px; text-align: center; display: block; }
.card-content .duration { font-size: 0.95rem; color: #555; margin-bottom: 15px; text-align: center; }
.card-content ul { list-style: none; padding: 0; margin: 0 0 15px; font-size: 0.95rem; color: #444; }
.card-content ul li { margin-bottom: 8px; padding-left: 22px; position: relative; }
.card-content ul li::before { content: '✔'; position: absolute; left: 0; color: #25d366; }
.card-footer { padding: 20px 25px; background-color: #f9fbfc; border-top: 1px solid #eee; text-align: center; }
.card-footer .old-price { text-decoration: line-through; font-size: 0.9rem; color: #999; }
.card-footer .price { font-size: 2.2rem; font-weight: bold; color: #0077ff; margin: 5px 0; }
.card-footer .price span { font-size: 0.9rem; font-weight: normal; color: #555; }
.card-footer p { font-size: 0.8rem; color: #777; margin-bottom: 15px; }
.btn-container { display: flex; flex-direction: column; gap: 10px; }
.card-wrapper { position: relative; width: 360px; }
.card-wrapper .card-header {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 2; padding: 6px 14px; border-radius: 20px;
  font-weight: bold; font-size: 0.8rem; white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card-header.melhor-custo { background-color: #e6f2ff; color: #005ecc; }
.card-header.mais-procurado { background-color: #0077ff; color: #fff; }
.card-header.reveillon { background-color: #fff8e1; color: #e67e22; }

/* INFO & WHY SECTIONS */
.info-section { padding: 40px 20px; }
.info-box {
  background: #fff8e6; border: 1px solid #f1c40f; border-radius: 12px;
  padding: 20px; max-width: 1000px; margin: 0 auto;
}
.info-box h3 { text-align: center; margin-bottom: 20px; color: #c27c0e; }
.info-columns { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.info-columns div { flex: 1; min-width: 250px; }
.info-columns h4 { margin-bottom: 10px; color: #444; }
.info-columns ul { margin: 0; padding-left: 20px; color: #555; }
.why-section { background: #f9fafc; text-align: center; padding: 50px 20px; }
.why-section h3 { margin-bottom: 30px; font-size: 1.8rem; }
.why-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.why-card {
  background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 220px; transition: transform 0.3s;
}
.why-card:hover { transform: scale(1.05); }
.why-card .icon { font-size: 2rem; margin-bottom: 10px; }

/* NOVA SEÇÃO DE ESTATÍSTICAS */
.final-stats { background-color: #fff; padding: 60px 20px; border-top: 1px solid #eee; }
.stats-container {
  display: flex; justify-content: space-around; align-items: center;
  max-width: 1000px; margin: auto; flex-wrap: wrap; gap: 20px;
}
.stats-container div { text-align: center; }
.stats-container strong { font-size: 2.5rem; color: #0077ff; display: block; margin-bottom: 5px; }
.stats-container span { font-size: 1rem; color: #555; }

/* ================= CTA FORM SECTION ================= */
.cta-form-section {
  padding: 80px 40px; background: linear-gradient(110deg, #1AC1DD 0%, #ffb93f 100%);
  position: relative; overflow: hidden; color: #fff;
}
.cta-form-section::before, .cta-form-section::after {
  content: ''; position: absolute; background: rgba(255, 255, 255, 0.05);
  border-radius: 50%; z-index: 0;
}
.cta-form-section::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.cta-form-section::after { width: 200px; height: 200px; bottom: -80px; right: 15%; }
.cta-form-container {
  max-width: 1200px; margin: auto; display: flex; align-items: center;
  justify-content: center; gap: 60px; position: relative; z-index: 1;
}
.form-cta-content { flex: 1; max-width: 500px; }
.promo-tag {
  background-color: #fff; color: #13547a; padding: 6px 12px; border-radius: 50px;
  font-size: 0.8rem; font-weight: bold; display: inline-block; margin-bottom: 20px;
}
.form-cta-content h2 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; color: #fff; }
.form-cta-content h2 span { color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
.form-cta-content > p { font-size: 1.1rem; line-height: 1.6; opacity: 0.9; margin-bottom: 30px; }
.promo-box {
  background: rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 20px;
  margin-bottom: 30px; border: 1px solid rgba(255, 255, 255, 0.2);
}
.promo-details { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.promo-item { display: flex; align-items: center; gap: 10px; font-weight: bold; }
.promo-values { display: flex; gap: 20px; text-align: center; }
.value-item span { font-size: 1.5rem; font-weight: bold; display: block; }
.value-item p { font-size: 0.8rem; opacity: 0.8; }
.progress-info { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 8px; }
.progress-bar { width: 100%; height: 8px; background-color: rgba(0, 0, 0, 0.2); border-radius: 50px; }
.progress-bar-fill { height: 100%; background-color: #fff; border-radius: 50px; }
.btn-cta-main, .btn-cta-whatsapp {
  display: block; text-align: center; padding: 15px; border-radius: 8px;
  text-decoration: none; font-weight: bold; margin-bottom: 15px; transition: transform 0.2s;
}
.btn-cta-main { background-color: #fff; color: #13547a; }
.btn-cta-whatsapp { background-color: #25d366; color: #fff; border: 1px solid #fff; }
.btn-cta-main:hover, .btn-cta-whatsapp:hover { transform: scale(1.03); }
.cta-footer-info {
  display: flex; justify-content: space-between; font-size: 0.8rem;
  opacity: 0.7; margin-top: 20px;
}
.cta-footer-info span { display: flex; align-items: center; gap: 5px; }
.form-wrapper {
  background: #f4f7f9; border-radius: 12px; padding: 40px;
  flex: 1; max-width: 500px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); color: #2c3e50;
}
.form-wrapper h3 { font-size: 1.8rem; margin-bottom: 10px; text-align: center; }
.form-wrapper > p { text-align: center; color: #555; margin-bottom: 30px; }
.form-group { margin-bottom: 15px; }
.form-wrapper input[type="text"],
.form-wrapper input[type="email"],
.form-wrapper select {
  width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px;
  font-size: 1rem; background-color: #fff; -webkit-appearance: none;
  transition: all 0.3s;
}
.form-wrapper input[type="text"]:focus,
.form-wrapper input[type="email"]:focus,
.form-wrapper select:focus {
  outline: none; border-color: #2980b9; box-shadow: 0 0 5px rgba(41, 128, 185, 0.3);
}
.form-row { display: flex; gap: 15px; }
.form-row .form-group { flex: 1; }
.form-wrapper select {
  cursor: pointer;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: .65em auto;
}
.form-wrapper button.zf-submitColor {
  width: 100%; padding: 15px; border: none; border-radius: 8px;
  background-color: #2980b9; color: #fff; font-size: 1.1rem;
  font-weight: bold; cursor: pointer; transition: background-color 0.3s;
}
.form-wrapper button.zf-submitColor:hover { background-color: #3498db; }
.form-disclaimer { font-size: 0.75rem; text-align: center; color: #777; margin-top: 15px; }
.form-info-boxes {
  display: flex; justify-content: space-around; margin-top: 30px;
  border-top: 1px solid #eee; padding-top: 20px;
}
.info-box-item { text-align: center; }
.info-box-item i { font-size: 1.5rem; color: #2980b9; margin-bottom: 8px; }
.info-box-item strong { display: block; font-size: 1.1rem; }
.info-box-item span { font-size: 0.8rem; color: #555; }
.thank-you-message {
  text-align: center; padding: 80px 20px; border: 2px dashed #2980b9;
  border-radius: 12px; background-color: #f4f7f9;
}
.thank-you-message h3 { font-size: 2rem; color: #2980b9; margin-bottom: 15px; }
.thank-you-message p { font-size: 1.1rem; color: #555; margin: 0; text-align: center; }

/* ================= FOOTER ================= */
.site-footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 60px 20px;
  font-size: 0.9rem;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-column h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-column .logo-title {
    color: #3b82f6;
    font-weight: bold;
}
.footer-column p { line-height: 1.7; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.footer-column .contact-info i {
  color: #9ca3af;
  margin-top: 4px;
}
.footer-column .links-list li a {
    text-decoration: none;
    color: #d1d5db;
    transition: color 0.3s;
    margin-bottom: 10px;
    display: inline-block;
}
.footer-column .links-list li a:hover {
    color: #fff;
}
.footer-column .services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons a { color: #d1d5db; font-size: 1rem; transition: color 0.3s; }
.social-icons a:hover { color: #fff; }
.atendimento-title {
  display: inline-block;
  border-bottom: 2px solid #ca8a04;
  padding-bottom: 5px;
  margin-top: 20px;
  color: #fff;
}
.cert-buttons {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cert-buttons span {
  background-color: #374151;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  color: #e5e7eb;
  font-size: 0.85rem;
}
.guarantee-box {
  background-color: #1f2937;
  border: 1px solid #374151;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

/* --- RESPONSIVIDADE GERAL --- */
@media (max-width: 992px) {
  .cta-form-container { flex-direction: column; gap: 40px; }
  .form-cta-content, .form-wrapper { max-width: 600px; width: 100%; }
  .cta-form-section { padding: 60px 20px; }
  .hero-content { flex-direction: column; }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-info, .hero-buttons, .hero-stats { justify-content: center; }
  .hero-card { max-width: 400px; margin: 20px auto 0; }
  .hero-info { flex-wrap: wrap; white-space: normal; }
  
  /* --- AJUSTE DOS STATS PARA 2x2 NO MOBILE --- */
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
  }
  .stat {
    min-width: 0;
    padding: 20px 10px;
  }
  
  /* --- AJUSTE DO WHY-CARDS PARA 2x2 NO MOBILE --- */
  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .why-card {
    width: 100%;
    padding: 20px 10px;
  }
}

@media (max-width: 768px) {
  .top-bar { justify-content: center; padding: 10px 20px; }
  header { padding: 15px 20px; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  nav.active { display: block; }
  nav ul { flex-direction: column; padding: 20px; gap: 0; }
  nav ul li { width: 100%; }
  nav ul li a { display: block; padding: 15px; text-align: center; border-bottom: 1px solid #f0f0f0; }
  nav ul li:last-child a { border-bottom: none; }
  .menu-toggle { display: block; }
  .header-actions { display: none; }
  
  .hero-text h1 { font-size: 2.5rem; }
  .hero-info { justify-content: center; }
}

@media (max-width: 480px) {
  /* --- CORREÇÃO FINAL PARA 2x2 EM CELULARES --- */
  .stats, .why-cards {
    grid-template-columns: 1fr 1fr;
  }
  .hero-text h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
}