*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#dbe3e6;
}

/* MENU */

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 80px;
  background:transparent;
}

.logo{
  font-size:26px;
  font-weight:bold;
  color:#155e63;
}

nav a{
  margin:0 20px;
  text-decoration:none;
  color:#333;
  font-weight:600;
}

nav a:hover{
  color:#1f8a8a;
}

.btn-topo{
  background:#2a9da2;
  color:white;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
}

.btn-corpo{
  background:#2a9da2;
  color:white;
  padding:15px 25px;
  border-radius:25px;
  text-decoration:none;
  font-size:18px;
  margin-top:30px !important;
}

/* HERO */

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px;
}

.hero-text{
  max-width:550px;
}

.hero-text h1{
  font-size:55px;
  color:#0d4b4f;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-text span{
  color:#2a9da2;
}

.hero-text p{
  font-size:18px;
  color:#444;
  margin-bottom:30px;
}

.btn{
  background:#2a9da2;
  color:white;
  padding:15px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}

.familias{
  margin-top:20px;
  font-size:14px;
  color:#555;
}

/* IMAGEM */

.hero-img img{
  width:420px;
  border-radius:20px;
  order: -1;
}

.titulo-planos{
  font-size:15px;
  color:#0d4b4f;
  line-height:1.1;
  margin-bottom:20px;  
  text-align: center;
  padding-top: 25px;
}

/* CORREÇÃO: align-items stretch para igualar altura dos cards */
.bloco-card{
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 30px;
}

/* CORREÇÃO: height fixo removido, substituído por min-height */
.card1 {
  background-color: rgb(221, 188, 143);
  width: 250px;
  min-height: 350px;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

.card1 p {
  margin-bottom: 18px;
  text-align: left !important;
}

.card1 h2 {
  margin-bottom: 20px;
}

.price {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

.barra {
  margin-bottom: 15px;
  border-color: #be7336;
}

.card2{
  background-color: rgb(221, 188, 143);
  width: 250px;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

.card2 h2 {
  margin-bottom: 20px;
}

.card2 p {
  margin-bottom: 18px;
  text-align: left !important;
}

.card3{
  background-color: rgb(221, 188, 143);
  width: 250px;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

.card2 h2 {
  margin-bottom: 20px;
}

.card3 p {
  margin-bottom: 18px;
  text-align: left !important;
}


.btn-bio{
  background:#2a9da2;
  color:white;
  padding:15px 25px;
  border-radius:25px;
  text-decoration:none;
  font-size:18px;
  margin-top:30px !important;
}

.botao-flutuante{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4d4c4c;
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.botao-flutuante:hover{
  background: #636262;
  transform: scale(1.05);
}


.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

.faq-section h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: #f7f7f7;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e2e2e2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fafafa;
  padding: 0 15px;
}

.faq-answer.active {
  max-height: 200px; /* ajusta conforme o conteúdo */
  padding: 15px;
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --green: #1D9E75;
  --green-dark: #0F6E56;
  --green-light: #E1F5EE;
  --green-mid: #9FE1CB;
  --teal: #085041;
  --white: #ffffff;
  --gray-bg: #f7faf9;
  --gray-100: #f0f0f0;
  --gray-300: #d0d0d0;
  --gray-500: #888;
  --gray-700: #444;
  --dark: #1a1a1a;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(29,158,117,0.10);
  --shadow-hover: 0 8px 32px rgba(29,158,117,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--gray-bg);
  color: var(--dark);
  min-height: 100vh;
}

/* ===== HEADER ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-dark);
  letter-spacing: -0.5px;
}

nav { display: flex; gap: 0.25rem; }

nav a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover { background: var(--green-light); color: var(--green-dark); }
nav a.active { color: var(--green-dark); background: var(--green-light); }

.btn-topo {
  text-decoration: none;
  background: var(--green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-topo:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ===== HERO TITULO ===== */
.titulo-planos {
  text-align: center;
  padding: 3.5rem 1rem 2rem;
}
.titulo-planos h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}
.titulo-planos h1 span { color: var(--green); }

.titulo-planos p {
  margin-top: 0.75rem;
  color: var(--gray-500);
  font-size: 1rem;
}

/* ===== CARDS DE PLANOS ===== */
.bloco-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 0.5rem 2.5rem 4rem;
  max-width: 1050px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card.destaque { border: 2px solid var(--green); }

.card-header {
  background: var(--green);
  padding: 1.5rem 1.5rem 1.2rem;
}
.card-header h2 {
  font-family: 'Poppins', sans-serif;
  color: #E1F5EE;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.card-header p { color: #9FE1CB; font-size: 0.85rem; line-height: 1.5; }

.badge-popular {
  display: inline-block;
  background: #E1F5EE;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.btn-agendar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 1.3rem;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-agendar:hover { background: var(--green-dark); transform: translateY(-1px); }

.preco {
  margin-bottom: 1.3rem;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.preco .currency { font-size: 1rem; color: var(--gray-500); }
.preco .valor {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.preco .periodo { font-size: 0.85rem; color: var(--gray-500); margin-left: 2px; }
.preco .por-porte { font-size: 0.72rem; color: var(--green-dark); background: var(--green-light); padding: 2px 8px; border-radius: 20px; margin-left: 6px; font-weight: 700; }

.features { list-style: none; padding: 0; margin: 0; flex: 1; }
.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
}
.features li:last-child { border-bottom: none; }

.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; }

/* ===== CHECKOUT PAGE ===== */
.checkout-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.checkout-header {
  margin-bottom: 2rem;
}
.checkout-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}
.checkout-header p { color: var(--gray-500); font-size: 0.9rem; margin-top: 4px; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Formulário */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-section {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.form-section:last-child { border-bottom: none; }

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.1rem;
}
.form-section-title .icon {
  width: 32px; height: 32px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.single { grid-template-columns: 1fr; }
.form-row.triple { grid-template-columns: 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select {
  height: 44px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  padding: 0 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}

/* Porte selector */
.porte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.porte-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 8px;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Nunito', sans-serif;
}
.porte-btn .emoji { font-size: 1.8rem; }
.porte-btn .label { font-size: 0.8rem; font-weight: 700; color: var(--gray-700); }
.porte-btn .sub { font-size: 0.7rem; color: var(--gray-500); }
.porte-btn .preco-porte { font-size: 0.78rem; font-weight: 800; color: var(--green-dark); margin-top: 2px; }

.porte-btn:hover { border-color: var(--green-mid); background: var(--green-light); }
.porte-btn.selected {
  border-color: var(--green);
  background: var(--green-light);
}
.porte-btn.selected .label { color: var(--green-dark); }

/* Resumo */
.resumo-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: sticky;
  top: 84px;
}

.resumo-header {
  background: var(--green);
  padding: 1.2rem 1.5rem;
}
.resumo-header h3 {
  font-family: 'Poppins', sans-serif;
  color: #E1F5EE;
  font-size: 1rem;
  font-weight: 700;
}
.resumo-plano-nome {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 2px;
}

.resumo-body { padding: 1.3rem 1.5rem; }

.resumo-linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--gray-700);
  border-bottom: 1px dashed #eee;
}
.resumo-linha:last-of-type { border-bottom: none; }
.resumo-linha strong { color: var(--dark); font-weight: 700; }

.resumo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--green-light);
}
.resumo-total span { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--gray-500); }
.resumo-total .valor-total {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
}

