﻿:root {
  --bg: #fff8ed;
  --ink: #201122;
  --paper: #fffefc;
  --line: #f2d2ae;
  --hot: #ff6b35;
  --sun: #ffbf2f;
  --mint: #1f9d8f;
  --berry: #e63946;
  --shadow: 0 18px 35px rgba(40, 18, 18, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, #ffe0a8 0%, transparent 28%),
    radial-gradient(circle at 88% 18%, #ffd7cd 0%, transparent 30%),
    linear-gradient(#fff8ed, #fff3e4);
}

#confettiCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.75s ease;
}

a {
  color: inherit;
}

.shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #ff7a2f 0%, #ff4f5e 52%, #eb3b5a 100%);
  color: #fff;
  padding-bottom: 2rem;
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 46% 54% 70% 30% / 49% 55% 45% 51%;
  top: -140px;
  right: -120px;
  pointer-events: none;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  position: relative;
  z-index: 2;
}

.brand {
  text-decoration: none;
  font-family: "Bungee", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 1.1rem;
}

.nav-links a,
.nav-links .nav-scroll-btn {
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.btn {
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  background: linear-gradient(160deg, var(--sun), #ffab08);
  color: #3f2300;
  box-shadow: 0 8px 20px rgba(107, 54, 0, 0.2);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn:disabled {
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.12) brightness(0.96);
  box-shadow: none;
  opacity: 0.72;
}

.btn-nav {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
}

.btn-soft {
  background: #ffe7cd;
  color: #543009;
  box-shadow: none;
}

.btn-email {
  background: linear-gradient(160deg, #1f9d8f, #168a7d);
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 138, 125, 0.24);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 2rem 0 1rem;
}

.chip {
  display: inline-flex;
  margin: 0;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

h1 {
  font-family: "Bungee", sans-serif;
  font-size: clamp(1.95rem, 4.1vw, 3.8rem);
  line-height: 1.04;
  margin: 0.8rem 0;
  letter-spacing: 0.01em;
}

.hero-content p {
  margin: 0;
  font-size: 1.06rem;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-stats {
  display: grid;
  gap: 0.7rem;
}

.hero-stats article {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 1rem;
  padding: 0.85rem;
  backdrop-filter: blur(8px);
}

.hero-stats h3 {
  margin: 0;
  font-family: "Bungee", sans-serif;
  font-size: 1.2rem;
}

.hero-stats p {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
}

.section {
  padding: 3.4rem 0 1rem;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

h2 {
  margin: 0;
  font-family: "Bungee", sans-serif;
  font-size: clamp(1.5rem, 3.3vw, 2.3rem);
  letter-spacing: 0.02em;
}

.text-link {
  font-weight: 800;
  color: var(--berry);
  text-underline-offset: 3px;
}

.inline-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem;
}

.work-card {
  min-height: 170px;
  border-radius: 1rem;
  padding: 0.8rem;
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.work-card span {
  position: relative;
  z-index: 1;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 0 9px, transparent 9px 19px);
}

.tone-1 { grid-column: span 4; background: linear-gradient(130deg, #ff6b35, #e63946); }
.tone-2 { grid-column: span 4; background: linear-gradient(130deg, #1f9d8f, #14746f); }
.tone-3 { grid-column: span 4; background: linear-gradient(130deg, #ff9f1c, #ff6f59); }
.tone-4 { grid-column: span 5; background: linear-gradient(120deg, #355070, #6d597a); }
.tone-5 { grid-column: span 3; background: linear-gradient(120deg, #2a9d8f, #264653); }
.tone-6 { grid-column: span 4; background: linear-gradient(120deg, #ef476f, #ff7f51); }

.note {
  margin-top: 0.85rem;
  color: #694224;
  font-size: 0.94rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.65rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.product-card p {
  margin: 0;
  color: #5f4f3f;
}

.product-card strong {
  color: var(--berry);
  font-size: 1.15rem;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust article {
  background: linear-gradient(170deg, #fff7eb, #ffe7c7);
  border: 1px solid #ffcf9a;
  border-radius: 1rem;
  padding: 1rem;
}

.trust h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.trust p {
  margin: 0;
}

.ecommerce {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 1rem;
}

.panel {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

label,
fieldset {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dec6b1;
  border-radius: 0.7rem;
  padding: 0.62rem;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #ff8b3d;
  box-shadow: 0 0 0 3px rgba(255, 139, 61, 0.18);
  outline: none;
}

.field-error {
  color: #c1121f;
  font-size: 0.82rem;
  min-height: 1em;
  display: block;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.field-error.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-error {
  color: #c1121f;
  margin: 0;
  min-height: 1em;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.form-error.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.input-error {
  border-color: #c1121f !important;
  box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.14) !important;
  background: #fff9fa;
}

input[type="checkbox"].input-error {
  outline: none;
}

.preview {
  min-height: 190px;
  border-radius: 0.9rem;
  border: 2px dashed #ffc888;
  background: #fffaf2;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #875424;
  text-align: center;
  padding: 0.7rem;
}

.preview img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 0.6rem;
}

.addons {
  margin: 0;
  border: 1px dashed #f7b56f;
  border-radius: 0.8rem;
  padding: 0.7rem;
}

.addons label {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 600;
}

.addons input {
  width: auto;
}

.consent-card {
  background: linear-gradient(180deg, #fffaf2, #fff3e4);
  border: 1px solid #f2c994;
  border-radius: 1rem;
  padding: 0.9rem;
}

.consent-card legend {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: #6e3f12;
}

.consent-option {
  grid-template-columns: auto auto 1fr !important;
  align-items: start !important;
  gap: 0.55rem !important;
  font-weight: 700 !important;
  line-height: 1.35;
  cursor: pointer;
}

.consent-option a {
  color: #b9381f;
  text-underline-offset: 3px;
}

.consent-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.check-ui {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.35rem;
  border: 2px solid #d49a67;
  background: #fff;
  margin-top: 0.06rem;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
  position: relative;
}

.consent-option input[type="checkbox"]:checked + .check-ui {
  border-color: #1f9d8f;
  background: #1f9d8f;
  transform: translateY(-1px);
}

.consent-option input[type="checkbox"]:checked + .check-ui::after {
  content: "";
  position: absolute;
  left: 0.33rem;
  top: 0.1rem;
  width: 0.28rem;
  height: 0.58rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(38deg);
}

.consent-option input[type="checkbox"]:focus-visible + .check-ui {
  box-shadow: 0 0 0 4px rgba(31, 157, 143, 0.2);
}

input[type="checkbox"].input-error + .check-ui {
  border-color: #c1121f;
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.14);
}

.full-width {
  grid-column: 1 / -1;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: #fff2dc;
  border: 1px solid #ffcf94;
  border-radius: 0.8rem;
  padding: 0.85rem;
}

.price-box p {
  margin: 0;
  font-weight: 700;
}

.cart {
  position: sticky;
  top: 0.8rem;
  align-self: start;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
  display: grid;
  gap: 0.65rem;
}

.cart-item {
  background: #fffaf2;
  border: 1px solid #f2d8bb;
  border-radius: 0.7rem;
  padding: 0.7rem;
}

.cart-ref-image {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  border-radius: 0.55rem;
  border: 1px solid #f0d8bc;
  background: #fff;
  margin: 0.4rem 0 0.5rem;
}

.btn-ref-download {
  margin-top: 0.45rem;
  border: 1px solid #f2c994;
  border-radius: 999px;
  background: #fff2dc;
  color: #6e3f12;
  font-weight: 700;
  padding: 0.34rem 0.68rem;
  cursor: pointer;
}

.item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.item-top button {
  border: none;
  border-radius: 0.5rem;
  background: #ffe6c5;
  color: #653507;
  padding: 0.25rem 0.45rem;
  font-weight: 700;
  cursor: pointer;
}

.empty {
  color: #7e6b58;
}

.cart-total {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

.checkout-form {
  display: grid;
  gap: 0.55rem;
}

.turnstile-wrap {
  display: grid;
  gap: 0.45rem;
  margin: 0.3rem 0 0.2rem;
  background: linear-gradient(180deg, #fffaf1, #fff2df);
  border: 1px solid #f3d4aa;
  border-radius: 0.9rem;
  padding: 0.72rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: visible;
}

.turnstile-title {
  margin: 0;
  font-weight: 800;
  font-size: 0.93rem;
  color: #6e3f12;
}

#turnstileWidget {
  width: 100%;
  min-height: 66px;
}

#turnstileWidget > div {
  width: 100% !important;
}

.turnstile-wrap iframe {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 0.72rem;
}

.turnstile-wrap.has-error {
  border-color: #c1121f;
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.12);
  animation: turnstileShake 0.34s ease-in-out;
}

.turnstile-wrap.has-error::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(193, 18, 31, 0.42);
  border-radius: 1rem;
  pointer-events: none;
  animation: turnstilePulse 0.75s ease-out 1;
}

@keyframes turnstileShake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
  100% { transform: translateX(0); }
}

@keyframes turnstilePulse {
  0% { opacity: 0.9; transform: scale(0.995); }
  100% { opacity: 0; transform: scale(1.02); }
}

.delivery-modes {
  border: 1px solid #f0dcc5;
  border-radius: 0.8rem;
  padding: 0.7rem;
  background: #fffaf2;
}

.delivery-modes legend {
  color: #6e3f12;
  font-size: 0.9rem;
}

.delivery-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.delivery-option input {
  width: auto;
}

.is-hidden {
  display: none !important;
}

.hint {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: #6a4320;
}

.faq {
  display: grid;
  gap: 0.6rem;
}

.faq details {
  background: #fffdf9;
  border: 1px solid #f0dcc5;
  border-radius: 0.8rem;
  padding: 0.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: visible;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 0.5rem 0 0;
}

.faq details.faq-spotlight {
  border-color: #ff6b35;
  box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.28), 0 10px 24px rgba(255, 107, 53, 0.22);
  transform: translateY(-2px);
  animation: faqCardBlink 0.72s ease-in-out 4;
}

.faq details.faq-spotlight::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 4px solid #ff6b35;
  border-radius: 1rem;
  pointer-events: none;
  z-index: 1;
  animation: faqBlink 0.72s ease-in-out 4;
}

.label-help-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.faq-jump-icon {
  width: 1.22rem;
  height: 1.22rem;
  border-radius: 999px;
  background: #c1121f;
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(193, 18, 31, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
}

@keyframes faqPulse {
  0% {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.48);
    background: #fff7ed;
  }
  50% {
    border-color: #ff8b3d;
    box-shadow: 0 0 0 10px rgba(255, 139, 61, 0.16);
    background: #fff1de;
  }
  100% {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.48);
    background: #fff7ed;
  }
}

@keyframes faqBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.01);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes faqCardBlink {
  0% {
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2), 0 6px 18px rgba(255, 107, 53, 0.18);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0.36), 0 12px 30px rgba(255, 107, 53, 0.28);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2), 0 6px 18px rgba(255, 107, 53, 0.18);
  }
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-bottom: 3rem;
}

.contact p {
  margin: 0.4rem 0 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.footer {
  padding: 1.2rem 0 2.2rem;
  font-weight: 700;
}

.legal {
  padding-top: 2rem;
  padding-bottom: 0.6rem;
}

.legal p {
  margin: 0.5rem 0;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: #fff7eb;
  border: 2px solid #f2c994;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 0.9rem;
  display: none;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  max-width: 72ch;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  text-decoration: none;
  background: linear-gradient(160deg, #20bf55, #19a84b);
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  box-shadow: 0 12px 24px rgba(25, 145, 70, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-content,
  .ecommerce {
    grid-template-columns: 1fr;
  }

  .cart {
    position: static;
  }
}

@media (max-width: 900px) {
  .product-grid,
  .trust {
    grid-template-columns: 1fr;
  }

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

  .tone-1,
  .tone-2,
  .tone-3,
  .tone-4,
  .tone-5,
  .tone-6 {
    grid-column: auto;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .btn-nav {
    justify-self: end;
  }

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

  .price-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .floating-whatsapp {
    right: 0.6rem;
    bottom: 0.6rem;
    padding: 0.62rem 0.9rem;
  }
}
