/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}


body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #111827;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================
   HEADER
========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.container_header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 16px;
    color: #111827;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-image: url(./img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    color: #16a34a;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition: 0.2s;
}

.menu a:hover {
    color: #16a34a;
}

/* AÇÕES */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-link:hover {
    color: #16a34a;
}

/* BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-buy {
    background: #16a34a;
    color: #fff;
}

.btn-buy:hover {
    background: #12843c;
}

.btn-green {
    background: #16a34a;
    color: #fff;
}

.btn-green:hover {
    background: #12843c;
}

.btn-outline {
    background: #fff;
    border: 2px solid #e5e7eb;
    color: #111827;
}

.btn-outline:hover {
    border-color: #16a34a;
    color: #16a34a;
}

/* ==========================
   SESSÃO PRODUTO
========================== */

.produto {
    padding: 120px 0 120px 0;
    background: #f3faf4;
    position: relative;
    overflow: hidden;
}

/* fundo com + */
.produto::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cfe6d2 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.45;
    pointer-events: none;
}

.produto-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* TAG */
.produto-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dff4e2;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #1c5b2c;
}

/* TITULO */
.produto-text h2 {
    margin-top: 18px;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #111827;
}

.produto-text h2 span {
    color: #16a34a;
}

/* STATS */
.produto-stats {
    margin-top: 25px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.stat-box {
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #eee;
    background: #fff;
}

.stat-box strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.stat-box.red {
    border: 1px solid #fbc2c2;
    background: #fff5f5;
    color: #e53935;
}

.stat-box.orange {
    border: 1px solid #ffd9b0;
    background: #fff7ed;
    color: #d97706;
}

.produto-desc {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

/* HIGHLIGHT */
.produto-highlight {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.produto-highlight p {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.produto-highlight span {
    color: #16a34a;
    font-weight: 800;
}

.produto-benefits {
    margin-top: 12px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
}

/* BOTÕES */
.produto-buttons {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* FOOTER */
.produto-footer {
    margin-top: 18px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

/* CARD */
.produto-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    position: relative;
    overflow: hidden;
}

/* BADGE */
.badge-top {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ef4444;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(239,68,68,0.35);
}

/* IMAGEM PRODUTO */
.hero-produto-img {
  width: 100%;
  height: 292px;
  border-radius: 18px;

  background-image: url("./img/img2.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  background-color: #f3f4f6;
}


/* INFO CARD */
.produto-info {
    margin-top: 18px;
    padding-top: 10px;
}

.produto-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    color: #6b7280;
}

.produto-row strong {
    color: #111827;
}

.produto-row strong.green {
    color: #16a34a;
}

.produto-price {
    margin-top: 18px;
}

.produto-price .old {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-line {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-line strong {
    font-size: 28px;
    color: #16a34a;
    font-weight: 900;
}

.discount {
    font-size: 12px;
    font-weight: 800;
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 999px;
}

/* ANIMAÇÃO FLUTUAR */
.floating {
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

/* ==========================
   SESSÃO PERIGO (FUNDO ESCURO)
========================== */

.danger-section {
    padding: 130px 0;
    background: #0b1220;
    text-align: center;
}

.danger-content {
    max-width: 850px;
}

.danger-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
    font-weight: 800;
    font-size: 13px;
}

.danger-section h2 {
    margin-top: 25px;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 900;
    color: #fff;
}

.danger-section h2 span {
    color: #f87171;
}

.danger-section p {
    margin-top: 22px;
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
}

.danger-section p strong {
    color: #fff;
}

/* RESPONSIVO */
@media (max-width: 980px) {

    .menu {
        display: none;
    }

    .produto-grid {
        grid-template-columns: 1fr;
    }

    .produto-text h2 {
        font-size: 38px;
    }

    .danger-section h2 {
        font-size: 34px;
    }
}



/* ==========================
   SESSÃO DARK - PROBLEMA
========================== */

.danger-block {
    padding: 130px 0;
    background: radial-gradient(circle at top, #121c2f 0%, #0b1220 65%);
    position: relative;
    overflow: hidden;
}

/* textura leve no fundo */
.danger-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.25;
    pointer-events: none;
}

.danger-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1050px;
}

/* pill */
.danger-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ff6b6b;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 22px;
}

.danger-pill-icon {
    font-size: 14px;
}

/* título */
.danger-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
}

.danger-title span {
    color: #ff6b6b;
}

/* texto */
.danger-subtitle {
    margin-top: 20px;
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.danger-subtitle strong {
    color: #fff;
}

/* cards */
.danger-cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.danger-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 34px 22px;
    transition: 0.3s;
}

.danger-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
}

/* ícone */
.danger-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(255,255,255,0.06);
}

/* números */
.danger-card-number {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* cores */
.danger-card-number.red {
    color: #ff4d4d;
}

.danger-card-number.orange {
    color: #ff9f43;
}

.danger-card-number.yellow {
    color: #facc15;
}

.danger-card-icon.red {
    color: #ff4d4d;
}

.danger-card-icon.orange {
    color: #ff9f43;
}

.danger-card-icon.yellow {
    color: #facc15;
}

/* texto card */
.danger-card-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* alerta */
.danger-alert {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(239,68,68,0.18), rgba(255,255,255,0.03));
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 20px;
    padding: 28px;
    text-align: left;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* ícone mosquito */
.danger-alert-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
}

/* texto alerta */
.danger-alert-text h3 {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
}

.danger-alert-text p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-top: 6px;
}

.danger-alert-text strong {
    color: #ffffff;
}

.danger-alert-warning {
    margin-top: 12px;
    color: #ff6b6b !important;
    font-weight: 700;
}

/* ==========================
   RESPONSIVO
========================== */

@media (max-width: 1000px) {
    .danger-title {
        font-size: 42px;
    }

    .danger-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .danger-alert {
        flex-direction: column;
        text-align: center;
        padding: 26px;
    }

    .danger-alert-text {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .danger-block {
        padding: 90px 0;
    }

    .danger-title {
        font-size: 32px;
    }

    .danger-subtitle {
        font-size: 14px;
    }

    .danger-card {
        padding: 28px 18px;
    }

    .danger-card-number {
        font-size: 24px;
    }
}




.solution-section {
  padding: 80px 20px;
  background: #ffffff;
}

.container-solution {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eaffef;
  color: #1b7f3a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.solution-badge i {
  font-size: 16px;
  color: #1bb84b;
}

.solution-title {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  color: #0c1b13;
  margin-bottom: 20px;
}

.solution-title span {
  color: #0c1b13;
}

.solution-title .green {
  color: #1bb84b;
}

.solution-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #2f3d35;
  max-width: 520px;
  margin-bottom: 26px;
}

.solution-desc .green {
  color: #1bb84b;
  font-weight: 600;
}

/* BOX */
.solution-box {
  background: #f4f6f7;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  margin-bottom: 28px;
}

.solution-box h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0c1b13;
  margin-bottom: 12px;
}

