:root {
  --turquesa-doce: #28c7cc;
  --rosa-bombom: #f79cb1;
  --creme-baunilha: #f8f0e3;
  --chocolate-brigadeiro: #4b2418;
  --dourado-coroa: #e7aa3c;
  --verde-folha: #2e847a;
  --coral-delicado: #ff7c78;
  --branco-doce: #fffaf2;
  --sombra-suave: 0 18px 45px rgba(75, 36, 24, 0.14);
  --sombra-card: 0 12px 28px rgba(75, 36, 24, 0.1);
  --raio: 24px;
  --container: 1160px;
  --font-script: "Lobster Two", cursive;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-accent: "Nunito Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--chocolate-brigadeiro);
  background:
    radial-gradient(circle at 10% 8%, rgba(247, 156, 177, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(40, 199, 204, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--creme-baunilha), #fff7ea 48%, #fffaf2);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--dourado-coroa);
  outline-offset: 4px;
}

p {
  margin: 0 0 1rem;
}

strong {
  font-weight: 800;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: #fff;
  background: var(--chocolate-brigadeiro);
  border-radius: 999px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  padding: 0;
  background: rgba(248, 240, 227, 0.94);
  border-bottom: 1px solid rgba(255, 124, 120, 0.24);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(75, 36, 24, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 18px 24px;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.brand-link:hover {
  transform: translateY(-2px) rotate(-2deg);
}

.brand-link img {
  width: 92px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.brand-link picture,
.logo-bloom picture,
.footer-brand picture,
.product-image-wrap picture,
.about-photo-wrap picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  font-family: var(--font-accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-menu > a:not(.btn) {
  padding: 0.75rem 0.72rem;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-menu > a:not(.btn):hover {
  color: var(--verde-folha);
  background: rgba(40, 199, 204, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid rgba(75, 36, 24, 0.18);
  background: var(--branco-doce);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--chocolate-brigadeiro);
  border-radius: 20px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--sombra-card);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(75, 36, 24, 0.16);
}

.btn-primary {
  color: var(--chocolate-brigadeiro);
  background: linear-gradient(135deg, var(--turquesa-doce), #7fe3dc);
  border-color: rgba(46, 132, 122, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-delicado), var(--rosa-bombom));
}

.btn-secondary {
  color: var(--chocolate-brigadeiro);
  background: rgba(255, 250, 242, 0.92);
  border-color: rgba(255, 124, 120, 0.74);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--turquesa-doce);
}

.btn-small {
  min-height: 44px;
  padding: 0.7rem 1rem;
  margin-left: 0.45rem;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 1rem;
  min-height: min(82vh, 880px);
  background:
    linear-gradient(135deg, rgba(248, 240, 227, 0.98), rgba(255, 250, 242, 0.82)),
    radial-gradient(circle at 78% 42%, rgba(40, 199, 204, 0.2), transparent 22rem);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 1.1rem;
  border: 2px solid rgba(255, 124, 120, 0.42);
  border-radius: 34px;
  mask-image: linear-gradient(90deg, transparent 0 5%, #000 15% 85%, transparent 95% 100%);
}

.hero::after {
  right: -8rem;
  bottom: -11rem;
  width: 33rem;
  height: 33rem;
  background: rgba(247, 156, 177, 0.32);
  border-radius: 42% 58% 55% 45%;
}

.hero-inner,
.section-shell,
.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  padding: 90px 24px 110px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  color: var(--verde-folha);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--coral-delicado);
  transform: rotate(45deg);
  border-radius: 2px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--chocolate-brigadeiro);
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-family: var(--font-script);
  font-size: 4.2rem;
  font-weight: 700;
}

h2 {
  margin-bottom: 1rem;
  font-family: var(--font-script);
  font-size: 3rem;
  font-weight: 700;
}

h3 {
  font-family: var(--font-accent);
  font-size: 1.15rem;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(75, 36, 24, 0.86);
  font-size: 1.16rem;
}

.hero-copy,
.hero-visual,
.two-column > *,
.two-column-reverse > * {
  min-width: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.45rem 0 1.65rem;
}

.hero-badges span {
  padding: 0.42rem 0.75rem;
  color: var(--chocolate-brigadeiro);
  background: rgba(255, 250, 242, 0.78);
  border: 1px dashed rgba(255, 124, 120, 0.8);
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.logo-bloom {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--turquesa-doce);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(248, 240, 227, 0.95), rgba(247, 156, 177, 0.28)),
    linear-gradient(135deg, rgba(40, 199, 204, 0.16), rgba(255, 124, 120, 0.14));
  box-shadow: var(--sombra-suave);
}

.logo-bloom::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 2px dashed rgba(255, 124, 120, 0.55);
  border-radius: 50%;
}

.logo-bloom img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: auto;
  transform: translateY(-4px);
  filter: drop-shadow(0 16px 16px rgba(75, 36, 24, 0.16));
}

