* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff, #f5f7fa);
}

.hero h1 {
  font-size: 42px;
  margin: 20px 0;
}

.hero h1 span {
  color: #ff6a00;
}

.hero p {
  max-width: 600px;
  font-size: 18px;
  margin-bottom: 30px;
}

.tag {
  background: #ffe8d8;
  color: #ff6a00;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.btn {
  background: #ff6a00;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff6a00;
  color: #ff6a00;
}

.section {
  padding: 80px 0;
}

.section.gray {
  background: #f8f9fb;
}

.section h2 {
  text-align: center;
  font-size: 36px;
}

.section h2 span {
  color: #ff6a00;
}

.subtitle {
  text-align: center;
  max-width: 700px;
  margin: 20px auto 50px;
  color: #555;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.highlight {
  background: #0c0f1a;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta {
  padding: 80px 0;
  text-align: center;
}

.cta span {
  color: #ff6a00;
}

.cta-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.cta-box {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 10px;
}

.footer {
  padding: 30px 0;
  text-align: center;
  background: #111;
  color: #fff;
}



/* whatsapp */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: auto;
  height: auto;

  background: none;
  border-radius: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: none;
  z-index: 9999;
}

#whatsapp-button img {
  width: 84px;   /* AQUI você controla o tamanho */
  height: auto;
  cursor: pointer;

  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

#whatsapp-button img:hover {
  transform: scale(1.08) rotate(6deg);
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.45));
}


/* CONTADOR */
.contador {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}


/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #ff6a00;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.logo-text {
  color: #111;
}



/* HERO */

.hero {
  padding: 120px 0 80px;
  background: radial-gradient(
    circle at right top,
    rgba(255, 106, 0, 0.08),
    transparent 40%
  );
}

.hero-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: #ffffff;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 14px;
  color: #5b6470;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 30px;
}

.hero h1 span {
  color: #ff6a00;
}

.hero-subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
}

.hero-note strong {
  color: #ff6a00;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ff6a00;
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 600;
}

.btn-secondary {
  border: 2px solid #0f172a;
  color: #0f172a;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 600;
  background: transparent;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.scroll-indicator {
  font-size: 24px;
  color: #cbd5e1;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}



.machine {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}

.machine-step {
  font-size: 14px;
  letter-spacing: 4px;
  color: #ff6a00;
  display: inline-block;
  margin-bottom: 20px;
}

.machine-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0f172a;
}

.machine-title span {
  color: #ff6a00;
}

.machine-subtitle {
  max-width: 720px;
  margin: 0 auto 80px;
  font-size: 18px;
  color: #64748b;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.machine-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.machine-card h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #0f172a;
}

.machine-card p {
  font-size: 15px;
  color: #64748b;
}

.step-number {
  position: absolute;
  top: -18px;
  left: -18px;
  background: #ff6a00;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  font-size: 24px;
  color: #ff6a00;
}

.machine-card:nth-child(3) .arrow,
.machine-card:nth-child(6) .arrow {
  display: none;
}

/* Responsivo */
@media (max-width: 900px) {
  .machine-grid {
    grid-template-columns: 1fr;
  }

  .arrow {
    display: none;
  }

  .machine-card {
    text-align: center;
  }
}





/* A MAQUINA */


.machine-result {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  position: relative;
}

.machine-result::before {
  content: "";
  position: absolute;
  top: -60px;
  width: 2px;
  height: 60px;
  background: #ffd6bd;
}

.result-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff3ea;
  padding: 24px 36px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.result-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.result-text strong {
  display: block;
  font-size: 16px;
  color: #0f172a;
}

.result-text span {
  font-size: 14px;
  color: #64748b;
}




/* TUDO INCLUSO */


.included {
  padding: 120px 0;
  background: #f8fafc;
  text-align: center;
}

.included-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #ff6a00;
  font-weight: 600;
}

.included-title {
  font-size: 42px;
  font-weight: 800;
  margin: 16px 0;
  color: #0f172a;
}

.included-title span {
  color: #ff6a00;
}

.included-subtitle {
  max-width: 700px;
  margin: 0 auto 70px;
  font-size: 18px;
  color: #64748b;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.included-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.included-icon {
  width: 48px;
  height: 48px;
  background: #fff3ea;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.included-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f172a;
}

.included-card p {
  font-size: 14px;
  color: #64748b;
}

/* Responsivo */
@media (max-width: 900px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-card {
    text-align: center;
  }
}



/*MELHOR DE TUDO */

.best {
  padding: 100px 0;
  background: #f8fafc;
}

.best-card {
  max-width: 1000px;
  margin: auto;
  padding: 60px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    #0f172a,
    #111827 60%,
    #1f2937
  );
  color: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.best-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.best-text {
  font-size: 18px;
  color: #e5e7eb;
  max-width: 700px;
  margin-bottom: 30px;
}

.best-list {
  list-style: none;
  padding: 0;
}

.best-list li {
  font-size: 16px;
  margin-bottom: 14px;
  color: #f9fafb;
}

.best-list li::before {
  content: "✔";
  color: #ff6a00;
  font-weight: 700;
  margin-right: 10px;
}




/* FECHAMENTO */
.closing {
  padding: 120px 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 106, 0, 0.15),
    #0f172a 45%
  );
  color: #fff;
  text-align: center;
}

.closing-alert {
  display: inline-block;
  background: rgba(255,106,0,0.15);
  color: #ff6a00;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 30px;
}

.closing-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
}

.closing-title span {
  color: #ff6a00;
}