.solution-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #2f3d35;
  margin-bottom: 10px;
}

.solution-box p:last-child {
  margin-bottom: 0;
}

.solution-box .green {
  color: #1bb84b;
}

/* ANVISA BOX */
.solution-anvisa {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  border: 1px solid #b6f1c7;
  background: #f2fff6;
  padding: 16px;
}

.anvisa-icon {
  width: 42px;
  height: 42px;
  background: #1bb84b;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anvisa-icon i {
  font-size: 18px;
  color: #ffffff;
}

.anvisa-text strong {
  display: block;
  font-size: 14px;
  color: #0c1b13;
  margin-bottom: 2px;
}

.anvisa-text p {
  font-size: 13px;
  color: #3c5548;
  margin: 0;
}

/* RIGHT SIDE */
.solution-product-img {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.08);
}

.solution-product-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* CARDS */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.solution-card {
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eaffef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-icon i {
  font-size: 18px;
  color: #1bb84b;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: #1bb84b;
  margin: 0 0 6px 0;
}

.solution-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0c1b13;
  margin-bottom: 6px;
}

.solution-card p {
  font-size: 13px;
  line-height: 1.4;
  color: #47534d;
  margin: 0;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .container-solution {
    grid-template-columns: 1fr;
  }

  .solution-product-img img {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .solution-cards {
    grid-template-columns: 1fr;
  }

  .solution-box {
    padding: 18px;
  }

  .solution-title {
    font-size: 32px;
  }
}




.social-proof-section {
  padding: 90px 20px;
  background: #ffffff;
}

.social-proof-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff7cc;
  color: #9a6a00;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.social-badge i {
  font-size: 14px;
}

