* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fff;
  color: #1a1a1a;
}

.hero {
  padding: 60px 5%;
  width: 100vw;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-family: Nunito;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 25px;
}

.highlight-orange {
  color: #ff7a45;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 520px;
}

.underline-red {
  color: #e74c3c;
  text-decoration: underline;
  font-weight: 600;
}

.underline-green {
  color: #27ae60;
  text-decoration: underline;
  font-weight: 600;
}

.rounded-full{
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.cta {
  display: inline-block;
  background: #ff7a45;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 122, 69, 0.3);
}

.social-proof {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }
}


.why-choose {
  padding: 80px 5%;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

/* CORES DOS ÍCONES */
.icon-card {
  text-align: center;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
  text-align: center;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}


.for-you {
  padding: 80px 5%;
  background: #f5f9ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.box {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* BARRA SUPERIOR COLORIDA */
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.box.no::before {
  background: #f87171;
}

.box.yes::before {
  background: #34d399;
}

.box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 25px;
}

.box.no h3 {
  color: #ef4444;
}

.box.yes h3 {
  color: #10b981;
}

.icon-title {
  font-size: 18px;
}

/* LISTA */
.box ul {
  list-style: none;
}

.box ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* ÍCONES DE LISTA */
.box.no ul li::before {
  content: "✖";
  color: #ef4444;
  font-weight: bold;
}

.box.yes ul li::before {
  content: "✔";
  color: #10b981;
  font-weight: bold;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .columns {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}


.steps-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.steps-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2933;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background-image: linear-gradient(to right, #f7b59d 50%, rgba(255,255,255,0) 0%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.step {
  max-width: 100%;
  z-index: 1;
}

.icon-circle {
  width: 68px;
  height: 68px;
  background-color: #ff7a59;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2933;
}

.step p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* Responsividade */
@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
    gap: 40px;
  }

  .steps-container::before {
    display: none;
  }
}


.preview-section {
  padding: 70px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.preview-title {
  font-size: 34px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 12px;
}

.preview-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 12px;
}

.preview-highlight {
  font-size: 16px;
  font-weight: 700;
  color: #ff7a59;
  margin-bottom: 50px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.preview-card {
  background-color: #ffffff;
  border-radius: 7px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.preview-image {
  width: 100%;
  max-width: 100%;
  height: 340px;
  background-color: #ffffff;
  border-radius: 14px;
  /*border: 1px solid #e5e7eb;*/
}

.preview-image img{
  max-width: 90%;
}

/* Responsividade */
@media (max-width: 1024px) {
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-image {
    height: 300px;
  }
}

.subtitle-previa{
  position: relative;
  display: inline-block;
}

.subtitle-previa::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 8px;
  background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='120' height='8'>\
<path d='M2 5 Q 10 2, 20 5 T 40 5 T 60 4 T 80 6 T 100 5' \
stroke='orange' stroke-width='2' fill='none' stroke-linecap='round'/>\
</svg>");
  background-size: contain;
  background-repeat: repeat-x;
}

.avatar img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.fit-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2d3d;
}

.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 28px;
    width: 100%;
    max-width: 480px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
}

.card ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    padding-left: 26px;
    position: relative;
    color: #4a4a4a;
}

/* NÃO */
.card-no {
    border-top: 6px solid #ff6b6b;
}

.card-no h3 {
    color: #ff6b6b;
}

.card-no ul li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

/* SIM */
.card-yes {
    border-top: 6px solid #2ecc71;
}

.card-yes h3 {
    color: #2ecc71;
}

.card-yes ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .cards {
        gap: 20px;
    }
}




.plans-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.plans-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 10px;
}

.plans-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 60px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card base */
.plan-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 26px 36px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
}

.plan-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1f2933;
}

.plan-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

.plan-price {
  margin-bottom: 24px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #1f2933;
}

.price-note {
  font-size: 13px;
  color: #6b7280;
}

.off {
  background-color: #fde6d8;
  color: #ff7a59;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  margin-left: 8px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.plan-features li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
}

/* Botões */
.plan-button {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.plan-button.outline {
  background-color: transparent;
  border: 1px solid #ff7a59;
  color: #ff7a59;
}

.plan-button.primary {
  background-color: #ffffff;
  color: #ff7a59;
}

/* Plano Essencial */
.plan-card.featured {
  background: linear-gradient(180deg, #ff7a59, #ff8f6f);
  color: #ffffff;
  transform: scale(1.05);
}

.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured li {
  color: #ffffff;
}

.badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background-color: #fbbf24;
  color: #78350f;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.price-box {
  background-color: rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 26px;
}

.old-price {
  font-size: 12px;
  text-decoration: line-through;
  opacity: 0.9;
  display: block;
}

.main-price {
  font-size: 40px;
  font-weight: 700;
  display: block;
  margin: 6px 0;
}

.discount {
  background-color: #fbbf24;
  color: #78350f;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-block;
}

.delivery-note {
  font-size: 11px;
  margin-top: 14px;
  opacity: 0.9;
}

/* Plano Premium desabilitado */
.plan-card.disabled {
  opacity: 0.55;
}

.plan-features.muted li {
  color: #9ca3af;
}

.plan-button.disabled-btn {
  background-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

/* Responsividade */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fdeff2;
    color: #2b2b2b;
}

.testimonials {
    padding: 80px 5%;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 16px;
    color: #6f6f6f;
    margin-bottom: 50px;
}

.cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    max-width: 340px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

.stars {
    color: #f5b400;
    font-size: 18px;
    margin-bottom: 16px;
}

.text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e0e0e0;
}

.author strong {
    font-size: 14px;
    display: block;
}

.author span {
    font-size: 13px;
    color: #8a8a8a;
}


.guarantee-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    background-color: #fff7ef;
}

.guarantee-box {
    background-color: #e9fbf4;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 720px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.guarantee-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2933;
}

.guarantee-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.guarantee-box strong {
    font-weight: 600;
    color: #1f2933;
}


.faq-section {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1f2933;
}

.faq-box {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 0 32px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2933;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 20px;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    padding-bottom: 24px;
    text-align: left;
}


/* Rodapé ocupa 100% da largura */
.footer {
    width: 100% !important;
    background: linear-gradient(180deg, #0c1324 0%, #0a1020 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Conteúdo centralizado */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.logo-icon {
    width: 22px;
    height: 22px;
    background-color: #ff7a55;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.footer-center {
    font-size: 12px;
    color: #8a8f9c;
    text-align: center;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #7ee0b3;
}

.secure-icon {
    font-size: 14px;
}
.logo-icon{
  margin: 10px;
  background-color: transparent;
}
.logo-icon img{
  width: 40px;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background-color: #25D366;
  color: white;

  border-radius: 50%;
  font-size: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);

  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}
  
/* Estilo da notificação */
#sales-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  display: none;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

#sales-notification strong {
  color: #16a34a;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background-color: #111;
  color: #ddd;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Parte inferior */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: #aaa;
}

/* Responsivo */
@media (max-width: 600px) {
  .footer {
    text-align: center;
  }
}