.mini-seal {
  position: absolute;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  padding: 1rem;
  color: #fff;
  background: var(--coral-delicado);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: var(--sombra-card);
  font-family: var(--font-script);
  font-size: 1.35rem;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-8deg);
}

.seal-one {
  top: 6%;
  left: -5%;
  background: var(--verde-folha);
}

.seal-two {
  right: -6%;
  bottom: 13%;
  background: var(--dourado-coroa);
}

.floating-decor {
  position: absolute;
  pointer-events: none;
}

.decor-heart {
  width: 26px;
  height: 26px;
  background: var(--coral-delicado);
  transform: rotate(45deg);
  border-radius: 7px 7px 3px 7px;
  opacity: 0.78;
}

.decor-heart::before,
.decor-heart::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background: inherit;
  border-radius: 50%;
}

.decor-heart::before {
  left: -13px;
}

.decor-heart::after {
  top: -13px;
}

.decor-heart-one {
  top: 8.5rem;
  left: 5%;
}

.decor-heart-two {
  right: 9%;
  top: 10rem;
  width: 18px;
  height: 18px;
  background: var(--turquesa-doce);
}

.decor-heart-two::before,
.decor-heart-two::after {
  width: 18px;
  height: 18px;
}

.decor-heart-two::before {
  left: -9px;
}

.decor-heart-two::after {
  top: -9px;
}

.decor-leaf {
  width: 94px;
  height: 94px;
  right: 16%;
  top: 8rem;
  border-bottom: 4px solid var(--verde-folha);
  border-radius: 50%;
  transform: rotate(-28deg);
  opacity: 0.62;
}

.decor-leaf::before,
.decor-leaf::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 40px;
  background: var(--verde-folha);
  border-radius: 100% 0 100% 0;
}

.decor-leaf::before {
  right: 18px;
  bottom: 18px;
  transform: rotate(-20deg);
}

.decor-leaf::after {
  right: 45px;
  bottom: 36px;
  transform: rotate(-6deg);
}

.section {
  position: relative;
  padding: 5rem 1rem;
}

.section:nth-of-type(odd) {
  background: rgba(255, 250, 242, 0.58);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading p {
  color: rgba(75, 36, 24, 0.78);
  font-size: 1.05rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 3rem;
}

.two-column-reverse {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.about-brand::before,
.products::before,
.service::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(86%, 820px);
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0 10px, rgba(255, 124, 120, 0.7) 10px 16px);
  transform: translateX(-50%);
}

.quote-ribbon {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--coral-delicado), var(--rosa-bombom));
  border: 4px solid #fff;
  border-radius: var(--raio);
  box-shadow: var(--sombra-suave);
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1.05;
  text-align: center;
}

.quote-ribbon::before,
.quote-ribbon::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 28px;
  height: 56px;
  background: var(--turquesa-doce);
  transform: translateY(-50%);
}

.quote-ribbon::before {
  left: -18px;
  clip-path: polygon(0 0, 100% 14%, 100% 86%, 0 100%, 32% 50%);
}

.quote-ribbon::after {
  right: -18px;
  clip-path: polygon(100% 0, 0 14%, 0 86%, 100% 100%, 68% 50%);
}

.quote-ribbon strong {
  color: var(--chocolate-brigadeiro);
  font-size: 2.35rem;
}

.dai-story {
  background:
    radial-gradient(circle at 8% 50%, rgba(40, 199, 204, 0.14), transparent 22rem),
    rgba(255, 250, 242, 0.7);
}

.about-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--creme-baunilha);
  border: 2px solid rgba(255, 124, 120, 0.45);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(75, 36, 24, 0.12);
}