.resumo-features {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}
.resumo-features p {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.resumo-features ul { list-style: none; }
.resumo-features ul li {
  font-size: 0.83rem;
  color: var(--gray-700);
  padding: 4px 0;
  display: flex;
  gap: 7px;
  align-items: center;
}
.resumo-features ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-enviar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 15px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1.2rem;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}
.btn-enviar:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-enviar svg { width: 22px; height: 22px; }

.btn-voltar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--gray-500);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-voltar:hover { color: var(--green-dark); }
.btn-voltar svg { width: 16px; height: 16px; }

.aviso-wpp {
  margin-top: 10px;
  background: #f0fdf7;
  border: 1px solid var(--green-mid);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: var(--green-dark);
  line-height: 1.5;
  text-align: center;
}

/* Erro de validação */
.form-group input.erro,
.form-group select.erro { border-color: #e24b4a; }
.erro-msg { font-size: 0.75rem; color: #e24b4a; font-weight: 600; display: none; }
.form-group.has-error .erro-msg { display: block; }
.form-group.has-error input,
.form-group.has-error select { border-color: #e24b4a; }

/* Responsive */
@media (max-width: 700px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .resumo-card { position: static; }
  header { padding: 0 1rem; }
  nav { display: none; }
  .bloco-card { padding: 0.5rem 1rem 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr 1fr; }
}

footer {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.footer-brand p {
  font-size: 13px;
  color: #5f6368;
  line-height: 1.7;
  max-width: 260px;
  margin-top: 10px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9aa0a6;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: #5f6368;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s;
}

.footer-col a:hover { color: #0F6E56; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  font-size: 12px;
  color: #9aa0a6;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: #1D9E75;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover { text-decoration: underline; }

/* MENU MOBILE */
.menu-toggle {
    display: none;
    font-size: 25px;
    background: none;
    border: none;
    cursor: pointer;
}

/* BOTÃO TOPO */
#btnTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
}

/* ANIMAÇÃO */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 768px) {

    nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