.social-title {
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 900;
  color: #0c1b13;
  margin-bottom: 12px;
}

.social-title span {
  color: #1bb84b;
}

.social-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #0c1b13;
  margin-bottom: 40px;
}

.social-rating i {
  color: #f5b301;
}

.social-rating span {
  margin-left: 10px;
  font-weight: 600;
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 900;
  color: #1bb84b;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 14px;
  color: #4b5a53;
  margin: 0;
}

/* CAROUSEL */
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.carousel-track-container {
  width: 100%;
  max-width: 920px;
  overflow: hidden;
}

/* TRACK suave */
.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

/* CARD RESPONSIVO (3 -> 2 -> 1) */
.testimonial-card {
  flex: 0 0 calc(33.333% - 12px);
  max-width: calc(33.333% - 12px);

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.05);
}

.quote-icon {
  font-size: 28px;
  color: #b6f1c7;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.stars i {
  color: #f5b301;
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2f3d35;
  margin-bottom: 20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eaffef;
  color: #1bb84b;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.testimonial-user strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0c1b13;
}

.testimonial-user span {
  display: block;
  font-size: 12px;
  color: #64746c;
}

/* BUTTONS */
.carousel-btn {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  transform: scale(1.05);
  border-color: #1bb84b;
}

.carousel-btn i {
  font-size: 16px;
  color: #0c1b13;
}

/* FOOTER */
.social-footer p {
  font-size: 14px;
  color: #4b5a53;
  margin-bottom: 10px;
}

.social-footer a {
  font-size: 14px;
  font-weight: 700;
  color: #1bb84b;
  text-decoration: none;
}