.about-photo-wrap::before {
  position: absolute;
  inset: 0.85rem;
  z-index: 1;
  content: "";
  pointer-events: none;
  border: 1px dashed rgba(255, 250, 242, 0.72);
  border-radius: 22px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-grid,
.flavor-grid,
.steps-grid,
.feedback-grid {
  display: grid;
  gap: 1.1rem;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.flavor-card,
.step-card,
.feedback-card,
.info-panel {
  position: relative;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(255, 124, 120, 0.28);
  border-radius: var(--raio);
  box-shadow: var(--sombra-card);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  overflow: hidden;
}

.product-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(40, 199, 204, 0.08), transparent 42%);
}

.product-card.featured {
  border-color: rgba(40, 199, 204, 0.56);
}

.product-badge {
  align-self: flex-start;
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
  padding: 0.28rem 0.6rem;
  color: var(--chocolate-brigadeiro);
  background: var(--dourado-coroa);
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.73rem;
  font-weight: 700;
}

.product-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--creme-baunilha);
  border: 1px solid rgba(255, 124, 120, 0.35);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(75, 36, 24, 0.1);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card h3,
.product-card p,
.product-card .btn {
  position: relative;
  z-index: 1;
}

.product-card p {
  flex: 1;
  margin-top: 0.75rem;
  color: rgba(75, 36, 24, 0.78);
  font-size: 0.95rem;
}

.btn-card {
  width: 100%;
  margin-top: auto;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  color: var(--chocolate-brigadeiro);
  background: #fff;
  border-color: rgba(40, 199, 204, 0.45);
  box-shadow: none;
}

.btn-card:hover {
  background: var(--turquesa-doce);
}

.flavors {
  background:
    radial-gradient(circle at 84% 22%, rgba(247, 156, 177, 0.18), transparent 20rem),
    rgba(248, 240, 227, 0.74);
}

.flavor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flavor-card {
  padding: 1.2rem;
  border-style: dashed;
}

.flavor-card h3 {
  margin-bottom: 0.9rem;
  color: var(--verde-folha);
}

.flavor-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flavor-card li {
  padding: 0.34rem 0.58rem;
  background: rgba(247, 156, 177, 0.16);
  border: 1px solid rgba(255, 124, 120, 0.22);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.notice {
  max-width: 680px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  background: rgba(40, 199, 204, 0.12);
  border: 1px dashed rgba(46, 132, 122, 0.45);
  border-radius: 18px;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  text-align: center;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.step-card {
  padding: 1.25rem;
}

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 0.95rem;
  color: var(--chocolate-brigadeiro);
  background: var(--dourado-coroa);
  border: 3px solid #fff;
  border-radius: 50%;
  place-items: center;
  font-family: var(--font-accent);
  font-weight: 800;
}

.step-card p {
  margin: 0.65rem 0 0;
  color: rgba(75, 36, 24, 0.76);
  font-size: 0.95rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.info-panel {
  padding: 1.4rem;
  border-color: rgba(40, 199, 204, 0.48);
}

.info-panel ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.2rem;
  list-style: none;
}

.info-panel li {
  display: grid;
  gap: 0.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(255, 124, 120, 0.44);
}

.info-panel strong {
  color: var(--verde-folha);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.info-panel .btn {
  width: 100%;
}

.info-panel a,
.footer-info a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.feedback-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feedback-card {
  min-height: 180px;
  padding: 1.35rem;
}

.feedback-card::before {
  content: "”";
  position: absolute;
  right: 1.2rem;
  bottom: -1rem;
  color: rgba(247, 156, 177, 0.28);
  font-family: var(--font-script);
  font-size: 7rem;
  line-height: 1;
}

.feedback-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.3rem 0.62rem;
  color: var(--verde-folha);
  background: rgba(40, 199, 204, 0.12);
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feedback-card p {
  position: relative;
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.65rem;
  line-height: 1.2;
}

.final-cta {
  padding: 4.8rem 1rem;
  background:
    linear-gradient(135deg, rgba(255, 124, 120, 0.94), rgba(247, 156, 177, 0.88)),
    var(--coral-delicado);
}

.final-cta-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 2.4rem 1.6rem;
  color: var(--chocolate-brigadeiro);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.48), transparent 14rem),
    rgba(255, 250, 242, 0.9);
  border: 2px dashed rgba(75, 36, 24, 0.24);
  border-radius: 30px;
  box-shadow: var(--sombra-suave);
  text-align: center;
}

