 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
    :root {
      --orange:   #FF6600;
      --orange-d: #CC4400;
      --yellow:   #FFCC00;
      --yellow-l: #FFE566;
      --red:      #8C0000;
      --red-d:    #5A0000;
      --white:    #FFFFFF;
      --black:    #1A0800;
      --text:     #2A0A00;
    }
 
    html { scroll-behavior: smooth; }
 
    body {
      background: var(--orange);
      color: var(--text);
      font-family: 'Fira Sans', sans-serif;
      font-weight: 400;
      overflow-x: hidden;
      cursor: none;
    }
 
    /* ── CURSOR ── */
    .cursor {
      width: 12px; height: 12px;
      background: var(--yellow);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: width .25s, height .25s, background .25s;
    }
    .cursor-ring {
      width: 38px; height: 38px;
      border: 2px solid var(--yellow);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: width .3s, height .3s, opacity .3s;
      opacity: .5;
    }
    .cursor.hover  { width: 22px; height: 22px; background: var(--red); }
    .cursor-ring.hover { width: 60px; height: 60px; opacity: .2; }
 
    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 6vw;
      transition: background .4s, padding .4s, box-shadow .4s;
    }
    nav.scrolled {
      background: rgba(140,0,0,.92);
      backdrop-filter: blur(10px);
      padding: .8rem 6vw;
      box-shadow: 0 4px 30px rgba(0,0,0,.3);
    }
    .nav-logo {
      display: flex; align-items: center; gap: .6rem;
      text-decoration: none;
    }
    .nav-logo-text {
      font-family: 'The Barethos';
      font-weight: normal;
      font-style: normal;
      font-display: swap;
      font-size: 3.0rem;
      color: var(--yellow);
      text-shadow: 3px 3px 0 var(--red-d), -1px -1px 0 rgba(0,0,0,.3);
      line-height: 1;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      font-size: .78rem; font-weight: 800; letter-spacing: .12em;
      text-transform: uppercase; color: var(--white);
      text-decoration: none; position: relative; padding-bottom: 3px;
      transition: color .3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--yellow);
      transition: width .3s;
    }
    .nav-links a:hover { color: var(--yellow); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--yellow); color: var(--red);
      font-weight: 800; font-size: .78rem; letter-spacing: .1em;
      text-transform: uppercase; text-decoration: none;
      padding: .65rem 1.5rem; border-radius: 50px;
      box-shadow: 0 4px 12px rgba(0,0,0,.25);
      transition: background .3s, transform .2s, box-shadow .3s;
    }
    .nav-cta:hover {
      background: var(--white); transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,.3);
    }
    @media(max-width:768px){ .nav-links,.nav-cta{ display:none; } }
 
    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background:
        radial-gradient(ellipse 90% 70% at 60% 40%, rgba(255,204,0,.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 90%, rgba(140,0,0,.5) 0%, transparent 55%),
        linear-gradient(160deg, var(--red) 0%, var(--orange-d) 35%, var(--orange) 65%, #FFAA00 100%);
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; padding: 0 8vw;
      position: relative; overflow: hidden;
    }
    
    .hero-content { position: relative; z-index: 2; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .6rem;
      background: rgba(0,0,0,.25); border: 1px solid rgba(255,204,0,.4);
      border-radius: 50px; padding: .4rem 1rem;
      font-size: .72rem; font-weight: 800; letter-spacing: .15em;
      text-transform: uppercase; color: var(--yellow-l);
      margin-bottom: 1.4rem;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp .6s .2s ease forwards;
    }
    .hero-eyebrow .dot {
      width: 7px; height: 7px; background: #4CAF50;
      border-radius: 50%; box-shadow: 0 0 6px #4CAF50;
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
 
    .hero-slogan {
      font-family: 'Fira Sans ExtraBold', sans-serif;
      font-style: italic; font-weight: 800;
      font-size: clamp(1rem, 2vw, 1.4rem);
      color: var(--white);
      text-shadow: 1px 2px 6px rgba(0,0,0,.4);
      letter-spacing: .03em; margin-bottom: 1.8rem;
      display: block;
    }
    .hero-desc {
      font-size: .95rem; line-height: 1.75;
      color: rgba(255,255,255,.85); max-width: 800px;
      margin-bottom: 2.2rem;
      opacity: 0; transform: translateY(80px);
      animation: fadeUp .8s .55s ease forwards;
    }
    .hero-btns {
      display: flex; gap: 1rem; flex-wrap: wrap;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp .8s .7s ease forwards;
    }
    .btn-primary {
      background: var(--yellow); color: var(--red);
      font-family: 'Fira Sans', sans-serif;
      font-weight: 800; font-size: .85rem;
      letter-spacing: .1em; text-transform: uppercase;
      padding: .95rem 2.2rem; border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(0,0,0,.3), 0 0 0 0 rgba(255,204,0,.5);
      transition: transform .25s, box-shadow .3s, background .3s;
    }
    .btn-primary:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 12px 36px rgba(0,0,0,.35), 0 0 0 6px rgba(255,204,0,.2);
    }
    .btn-secondary {
      background: transparent;
      border: 2px solid rgba(255,255,255,.6);
      color: var(--white); font-family: 'Fira Sans', sans-serif;
      font-weight: 800; font-size: .85rem;
      letter-spacing: .1em; text-transform: uppercase;
      padding: .93rem 2rem; border-radius: 50px;
      text-decoration: none;
      transition: background .3s, border-color .3s, transform .25s;
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,.12);
      border-color: var(--white); transform: translateY(-2px);
    }
    /*Imagen de la mascota*/
    .hero-img-wrap {
      position: absolute;
      right: 8vw;
      top: 15%;
    }
    .hero-img-wrap img {
      width: 600px;
      height: auto;
      max-width: 100%;
    }
    
    @media(max-width:900px){
      .hero-img-wrap img { width:100%; }
    }
 
    /* ── HERO MASCOT ── */
    .hero-visual {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; animation: fadeIn 1s .4s ease forwards;
    }
    .mascot-wrap {
      position: relative; width: 440px; height: 460px;
      display: flex; align-items: center; justify-content: center;
    }
    /* Glow halo behind mascot */
    .mascot-halo {
      position: absolute; width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,204,0,.45) 0%, transparent 70%);
      animation: pulse-halo 3s ease-in-out infinite;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
    }
    @keyframes pulse-halo {
      0%,100%{ transform: translate(-50%,-50%) scale(1); opacity:.7; }
      50%{ transform: translate(-50%,-50%) scale(1.15); opacity:1; }
    }
    @keyframes float-mascot {
      0%,100%{ transform: translateY(0) rotate(-.5deg); }
      50%{ transform: translateY(-16px) rotate(.5deg); }
    }
    .badge-ovos {
      position: absolute; bottom: 250px; right: -60px;
      background: var(--red); border-radius: 50%;
      width: 100px; height: 100px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(0,0,0,.4), 0 0 0 4px rgba(255,204,0,.4);
      animation: float-mascot 3.5s 1s ease-in-out infinite;
    }
    .badge-ovos .b-num {
      font-family: 'Fira Sans ExtraBold', cursive; font-size: 1.5rem;
      color: var(--yellow); line-height: 1;
    }
    .badge-ovos .b-label {
      font-size: .52rem; font-weight: 800; letter-spacing: .08em;
      text-transform: uppercase; color: rgba(255,255,255,.8);
    }
    .float-tag {
      position: absolute; ;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 100px; padding: .45rem 1rem;
      font-size: .72rem; font-weight: 800; color: var(--white);
      letter-spacing: .05em; display: flex; align-items: center; gap: .5rem;
      white-space: nowrap;
    }
    .float-tag .dot { width: 8px; height: 8px; border-radius: 50%; }
    .ftag-1 { top: 110px; left: -30px; animation: float-tag1 3.8s ease-in-out infinite; }
    .ftag-2 { bottom: -30px; left: 190px; animation: float-tag1 4.5s .8s ease-in-out infinite; }
    @keyframes float-tag1 {
      0%,100%{ transform: translateY(0); }
      50%{ transform: translateY(-8px); }
    }


 
    /* ── STATS STRIP ── */
    .stats-strip {
      background: var(--red);
      padding: 2rem 8vw;
      display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem;
      position: relative; overflow: hidden;
    }
    .stats-strip::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--yellow), var(--orange));
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Pacifico', cursive;
      font-size: 2.6rem; color: var(--yellow); line-height: 1;
      text-shadow: 2px 2px 0 var(--red-d);
    }
    .stat-label {
      font-size: .7rem; font-weight: 800; letter-spacing: .15em;
      text-transform: uppercase; color: rgba(255,255,255,.6);
      margin-top: .3rem;
    }
 
    /* ── SECTIONS BASE ── */
    section { padding: 6rem 8vw; }
 
    .section-tag {
      display: inline-flex; align-items: center; gap: .6rem;
      background: rgba(255,102,0,.15); border: 1px solid rgba(255,102,0,.4);
      border-radius: 50px; padding: .35rem 1rem;
      font-size: .7rem; font-weight: 800; letter-spacing: .15em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 1rem;
    }
    h2 {
      font-family: 'Fira Sans ExtraBold', cursive;
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      color: var(--red); line-height: 1.1;
      text-shadow: 2px 2px 0 rgba(140,0,0,.2);
      margin-bottom: 1rem;
    }
    h2 .accent { color: var(--orange); }
 
    /* ── PRODUCTOS ── */
    #productos {
      background: linear-gradient(170deg, #FFF8EE 0%, #FFEEC8 100%);
    }
    .products-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; align-items: end; margin-bottom: 3.5rem;
    }
    .products-desc {
      font-size: .92rem; color: #6B3A00; line-height: 1.8;
    }
    .products-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
      gap: 1.8rem;
    }
    .product-card {
      background: var(--white); border-radius: 16px;
      overflow: hidden; cursor: none;
      box-shadow: 0 4px 20px rgba(140,0,0,.1);
      transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
      position: relative;
    }
    .product-card:hover {
      transform: translateY(-10px) scale(1.01);
      box-shadow: 0 24px 50px rgba(140,0,0,.18);
    }
    .card-top {
      height: 200px; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .card-top-bg {
      position: absolute; inset: 0;
      transition: transform .6s ease;
    }
    .product-card:hover .card-top-bg { transform: scale(1.08); }
    .bg-tipo1 {
      background: linear-gradient(135deg, #FF6600 0%, #FF8800 50%, #FFCC00 100%);
    }
    .bg-tipo2 {
      background: linear-gradient(135deg, #8C0000 0%, #CC3300 50%, #FF6600 100%);
    }
    .bg-tipo3 {
      background: linear-gradient(135deg, #FF9900 0%, #FFCC00 50%, #FFE680 100%);
    }
    /* CSS egg cluster */
    .egg-cluster {
      position: relative; z-index: 1;
      display: flex; gap: .5rem; align-items: flex-end;
    }
    .c-egg {
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      box-shadow: 0 4px 12px rgba(0,0,0,.25), inset 3px -3px 10px rgba(255,255,255,.4);
    }
    .c-egg-sm { width: 36px; height: 46px; }
    .c-egg-md { width: 46px; height: 58px; }
    .c-egg-white { background: linear-gradient(135deg, #FFFEF8, #E8E0C8); }
    .c-egg-brown { background: linear-gradient(135deg, #D4824A, #9B4A1A); }
    .c-egg-gold  { background: linear-gradient(135deg, #FFE066, #C8880A); }
    .product-card:hover .c-egg:nth-child(1){ transform: rotate(-8deg) translateY(-6px); transition: transform .3s; }
    .product-card:hover .c-egg:nth-child(2){ transform: translateY(-10px); transition: transform .35s .05s; }
    .product-card:hover .c-egg:nth-child(3){ transform: rotate(8deg) translateY(-6px); transition: transform .3s .1s; }
    .card-bestseller {
      position: absolute; top: 12px; right: 12px;
      background: var(--yellow); color: var(--red);
      font-size: .6rem; font-weight: 800; letter-spacing: .1em;
      text-transform: uppercase; padding: .3rem .7rem;
      border-radius: 50px;
      box-shadow: 0 2px 8px rgba(0,0,0,.2);
    }
    .card-body { padding: 1.5rem; position: relative; padding-bottom: 4rem; }
    .card-tag-badge {
      display: inline-block; font-size: .65rem; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase;
      background: rgba(255,102,0,.12); color: var(--orange);
      padding: .25rem .7rem; border-radius: 50px; margin-bottom: .7rem;
    }
    .card-title {
      font-family: 'Pacifico', cursive; font-size: 1.3rem;
      color: var(--red); margin-bottom: .5rem;
    }
    .card-desc { font-size: .83rem; color: #7A4A00; line-height: 1.7; }
    .card-price {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      font-family: 'Pacifico', cursive; font-size: 1.7rem;
      color: var(--orange);
    }
    .card-price span { font-family:'Fira Sans',sans-serif; font-size:.75rem; color:#9A6A30; font-weight:400; }
    .card-btn {
      position: absolute; bottom: 1.4rem; right: 1.4rem;
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--orange); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 3px 10px rgba(255,102,0,.4);
      transition: background .3s, transform .2s;
    }
    .product-card:hover .card-btn {
      background: var(--red); transform: scale(1.12);
    }
 
    /* ── NOSOTROS ── */
    #nosotros {
      background: linear-gradient(160deg, var(--red-d) 0%, var(--red) 40%, var(--orange-d) 100%);
      position: relative; overflow: hidden;
    }
    #nosotros::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    #nosotros h2 { color: var(--yellow); text-shadow: 2px 2px 0 rgba(0,0,0,.3); }
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center; margin-top: 2.5rem;
    }
    .why-visual {
      display: flex; flex-direction: column; gap: 1.2rem;
      position: relative;
    }
    .why-big-card {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,204,0,.25);
      border-radius: 16px; padding: 2rem;
      display: flex; align-items: center; gap: 1.5rem;
      backdrop-filter: blur(4px);
      transition: transform .4s, background .4s;
    }
    .why-big-card:hover {
      transform: translateX(6px);
      background: rgba(255,255,255,.15);
    }
    .why-icon-box {
      width: 64px; height: 64px; border-radius: 12px;
      background: var(--yellow);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
    }
    .why-card-title {
      font-family: 'Pacifico', cursive;
      font-size: 1.1rem; color: var(--yellow); margin-bottom: .3rem;
    }
    .why-card-desc {
      font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.65;
    }
    .why-highlight-box {
      background: var(--yellow); border-radius: 16px;
      padding: 1.5rem 2rem;
      display: flex; align-items: center; gap: 1.2rem;
    }
    .why-hl-num {
      font-family: 'Pacifico', cursive; font-size: 3rem;
      color: var(--red); line-height: 1;
    }
    .why-hl-text { font-size: .82rem; font-weight: 800; color: var(--red-d); line-height: 1.5; }
 
    /* features right side */
    .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .feature-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px; padding: 1.5rem;
      opacity: 0; transform: translateY(30px);
      transition: opacity .5s, transform .5s, background .3s;
    }
    .feature-card.visible { opacity: 1; transform: none; }
    .feature-card:hover { background: rgba(255,255,255,.14); }
    .feature-icon { font-size: 2rem; margin-bottom: .8rem; display: block; }
    .feature-title {
      font-family: 'Pacifico', cursive; font-size: 1rem;
      color: var(--yellow); margin-bottom: .5rem;
    }
    .feature-desc { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.65; }
 
    /* ── TESTIMONIOS ── */
    #testimonios {
      background: linear-gradient(170deg, #FFF8EE 0%, #FFEEC8 100%);
      overflow: hidden;
    }
    #testimonios h2 .accent { color: var(--orange); }
    #testimonios h2 .brand-text { font-family: 'The Barethos', cursive; font-size: 5.5rem; color: var(--yellow); text-shadow: 3px 3px 0 var(--red-d), -1px -1px 0 rgba(0,0,0,.3);}
    .testi-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
      gap: 1.8rem; margin-top: 3rem;
    }
    .testi-card {
      background: var(--white); border-radius: 16px;
      padding: 2rem; position: relative;
      box-shadow: 0 4px 24px rgba(140,0,0,.08);
      transition: transform .3s, box-shadow .3s;
    }
    .testi-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(140,0,0,.14);
    }
    .testi-quote {
      font-family: 'Pacifico', cursive;
      font-size: 3rem; color: var(--yellow); line-height: .8;
      margin-bottom: .5rem;
    }
    .testi-stars { color: var(--orange); font-size: .9rem; letter-spacing: .1em; margin-bottom: .9rem; }
    .testi-text {
      font-style: italic; font-size: .9rem; line-height: 1.75;
      color: #5A3000; margin-bottom: 1.3rem;
    }
    .testi-author { display: flex; align-items: center; gap: .8rem; }
    .testi-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      font-family: 'Pacifico', cursive; font-size: 1rem;
      color: var(--white); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .testi-name { font-size: .85rem; font-weight: 800; color: var(--red); }
    .testi-role { font-size: .72rem; color: #9A6A30; }
 
    /* ── CONTACTO ── */
    #contacto {
      background: linear-gradient(160deg, #FF6600 0%, #CC3300 50%, #8C0000 100%);
      position: relative; overflow: hidden;
    }
    #contacto::after {
      content: '';
      position: absolute; bottom: -80px; right: -80px;
      width: 320px; height: 320px; border-radius: 50%;
      background: rgba(255,204,0,.08);
      pointer-events: none;
    }
    #contacto h2 { color: var(--yellow); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; margin-top: 3rem; align-items: start;
    }
    .contact-info-desc {
      font-size: .92rem; color: rgba(255,255,255,.85);
      line-height: 1.8; margin-bottom: 2rem;
    }
    .contact-methods { display: flex; flex-direction: column; gap: .9rem; }
    .contact-method {
      display: flex; align-items: center; gap: 1rem;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 12px; padding: 1rem 1.3rem;
      text-decoration: none; color: var(--white);
      transition: background .3s, transform .25s, border-color .3s;
      backdrop-filter: blur(4px);
    }
    .contact-method:hover {
      background: rgba(255,255,255,.2);
      border-color: var(--yellow); transform: translateX(5px);
    }
    .method-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; flex-shrink: 0;
      background: rgba(0,0,0,.2);
    }
    .method-label {
      font-size: .65rem; font-weight: 800; letter-spacing: .12em;
      text-transform: uppercase; color: rgba(255,255,255,.6);
    }
    .method-value { font-size: .9rem; font-weight: 800; }
    .wa-big-btn {
      margin-top: 1.8rem;
      display: inline-flex; align-items: center; gap: .8rem;
      background: #25D366; color: var(--white);
      font-weight: 800; font-size: .85rem; letter-spacing: .08em;
      text-transform: uppercase; text-decoration: none;
      padding: 1rem 2rem; border-radius: 50px;
      box-shadow: 0 6px 24px rgba(37,211,102,.4);
      transition: transform .2s, box-shadow .3s;
    }
    .wa-big-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 36px rgba(37,211,102,.5);
    }
    .wa-big-btn .wa-ic { font-size: 1.4rem; }
 
    /* FORM */
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .field { display: flex; flex-direction: column; gap: .35rem; }
    label {
      font-size: .68rem; font-weight: 800; letter-spacing: .12em;
      text-transform: uppercase; color: rgba(255,255,255,.7);
    }
    input, textarea, select {
      background: rgba(255,255,255,.12);
      border: 1.5px solid rgba(255,255,255,.25);
      border-radius: 10px; padding: .85rem 1rem;
      font-family: 'Fira Sans', sans-serif;
      font-size: .88rem; color: var(--white);
      outline: none; cursor: none; width: 100%;
      transition: border-color .3s, background .3s, box-shadow .3s;
    }
    input::placeholder, textarea::placeholder { color: rgba(255,255,255,.4); }
    select { color: rgba(255,255,255,.85); }
    select option { background: var(--red-d); color: var(--white); }
    input:focus, textarea:focus, select:focus {
      border-color: var(--yellow);
      background: rgba(255,255,255,.18);
      box-shadow: 0 0 0 3px rgba(255,204,0,.2);
    }
    textarea { resize: vertical; min-height: 105px; }
    .btn-submit {
      background: var(--yellow); color: var(--red);
      font-family: 'Fira Sans', sans-serif;
      font-weight: 800; font-size: .85rem;
      letter-spacing: .12em; text-transform: uppercase;
      padding: 1rem 2rem; border: none; border-radius: 50px;
      cursor: none;
      box-shadow: 0 6px 20px rgba(0,0,0,.25);
      transition: background .3s, transform .2s, box-shadow .3s;
    }
    .btn-submit:hover {
      background: var(--white); transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0,0,0,.3);
    }
    #form-msg {
      display: none; text-align: center;
      background: rgba(255,255,255,.15); border-radius: 10px;
      padding: .9rem; font-weight: 800; color: var(--yellow);
      font-size: .85rem;
    }
 
    /* ── FOOTER ── */
    footer {
      background: var(--red-d);
      padding: 2.5rem 8vw;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1.5rem;
      border-top: 3px solid var(--orange);
    }
    .footer-brand {
      font-family: 'The Barethos', cursive; font-size: 1.6rem;
      color: var(--yellow);
      text-shadow: 2px 2px 0 var(--red-d);
    }
    .footer-slogan {
      font-style: italic; font-weight: 800;
      font-size: .75rem; color: rgba(255,255,255,.5);
    }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a {
      font-size: .7rem; font-weight: 800; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.45);
      text-decoration: none; transition: color .3s;
    }
    .footer-links a:hover { color: var(--yellow); }
    .footer-copy { font-size: .72rem; color: rgba(255,255,255,.3); }
 
    /* ── FLOATING WA ── */
    .wa-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
      width: 60px; height: 60px; border-radius: 50%;
      background: #35c46a;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; text-decoration: none;
      box-shadow: 0 6px 24px rgba(37,211,102,.5);
      animation: wa-pulse 2.5s ease-in-out infinite;
      transition: transform .2s;
    }
    .wa-float:hover { transform: scale(1.12); }
    @keyframes wa-pulse {
      0%,100%{ box-shadow: 0 6px 24px rgba(37,211,102,.5); }
      50%{ box-shadow: 0 8px 40px rgba(37,211,102,.75), 0 0 0 12px rgba(37,211,102,.12); }
    }
 
    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s, transform .7s; }
    .reveal.visible { opacity: 1; transform: none; }
 
    /* ── ANIMATIONS ── */
    @keyframes fadeUp { to { opacity:1; transform:none; } }
    @keyframes fadeIn { to { opacity:1; } }
 
    /* ── RESPONSIVE ── */
    @media(max-width:900px){
      #hero { grid-template-columns:1fr; padding-top:7rem; padding-bottom:3rem; }
      .hero-visual { display:none; }
      .hero-img-wrap { position:relative; right:auto; top:auto; margin:2rem 0; order:2; }
      .hero-content { order:1; }
      .products-header { grid-template-columns:1fr; }
      .why-grid { grid-template-columns:1fr; }
      .features-grid { grid-template-columns:1fr; }
      .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
      .form-row { grid-template-columns:1fr; }
    }