.social-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVO: 2 cards */
@media (max-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* RESPONSIVO: 1 card */
@media (max-width: 700px) {
  .carousel-wrapper {
    gap: 10px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



.specs-section {
  padding: 90px 20px;
  background: #ffffff;
}

.specs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* BADGE */
.specs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.specs-badge i {
  font-size: 14px;
}

/* TITULO */
.specs-title {
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 900;
  color: #0c1b13;
  margin-bottom: 12px;
  line-height: 1.1;
}

.specs-title span {
  color: #1bb84b;
}

.specs-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #47534d;
  margin-bottom: 30px;
  max-width: 520px;
}

/* GRID INFO */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.specs-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.specs-card p {
  font-size: 12px;
  color: #64746c;
  margin: 0 0 4px 0;
}

.specs-card strong {
  font-size: 14px;
  font-weight: 800;
  color: #0c1b13;
}

.specs-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eaffef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specs-icon i {
  color: #16a34a;
  font-size: 16px;
}

/* EFICACIA */
.specs-proof {
  background: #f0fdf4;
  border: 1px solid #b6f1c7;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 22px;
  text-align: left;
}

.specs-proof h4 {
  font-size: 14px;
  font-weight: 900;
  color: #0c1b13;
  margin-bottom: 18px;
}

.proof-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.proof-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-left i {
  font-size: 18px;
  color: #16a34a;
}

.proof-left strong {
  font-size: 13px;
  color: #0c1b13;
  display: block;
  font-weight: 800;
}

.proof-left p {
  font-size: 12px;
  color: #64746c;
  margin: 0;
}

.proof-right {
  text-align: right;
}

.proof-right .percent {
  font-size: 20px;
  font-weight: 900;
  color: #16a34a;
  display: block;
}

.proof-right small {
  font-size: 12px;
  color: #64746c;
}

.proof-divider {
  height: 1px;
  background: rgba(22, 163, 74, 0.2);
  margin: 18px 0;
}

/* ANVISA */
.specs-anvisa {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  border: 1px solid #b6f1c7;
  background: #f2fff6;
  padding: 16px;
}

.anvisa-icon {
  width: 42px;
  height: 42px;
  background: #1bb84b;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anvisa-icon i {
  color: #ffffff;
  font-size: 18px;
}

.anvisa-text strong {
  display: block;
  font-size: 14px;
  color: #0c1b13;
  margin-bottom: 2px;
}

.anvisa-text p {
  font-size: 13px;
  color: #3c5548;
  margin: 0;
}

/* RIGHT SIDE */
.specs-img {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.08);
}

.specs-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.apply-title {
  font-size: 18px;
  font-weight: 900;
  color: #0c1b13;
  margin-bottom: 16px;
  text-align: left;
}

.apply-box {
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
  text-align: left;
}

.apply-ok {
  background: #f0fdf4;
  border: 1px solid #b6f1c7;
}

.apply-no {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.apply-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.apply-header strong {
  font-size: 14px;
  font-weight: 900;
  color: #0c1b13;
}

.apply-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-icon.ok {
  background: #16a34a;
}

.apply-icon.no {
  background: #ef4444;
}

.apply-icon i {
  color: white;
  font-size: 16px;
}

.apply-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.apply-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #b6f1c7;
  color: #15803d;
  background: #ffffff;
}

.apply-tags.red span {
  border: 1px solid #fecdd3;
  color: #b91c1c;
}

/* DICA */
.apply-tip {
  border-radius: 12px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  padding: 14px 16px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
  text-align: left;
}

.apply-tip strong {
  font-weight: 900;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .specs-container {
    grid-template-columns: 1fr;
  }

  .specs-img img {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .specs-title {
    font-size: 30px;
  }
}





.compare-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0f1e38, #050b17);
  text-align: center;
  color: white;
}

.compare-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* BADGE */
.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #22c55e;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* TITULO */
.compare-title {
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.2;
}

.compare-title .red {
  color: #ef4444;
}

.compare-title .green {
  color: #22c55e;
}

.compare-subtitle {
  max-width: 720px;
  margin: 0 auto 55px auto;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* TABLE */
.compare-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.45);
  margin-bottom: 70px; /* GAP MAIOR AQUI */
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table th {
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
}

.compare-table td {
  color: rgba(255, 255, 255, 0.75);
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.highlight-green {
  color: #22c55e !important;
}

.highlight-red {
  color: #ef4444 !important;
}

/* PILLS */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.pill.green {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.pill.red {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* CARD ECONOMIA */
.compare-savings {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 35px;
  border-radius: 22px;
  background: linear-gradient(145deg, #22c55e, #16a34a);
  box-shadow: 0px 20px 80px rgba(34, 197, 94, 0.35);
  text-align: center;
}

.compare-savings h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 25px;
  color: white;
}

.savings-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.savings-col small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.old-price {
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: line-through;
}

.new-price {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
}

.savings-arrow i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
}

/* TEXTO ECONOMIA */
.savings-final {
  font-size: 16px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.95);
}

.savings-final span {
  color: #0b2c15;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 900;
}

/* BOTAO */
.compare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  color: white;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.compare-btn:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.35);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .compare-savings {
    padding: 30px 22px;
  }

  .old-price {
    font-size: 24px;
  }

  .new-price {
    font-size: 28px;
  }
}



