:root { --primary: #1DB2C4; --dark: #2c5364; --text: #333; --light: #f4fbfb; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: white; color: var(--text); line-height: 1.6; }
.header { background: var(--dark); padding: 80px 10%; color: white; border-radius: 0 0 60px 60px; text-align: center; }
.header h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.header p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 35px; opacity: 0.9; }
.wrapper { max-width: 1100px; margin: 0 auto; padding: 60px 25px; }
.section-title { font-size: 2.2rem; color: var(--dark); font-weight: 800; margin-bottom: 25px; text-align: center; }
.bg-light { background: var(--light); padding: 60px 25px; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.benefit-item { background: white; padding: 15px; border-radius: 15px; border: 1px solid #eee; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; }
.pain-item { background: #fff; padding: 20px; border-left: 5px solid var(--primary); border-radius: 12px; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.testimonial-card { background: var(--light); padding: 30px; border-radius: 20px; }

.plan-grid { display: grid; gap: 20px; justify-content: center; }

@media (min-width: 992px) {
  .plans-layout {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1200px;
    margin: 0 auto;
  }
  .plan-card { padding: 30px 20px !important; }
  .price { font-size: 2.2rem !important; }
}

@media (max-width: 991px) {
  .plans-layout { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

.plan-card { background: white; padding: 40px; border-radius: 35px; border: 1px solid #eee; position: relative; width: 100%; transition: 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; }
.plan-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.plan-tag { position: absolute; top: -12px; left: 30px; color: white; padding: 6px 18px; border-radius: 50px; font-weight: 800; font-size: 0.8rem; }
.price { font-size: 3rem; font-weight: 800; margin: 15px 0; }
.price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.features { list-style: none; margin-bottom: 30px; font-size: 0.9rem; text-align: left; }
.features li { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.faq-item { background: #fff; border: 1px solid #eee; border-radius: 15px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { padding: 20px; font-weight: 800; cursor: pointer; list-style: none; }
.btn { display: inline-block; padding: 18px 35px; border-radius: 15px; font-weight: 800; cursor: pointer; transition: 0.3s ease; border: 2px solid transparent; text-align: center; }
.btn-hero-outline { background: transparent; color: white; border: 2px solid white; }
.btn-whatsapp { color: white; width: 100%; text-decoration: none; }
.footer { padding: 40px 25px; text-align: center; color: #999; font-size: 0.9rem; }

/* Estilos do Modal Ajustados - Rolagem Invisível */
#modalCheckout {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  backdrop-filter: blur(5px);
  align-items: center; justify-content: center;
  padding: 10px; 
  overflow: hidden; 
}
.modal-content {
  background: white;
  width: 100%; max-width: 450px;
  max-height: 95vh;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  animation: modalAnim 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@keyframes modalAnim { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-header {
  background: linear-gradient(135deg, #1DB2C4 0%, #2c5364 100%);
  padding: 20px; color: white; text-align: center;
  flex-shrink: 0;
}
.modal-body { 
  padding: 25px; 
  overflow-y: auto;
  scrollbar-width: none; /* Firefox: oculta barra */
  -ms-overflow-style: none; /* IE/Edge: oculta barra */
}
/* Chrome/Safari: oculta barra de rolagem */
.modal-body::-webkit-scrollbar { 
  display: none; 
  width: 0;
  height: 0;
}

.modal-body label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
.modal-body input {
  width: 100%; padding: 12px; margin-bottom: 15px;
  border: 1px solid #ddd; border-radius: 10px;
  font-size: 1rem; outline: none;
}
.modal-body input:focus { border-color: var(--primary); }

/* Design do Plano Selecionado */
.plan-info-badge {
  background: #f0fbfc; 
  border: 2px dashed #1DB2C4;
  padding: 15px; border-radius: 15px; margin-bottom: 20px;
  text-align: center;
}
.plan-info-badge .name { font-weight: 800; color: #1DB2C4; font-size: 1.1rem; display: block; }
.plan-info-badge .price-tag { font-weight: 600; color: #2c5364; font-size: 1rem; }