.closing-title u {
  text-decoration-color: #ff6a00;
  text-underline-offset: 6px;
}

.closing-subtitle {
  max-width: 700px;
  margin: 0 auto 70px;
  font-size: 18px;
  color: #cbd5f5;
}

.closing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.closing-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(8px);
}

.closing-icon {
  font-size: 28px;
  color: #ff6a00;
  margin-bottom: 20px;
}

.closing-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.closing-card p {
  font-size: 14px;
  color: #e5e7eb;
}

.closing-btn {
  display: inline-block;
  background: #ff6a00;
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(255,106,0,0.4);
  margin-bottom: 20px;
}

.closing-note {
  font-size: 14px;
  color: #cbd5f5;
}

/* Responsivo */
@media (max-width: 900px) {
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .closing-title {
    font-size: 34px;
  }
}






/* CELIA MARTINS  */
.about {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #fff7ed,
    #f8fafc 40%
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-tag {
  display: inline-block;
  background: #fff1dc;
  color: #7c2d12;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-text h2 strong {
  color: #0f172a;
}

.about-text p {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text em {
  font-style: italic;
}

.about-question {
  font-weight: 600;
  margin-top: 20px;
}

.about-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-image {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

/* Responsivo */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-buttons {
    justify-content: center;
  }
}





/* FOOTER */
.footer {
  padding: 80px 0 60px;
  background: #0C0F1A;
  font-size: 14px;
  color: #E5E7EB;
}

.footer-top {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-top a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-top a:hover {
  color: #FF6A00;
  opacity: 1;
}

.footer hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 40px 0;
}

.footer-center {
  text-align: center;
}

.footer-center p {
  margin-bottom: 6px;
  color: #E5E7EB;
}

.footer-sub {
  font-size: 13px;
  color: #94A3B8;
}

.footer-legal {
  max-width: 1000px;
  margin: auto;
  line-height: 1.7;
  color: #CBD5E1;
}

.footer-legal h4,
.footer-legal h5 {
  color: #FFFFFF;
}

.footer-legal p {
  margin-bottom: 16px;
}

.footer-legal ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.footer-legal li {
  margin-bottom: 10px;
  color: #CBD5E1;
}

.footer-note {
  font-size: 13px;
  color: #94A3B8;
}

/* Responsivo */
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
}





/*  */





/* CHECKOUT FIXO */
.checkout-fixo {
  display: none;  /* começa escondido */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9998;

  background: rgba(15, 23, 42, 0.55); /* transparente */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-top: 1px solid rgba(255,255,255,0.15);
}

.checkout-fixo-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-info {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-size: 14px;
}

.checkout-info strong {
  font-weight: 700;
  font-size: 15px;
}

.checkout-info span {
  font-size: 13px;
  opacity: 0.9;
}

/* BOTÃO */
.checkout-btn {
  background: #ff6a00;
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 12px 30px rgba(255,106,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(255,106,0,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .checkout-fixo-container {
    flex-direction: column;
    text-align: center;
  }

  .checkout-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}

/* ESPAÇO EXTRA PARA NÃO COBRIR CONTEÚDO */
body {
  padding-bottom: 90px;
}




/* PAGINA DO BLOG */

.blog-post-escola {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.7;
}

.blog-post-escola h1 {
  font-size: 2.2rem;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.blog-post-escola .post-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.blog-post-escola h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #222;
}

.blog-post-escola h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-post-escola p {
  margin-bottom: 18px;
}

.blog-post-escola ul {
  margin: 20px 0 30px 20px;
}

.blog-post-escola ul li {
  margin-bottom: 8px;
}

.blog-post-escola .highlight {
  background: #f7f7f7;
  border-left: 4px solid #f2b705;
  padding: 15px;
  font-weight: 600;
}

.blog-post-escola .exercise-box {
  background: #fff6e5;
  padding: 25px;
  border-radius: 8px;
  margin: 40px 0;
}

.blog-post-escola .exercise-box ol {
  margin-left: 20px;
}

.blog-post-escola .exercise-box li {
  margin-bottom: 10px;
}

.blog-post-escola .alert {
  background: #f2f2f2;
  padding: 20px;
  border-left: 4px solid #444;
  font-weight: 600;
}


.post-intro-with-image {
  display: flex;
  align-items: flex-start; /* alinha topo com texto */
  gap: 32px;
  margin-bottom: 50px;
}

.post-intro-with-image .post-text {
  flex: 1;
}

.post-intro-with-image .post-image {
  flex: 0 0 180px; /* imagem ~40% menor */
}

.post-intro-with-image .post-image img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 768px) {
  .post-intro-with-image {
    flex-direction: column-reverse;
    text-align: center;
  }

  .post-intro-with-image .post-image {
    margin-bottom: 20px;
  }
}


/* ---- banner rodapé blog ---- */

.banner-maquina {
  display: block;
  margin: 80px 0 20px;
  padding: 50px 40px;
  border-radius: 24px;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    #0f172a,
    #111827 60%,
    #1f2937
  );

  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-maquina:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

.banner-content {
  max-width: 720px;
}

.banner-tag {
  display: inline-block;
  background: rgba(255,106,0,0.15);
  color: #ff6a00;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.banner-maquina h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.banner-maquina p {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 22px;
  line-height: 1.6;
}

.banner-cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #ff6a00;
}

@media (max-width: 768px) {
  .banner-maquina {
    padding: 40px 24px;
    text-align: center;
  }

  .banner-content {
    margin: auto;
  }

  .banner-maquina h3 {
    font-size: 22px;
  }
}