/* ============================
   MODO DE APLICAÇÃO
============================ */
.modo-aplicacao{
  padding: 90px 0 80px;
  background: #f7faf9;
}

.modo-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f1eaff;
  color: #6a3df0;
  font-weight: 600;
  font-size: 14px;
  margin: 0 auto 18px;
}

.modo-badge i{
  font-size: 15px;
}

.modo-title{
  text-align: center;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 12px;
}

.modo-title span{
  color: #16a34a;
}

.modo-subtitle{
  text-align: center;
  color: #64748b;
  font-size: 16px;
  margin-bottom: 42px;
}

/* cards */
.passos-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 40px;
}

.passo-card{
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 26px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(15, 23, 42, 0.06);
  min-height: 230px; /* AUMENTA O TAMANHO */
}

.passo-card{
  transition: 0.25s ease;
}

.passo-card:hover{
  transform: translateY(-6px);
  border-color: rgba(22, 163, 74, 0.25);
  box-shadow: 0 22px 55px rgba(22, 163, 74, 0.15);
}


.passo-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.passo-num{
  font-size: 42px;
  font-weight: 900;
  color: rgba(22, 163, 74, 0.22); /* mais visível */
  line-height: 1;
}

.passo-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.18); /* verde mais forte */
  border: 1px solid rgba(22, 163, 74, 0.22);
  display: grid;
  place-items: center;
  color: #16a34a;
}


.passo-meta{
  margin-bottom: 12px;
}

.passo-time{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
}