.final-cta h2 {
  font-size: 3.15rem;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 1.4rem;
  font-size: 1.08rem;
}

.site-footer {
  padding: 2.8rem 1rem 1.4rem;
  color: #fffaf2;
  background: var(--chocolate-brigadeiro);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  background: var(--creme-baunilha);
  border: 2px solid rgba(255, 250, 242, 0.35);
  border-radius: 50%;
}

.footer-brand picture {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-script);
  font-size: 1.85rem;
  line-height: 1;
}

.footer-brand p,
.footer-info p {
  margin: 0;
  color: rgba(255, 250, 242, 0.82);
}

.footer-info {
  display: grid;
  gap: 0.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: flex-start;
}

.footer-links a {
  padding: 0.32rem 0.6rem;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.9);
  font-family: var(--font-accent);
  font-size: 0.78rem;
}

.footer-links a:hover,
.footer-credit a:hover {
  color: var(--turquesa-doce);
}

.footer-credit {
  width: min(100%, var(--container));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  text-align: center;
}

.footer-credit a {
  color: rgba(255, 250, 242, 0.78);
  font-family: var(--font-accent);
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #25d366;
  border: 3px solid rgba(255, 250, 242, 0.92);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(75, 36, 24, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(75, 36, 24, 0.26);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    inset: 96px 1rem auto;
    display: grid;
    gap: 0.2rem;
    max-height: calc(100vh - 116px);
    padding: 1rem;
    overflow: auto;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid rgba(255, 124, 120, 0.28);
    border-radius: 22px;
    box-shadow: var(--sombra-suave);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu > a:not(.btn),
  .nav-menu .btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
    text-align: center;
  }

  .hero-copy p,
  .hero-actions {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-visual {
    min-height: 400px;
  }

  .product-grid,
  .flavor-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .hero-copy {
    max-width: none;
    text-align: left;
  }

  .hero-copy p,
  .hero-actions {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }

  .hero-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .nav-shell,
  .section-shell,
  .footer-inner {
    width: 100%;
    max-width: 100%;
  }

  .nav-shell {
    padding: 14px 18px;
  }

  .brand-link {
    width: 68px;
    height: 68px;
  }

  .brand-link img {
    width: 76px;
  }

  .nav-menu {
    top: 84px;
  }

  .hero {
    min-height: auto;
    padding: 0 1rem;
  }

  .hero::before {
    inset: 0.65rem;
    border-radius: 24px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2,
  .final-cta h2 {
    font-size: 2.45rem;
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .hero-actions .btn,
  .center-action .btn,
  .final-cta .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: 390px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 70px 22px 90px;
  }

  .hero-visual {
    min-height: auto;
  }

  .logo-bloom {
    width: min(330px, 88vw);
    margin-top: 32px;
  }

  .seal-one {
    left: 0;
    top: 2%;
  }

  .seal-two {
    right: 0;
    bottom: 8%;
  }

  .two-column,
  .two-column-reverse,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 1rem;
  }

  .about-photo-wrap {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 0;
  }

  h1 {
    font-size: 1.9rem;
    max-width: 13ch;
    margin-right: auto;
    margin-left: auto;
  }

  h2,
  .final-cta h2 {
    font-size: 2.1rem;
  }

  .hero-badges {
    width: 100%;
    gap: 0.45rem;
  }

  .hero-badges span {
    font-size: 0.76rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .logo-bloom {
    width: min(330px, 88vw);
  }

  .mini-seal {
    width: 82px;
    height: 82px;
    font-size: 1.05rem;
    border-width: 4px;
  }

  .product-grid,
  .flavor-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .quote-ribbon {
    padding: 1.6rem 1.2rem;
    font-size: 1.7rem;
  }

  .quote-ribbon strong {
    font-size: 2rem;
  }

  .final-cta-inner {
    padding: 2rem 1rem;
    border-radius: 22px;
  }

  .footer-brand {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 1.66rem;
    max-width: 12.5ch;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
