/* ==========================
   BASE GERAL
========================== */
:root {
  --green: #00a88f;
  --green-dark: #00806b;
  --yellow: #f0c419;
  --soft: #f7f7f7;
  --dark: #1a1a1a;
  --muted: #6b6b6b;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--dark);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ==========================
   NAVBAR
========================== */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-toggler {
  border: none;
}

.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo-navbar {
  height: 100px;
}

.brand-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-left: 0.75rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.btn-nav {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  box-shadow: 0 12px 24px rgba(0, 168, 143, 0.24);
}

.btn-nav:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ============================
   HERO SLIDER
============================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 102vh;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

/* Texto */
.hero-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 90%;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* CTA Button */
.btn-cta {
    margin-top: 15px;
    display: inline-block;
    padding: 12px 26px;
    background: #28a745;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #1f7c33;
    transform: scale(1.03);
}

/* Nav Buttons */
.hero-slider .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background: rgba(255,255,255,0.7);
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
}

.hero-slider .nav-btn:hover {
    background: rgba(255,255,255,0.95);
}

.hero-slider .prev {
    left: 20px;
}

.hero-slider .next {
    right: 20px;
}

@media (max-width: 768px) {
    .hero-text h1 {font-size: 2rem;}
    .hero-text p {font-size: 1rem;}
}

/* ==========================
   SEÇÕES GERAIS
========================== */
.section-padding {
  padding: 80px 0;
}

.bg-soft {
  background: var(--soft);
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  max-width: 520px;
  margin: 0.35rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  margin-bottom: 0.5rem;
}

/* Cards e elementos */
.card-soft {
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  background: var(--white);
  padding: 1.8rem;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin-top: 1.2rem;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.list-check li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--green);
  position: absolute;
  left: 0;
  top: 0.22rem;
}

.pill {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 168, 143, 0.06);
  font-size: 0.85rem;
  color: var(--green-dark);
}

.pill i {
  margin-right: 0.5rem;
}

/* ==========================
   BENEFÍCIOS
========================== */
.benefit-card {
  border-radius: 22px;
  background: var(--white);
  padding: 1.5rem 1.3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.benefit-card i {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.8rem;
}

.benefit-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ==========================
   SABORES
========================== */
.flavor-card {
  border-radius: 22px;
  background: var(--white);
  padding: 1.5rem 1.2rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.03);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tag-flavor {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(240, 196, 25, 0.14);
  color: #c29203;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flavor-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.flavor-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ==========================
   COMO USAR
========================== */
.use-card {
  border-radius: 22px;
  background: var(--white);
  padding: 1.5rem 1.3rem;
  text-align: left;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.use-card i {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 0.7rem;
}

.use-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.use-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ==========================
   CONTATO
========================== */
.list-contact {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.list-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.list-contact i {
  width: 26px;
  font-size: 1.1rem;
  color: var(--green);
}

/* Formularios */
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.form-control,
textarea.form-control {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
}

.form-control:focus,
textarea.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(0, 168, 143, 0.15);
}

/* ==========================
   FOOTER
========================== */
.footer {
  padding: 18px 0;
  background: #0f211f;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--yellow);
}

.footer .divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.22);
}

.footer .dev strong {
  color: var(--yellow);
}

/* ==========================
   WHATSAPP FLOAT
========================== */
.whats-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
  z-index: 999;
}

.whats-floating:hover {
  background: #1ebe5d;
  color: #ffffff;
}

/* ==========================
   RESPONSIVIDADE
========================== */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 96px;
  }

  .hero-card {
    margin-top: 1rem;
  }

  .navbar .nav-link {
    margin-left: 0;
    padding: 0.4rem 0;
  }

  .btn-nav {
    margin-top: 0.8rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-bottom: 70px;
  }

  .hero-card {
    padding: 1.6rem;
  }

  .section-padding {
    padding: 60px 0;
  }
}


/* ==========================
   v1.2 – OTIMIZAÇÃO MOBILE & DESKTOP
   Ajustes focados em leitura, espaçamento e leveza em telas pequenas,
   mantendo o layout premium no desktop.
========================== */

/* Ajuste geral de tipografia para telas médias */
@media (max-width: 991.98px) {
  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
    max-width: 100%;
  }

  .hero-card {
    padding: 1.9rem 1.4rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  }

  .section-padding {
    padding: 64px 0;
  }

  .benefit-card,
  .flavor-card,
  .use-card,
  .card-soft {
    padding: 1.35rem 1.15rem;
  }

  .footer {
    text-align: center;
  }

  .footer .container {
    gap: 8px;
  }
}

/* Mobile compacto & focado em ação (smartphones até 575px) */
@media (max-width: 575.98px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 54px;
  }

  .badge-hero {
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .hero-actions .btn + .btn {
    margin-left: 0;
  }

  .hero-tags span {
    display: inline-flex;
    font-size: 0.78rem;
  }

  .hero-card {
    margin-top: 1.4rem;
    padding: 1.6rem 1.25rem;
    border-radius: 20px;
  }

  .section-padding {
    padding: 54px 0;
  }

  h2 {
    font-size: 1.65rem;
  }

  .benefit-card,
  .flavor-card,
  .use-card,
  .card-soft {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  }

  .list-contact li {
    font-size: 0.9rem;
  }

  .whats-floating {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
    font-size: 1.4rem;
  }
}

/* Extra pequeno – telas muito estreitas */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.86rem;
  }

  .navbar .navbar-brand .brand-text {
    display: none;
  }
}