.passo-card h3{
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.passo-card p{
  font-size: 13.5px;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* conectores */
.passo-connector{
  width: 70px;
  height: 2px;
  background: rgba(22, 163, 74, 0.25);
  border-radius: 99px;
  margin-top: 60px;
}

/* resumo verde */
.modo-resumo{
  max-width: 820px;
  margin: 0 auto 26px;
  background: linear-gradient(180deg, #16a34a, #0f9a43);
  border-radius: 18px;
  padding: 26px 26px 18px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.25);
}

.modo-resumo{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.resumo-item{
  text-align: center;
}

.resumo-item span{
  display: block;
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 6px;
}

.resumo-item strong{
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.resumo-divider{
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.25);
}

.resumo-line{
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-top: 10px;
}

.resumo-foot{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.95;
  margin-top: 12px;
}

.resumo-foot strong{
  font-weight: 900;
}

/* alerta */
.modo-alerta{
  max-width: 820px;
  margin: 0 auto;
  background: #fff7db;
  border: 1px solid #f2d27c;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.alerta-icone{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.18);
  color: #f59e0b;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.alerta-texto strong{
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: #92400e;
  margin-bottom: 4px;
}

.alerta-texto p{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #92400e;
}

/* RESPONSIVO */
@media (max-width: 1100px){
  .passos-grid{
    grid-template-columns: 1fr;
  }

  .passo-connector{
    display: none;
  }

  .modo-resumo{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .resumo-divider{
    display: none;
  }

  .resumo-item strong{
    font-size: 30px;
  }
}






/* ============================
   OFERTA KIT (SESSÃO GRANDE)
============================ */
.oferta-kit{
  padding: 90px 0 90px;
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.12), transparent 55%),
              linear-gradient(180deg, #0b1220 0%, #07101d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oferta-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ff5b5b;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

.oferta-title{
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}

.oferta-title span{
  color: #22c55e;
}

.oferta-subtitle{
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 44px;
}

.oferta-subtitle strong{
  color: #fff;
  font-weight: 900;
}

/* CARD PRINCIPAL */
.oferta-card{
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

/* COLUNA PRODUTO */
.produto-box{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 22px;
}

.produto-img{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.produto-img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.produto-preco{
  padding-top: 18px;
  text-align: center;
}

.preco-antigo{
  display: block;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 6px;
}

.preco-atual{
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: #22c55e;
  margin-bottom: 6px;
}

.preco-parcelado{
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* COLUNA BONUS */
.oferta-bonus{
  text-align: left;
}

.bonus-title{
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-title i{
  color: #22c55e;
}

.bonus-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.bonus-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.bonus-left{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
}

.bonus-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: #22c55e;
  display: grid;
  place-items: center;
}

.bonus-price{
  color: #22c55e;
  font-weight: 900;
  font-size: 14px;
}

/* TOTAL */
.bonus-total{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 18px;
}

.bonus-total strong{
  color: #22c55e;
  font-weight: 900;
}

/* GRID DO CONTADOR + ESTOQUE */
.oferta-bottom-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.info-box{
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.info-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
}

.info-danger{
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.08);
}

.info-danger .info-title i{
  color: #ff5b5b;
}

.info-warning{
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.10);
}

.info-warning .info-title i{
  color: #fbbf24;
}

/* CONTADOR */
.contador{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tempo{
  width: 62px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.tempo strong{
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.tempo span{
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.sep{
  color: rgba(255,255,255,0.35);
  font-weight: 900;
}

/* ESTOQUE */
.estoque{
  text-align: center;
}

.estoque strong{
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.estoque span{
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* BOTÕES */
.oferta-buttons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-ml,
.btn-whats{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-ml{
  background: #facc15;
  color: #0b1220;
}

.btn-ml:hover{
  transform: translateY(-3px);
  filter: brightness(0.95);
}

.btn-whats{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.btn-whats:hover{
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.35);
}

/* GARANTIA */
.garantia-box{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.garantia-ico{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.20);
  display: grid;
  place-items: center;
  color: #22c55e;
  font-size: 22px;
  flex: 0 0 auto;
}

.garantia-texto h4{
  margin: 0 0 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.garantia-texto p{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.6;
}

.garantia-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(34, 197, 94, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.garantia-tags span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .oferta-card{
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .produto-img img{
    height: 280px;
  }

  .oferta-bottom-grid{
    grid-template-columns: 1fr;
  }

  .oferta-buttons{
    grid-template-columns: 1fr;
  }

  .oferta-bonus{
    text-align: center;
  }

  .bonus-title{
    justify-content: center;
  }

  .bonus-item{
    text-align: left;
  }

  .garantia-box{
    flex-direction: column;
    text-align: center;
  }
}





/* ============================
   CTA FINAL DENTRO DA OFERTA
============================ */
.cta-final-inside{
  padding-top: 70px;
  text-align: center;
}

.cta-final-inside .cta-mini{
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.cta-final-inside .cta-title{
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  font-weight: 900;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 18px;
}

.cta-final-inside .cta-title span{
  color: #22c55e;
}

.cta-final-inside .cta-sub{
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}

.cta-final-inside .cta-sub strong{
  color: #fff;
  font-weight: 900;
}




/* ============================
   FAQ
============================ */
.faq{
  padding: 90px 0 90px;
  background: #ffffff;
}

.faq-title{
  text-align: center;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.faq-title span{
  color: #16a34a;
}

.faq-subtitle{
  text-align: center;
  color: #64748b;
  font-size: 16px;
  margin-bottom: 44px;
}

.faq-list{
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* cada item */
.faq-item{
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  font-size: 14px;
  color: #0f172a;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary i{
  color: rgba(15, 23, 42, 0.45);
  transition: 0.25s ease;
}

/* conteúdo */
.faq-content{
  padding: 0 18px 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

/* estado aberto */
.faq-item[open]{
  border-color: rgba(22, 163, 74, 0.22);
  background: #ffffff;
}

.faq-item[open] summary{
  color: #16a34a;
}

.faq-item[open] summary i{
  transform: rotate(180deg);
  color: #16a34a;
}

/* footer */
.faq-footer{
  margin-top: 40px;
  text-align: center;
  color: #64748b;
}

.faq-footer p{
  margin-bottom: 10px;
}

.faq-whats{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  color: #16a34a;
}

.faq-whats:hover{
  text-decoration: underline;
}





/* ============================
   FOOTER
============================ */
.footer{
  background: linear-gradient(180deg, #0b1220 0%, #07101d 100%);
  padding: 70px 0 26px;
  color: rgba(255,255,255,0.75);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* BRAND */
.footer-logo{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo-icon{
  width: 44px;
  height: 44px;
  background-image: url(./img/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  display: grid;
  place-items: center;
  font-size: 18px;
}

.footer-logo-text strong{
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

.footer-logo-text span{
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.footer-desc{
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
  margin-bottom: 16px;
}

/* SOCIAL */
.footer-social{
  display: flex;
  gap: 12px;
}

.footer-social a{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  transition: 0.25s ease;
  text-decoration: none;
}

.footer-social a:hover{
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.35);
  color: #22c55e;
}

/* TITULOS */
.footer-links h4,
.footer-contato h4{
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

/* LINKS */
.footer-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a{
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s ease;
}

.footer-links a:hover{
  color: #22c55e;
}

/* CONTATO */
.footer-contato{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  transition: 0.2s ease;
}

.footer-item i{
  width: 18px;
  color: rgba(255,255,255,0.45);
}

.footer-item:hover{
  color: #22c55e;
}

.footer-item:hover i{
  color: #22c55e;
}

/* LINHA */
.footer-line{
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  margin: 34px 0 20px;
}

/* BOTTOM */
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links{
  display: flex;
  gap: 18px;
}

.footer-bottom-links a{
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-bottom-links a:hover{
  color: #22c55e;
}

/* DISCLAIMER FINAL */
.footer-disclaimer{
  margin-top: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.40);
  text-align: center;
}

/* RESPONSIVO */
@media (max-width: 950px){
  .footer-grid{
    grid-template-columns: 1fr;
  }

  .footer-desc{
    max-width: 100%;
  }

  .footer-bottom{
    justify-content: center;
    text-align: center;
  }
}





/* HAMBURGER */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #111827;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* HEADER MENU */
.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-header .btn-buy {
    padding: 10px 16px;
    font-size: 13px;
}

.close-menu {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* LINKS */
.mobile-nav {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

/* ACTIONS */
.mobile-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* RESPONSIVO */
@media (max-width: 980px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .header-actions{
      display: none;
    }
}





/*responsivo mobile*/

/* RESPONSIVO */
@media (max-width: 980px) {

    .produto-text{
      text-align: center;
    }

    .produto-buttons{
      align-items: center;
      justify-content: center;
    }

    .produto-footer{
      margin-top: 35px;
      align-items: center;
      justify-content: center;
    }

    .produto-stats{
      align-items: center;
      justify-content: center;
    }


    .solution-left{
      text-align: center;
    }


    .specs-left{
      text-align: center;
      justify-content: center;
    }


    .hero-produto-img {
      width: 100%;
      height: 292px;
      border-radius: 18px;
      background-image: url("./img/img2.jpg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }
}









/* ==============================
   HOVERS PREMIUM – BOTÕES
   ============================== */

/* Base recomendada (opcional) */

/* 2️⃣ LIFT – sobe levemente + sombra */
.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* 3️⃣ SLIDE SHINE – brilho passando */
.hover-shine {
    position: relative;
    overflow: hidden;
}
.hover-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition: left 0.6s ease;
}
.hover-shine:hover::after {
    left: 120%;
}



/* ==============================
   ANIMAÇÕES ON SCROLL
   ============================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* VARIAÇÕES */

/* subir mais forte */
.reveal-up {
    transform: translateY(50px);
}

/* da esquerda */
.reveal-left {
    transform: translateX(-40px);
}

/* da direita */
.reveal-right {
    transform: translateX(40px);
}

/* zoom leve */
.reveal-zoom {
    transform: scale(0.95);
}

/* delay (opcional) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
