  /* v50 */
  :root{
    --css-version: "50";
    --rojo: #96543E;        /* rosa (acento: botones, títulos, detalles) */
    --rojo-oscuro: #96543E; /* mismo acento */
    --naranja: #96543E;     /* mismo acento */
    --crema: #F6EFEC;       /* fondo claro con tinte rosado */
    --carbon: #111111;      /* negro */
    --dorado: #96543E;      /* mismo acento */
    --oro: #C9A24B;         /* dorado real (línea de menú activa) */
    --blanco: #FFFFFF;
    --radio: 14px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  body{
    font-family:'Poppins', sans-serif;
    color:var(--carbon);
    background:var(--crema);
    line-height:1.5;
  }
  h1,h2,h3, .brand{
    font-family:'Archivo Black', sans-serif;
    line-height:1.05;
    letter-spacing:0.5px;
  }
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}

  /* ---------- HEADER + HERO ---------- */
  .hero-section{
    background: #000000;
    color:var(--blanco);
    position:relative;
    overflow:hidden;
  }
  .hero-section .btn-primary,
  .subhero .btn-primary{
    background:var(--rojo);
    border-color:var(--rojo);
    color:var(--blanco);
  }
  .hero-section .btn-primary:hover,
  .subhero .btn-primary:hover{ background:var(--rojo-oscuro); border-color:var(--rojo-oscuro); }
  .hero-section::before{
    content:"";
    position:absolute;
    width:520px; height:520px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,0.03);
    top:-160px; right:-120px;
    z-index:0;
  }
  /* decorative circles + waves */
  .hero-decor{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
    pointer-events:none;
  }
  .hero-decor .circle{
    position:absolute;
    border-radius:50%;
    border:2px solid rgba(255,255,255,0.035);
  }
  .hero-decor .circle.fill{
    border:0;
    background:rgba(255,255,255,0.016);
  }
  .hero-decor .c1{ width:680px; height:680px; top:-240px; right:-200px; }
  .hero-decor .c2{ width:420px; height:420px; top:-120px; right:60px; }
  .hero-decor .c3{ width:260px; height:260px; bottom:-90px; left:-70px; }
  .hero-decor .c4{ width:140px; height:140px; bottom:80px; left:44%; }
  .hero-decor .c5{ width:70px;  height:70px;  top:120px;  left:8%; }
  .hero-decor .c6{ width:200px; height:200px; bottom:40px; right:12%; }
  .hero-decor .wave{
    position:absolute;
    left:0;
    width:100%;
    opacity:0.12;
  }
  .hero-decor .wave.w1{ top:32%; }
  .hero-decor .wave.w2{ top:58%; opacity:0.07; }
  .hero-section .hero-wave-bottom{
    position:absolute;
    left:0; right:0; bottom:-1px;
    width:100%;
    display:block;
    z-index:1;
  }
  header.topnav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 32px 6px;
    max-width:1180px;
    margin:0 auto;
    position:relative;
    z-index:2;
  }
  .brand{font-size:26px; letter-spacing:1px; display:flex; align-items:center;}
  .brand span{color:var(--dorado);}
  .brand img{
    height:185px;
    width:auto;
    object-fit:contain;
    display:block;
    flex-shrink:0;
  }
  .brand a{display:flex; align-items:center;}
  @media (max-width:560px){ .brand img{height:110px;} }
  nav.mainlinks ul{display:flex; gap:34px; font-weight:600; font-size:14px;}
  nav.mainlinks a{
    position:relative;
    opacity:0.9;
    padding-top:8px;
    transition:opacity .2s;
  }
  nav.mainlinks a::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:3px;
    border-radius:3px;
    background:var(--rojo);
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .25s ease;
  }
  nav.mainlinks a:hover{opacity:1;}
  nav.mainlinks a:hover::before{transform:scaleX(0.6);}
  nav.mainlinks a.active{opacity:1;}
  nav.mainlinks a.active::before{transform:scaleX(1);}
  .nav-icons{display:flex; align-items:center; gap:18px;}
  .icon-btn{
    width:54px; height:54px; border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex; align-items:center; justify-content:center;
    font-size:26px;
  }
  .icon-btn:hover{ background:var(--rojo); }
  .cart-btn{position:relative;}
  .cart-badge{
    position:absolute; top:-6px; right:-6px;
    background:var(--dorado); color:var(--carbon);
    font-size:10px; font-weight:800;
    width:18px; height:18px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }

  .hero-grid{
    display:grid;
    grid-template-columns: 1fr 1.1fr;
    gap:48px;
    align-items:center;
    padding:38px 32px 120px;
    max-width:1180px;
    margin:0 auto;
    position:relative;
    z-index:2;
  }
  .hero-copy .eyebrow{
    display:inline-block;
    background:rgba(255,255,255,0.18);
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
  }
  .hero-copy h1{
    font-size:46px;
    margin-bottom:18px;
  }
  .hero-copy p{
    max-width:480px;
    opacity:0.95;
    margin-bottom:28px;
    font-size:15px;
  }
  .btn-primary{
    display:inline-block;
    background:var(--carbon);
    color:var(--blanco);
    padding:15px 34px;
    border-radius:30px;
    font-weight:700;
    font-size:14px;
    border:2px solid var(--carbon);
    transition:transform .15s ease, background .15s ease;
  }
  .btn-primary:hover{ transform:translateY(-2px); background:#000;}
  .btn-ghost{
    display:inline-block;
    background:transparent;
    color:var(--blanco);
    padding:13px 32px;
    border-radius:30px;
    font-weight:700;
    font-size:14px;
    border:2px solid rgba(255,255,255,0.7);
  }

  .hero-visual{position:relative; display:flex; justify-content:center;}
  .bucket-card{
    background:var(--blanco);
    border-radius:28px;
    padding:30px 26px;
    max-width:400px;
    box-shadow:0 30px 60px rgba(0,0,0,0.28);
    position:relative;
  }
  .bucket-card .bucket-img{
    border-radius:18px;
    width:100%;
    height:230px;
    object-fit:cover;
  }
  .video-wrap{
    width:100%;
    border-radius:18px;
    overflow:hidden;
    background:#000;
    box-shadow:0 18px 50px rgba(0,0,0,0.28), 0 6px 16px rgba(0,0,0,0.22);
    line-height:0;
  }
  .video-wrap video,
  .video-wrap iframe{
    display:block;
    width:100%;
    height:auto;
    border:0;
  }
  .video-wrap iframe{aspect-ratio:16/9; height:auto;}
  .price-tag{
    position:absolute;
    top:-18px; right:-18px;
    background:var(--dorado);
    color:var(--rojo-oscuro);
    width:96px; height:96px;
    border-radius:50%;
    display:flex; flex-direction:column;
    align-items:center; justify-content:center;
    font-weight:800;
    box-shadow:0 10px 24px rgba(0,0,0,0.25);
    transform:rotate(-8deg);
  }
  .price-tag .amount{font-size:26px; line-height:1;}
  .price-tag .unit{font-size:11px;}
  .bucket-card h3{font-size:20px; margin-top:18px;}
  .bucket-card p.small{font-size:13px; color:#6b5c54; margin-top:6px;}
  .dots{display:flex; gap:6px; margin-top:20px;}
  .dots span{width:7px; height:7px; border-radius:50%; background:#e6d8cd;}
  .dots span.active{background:var(--rojo);}

  /* ---------- CATEGORY STRIP ---------- */
  .category-strip{
    background:var(--blanco);
    padding:26px 0 30px;
    border-bottom:1px solid #f1e6da;
  }
  .strip-label{
    text-align:center;
    margin-bottom:22px;
  }
  .strip-label span{
    background:var(--dorado);
    color:var(--carbon);
    padding:8px 26px;
    border-radius:30px;
    font-weight:800;
    font-size:13px;
  }
  .cat-row{
    display:flex;
    align-items:center;
    gap:8px;
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  .cat-scroll{
    display:flex;
    gap:36px;
    overflow-x:auto;
    flex:1;
    padding:4px 6px;
    scrollbar-width:none;
  }
  .cat-scroll::-webkit-scrollbar{display:none;}
  .cat-item{
    display:flex; flex-direction:column; align-items:center;
    gap:10px;
    min-width:74px;
    font-size:11px;
    font-weight:700;
    letter-spacing:0.3px;
    color:#7a6a60;
    cursor:pointer;
    flex-shrink:0;
  }
  .cat-item .circle{
    width:60px; height:60px;
    border-radius:50%;
    background:#F3E4E2;
    display:flex; align-items:center; justify-content:center;
    font-size:26px;
  }
  .cat-item.active{color:var(--rojo);}
  .cat-item.active .circle{
    background:var(--rojo);
    box-shadow:0 8px 16px rgba(200,16,46,0.3);
  }
  .arrow-btn{
    width:34px; height:34px;
    border-radius:50%;
    border:1px solid #eadfd2;
    display:flex; align-items:center; justify-content:center;
    color:#a2897c;
    flex-shrink:0;
  }

  /* ---------- PROMO GRID ---------- */
  .promo-section{padding:60px 0 20px;}
  .promo-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:22px;
  }
  .promo-card{
    border-radius:var(--radio);
    padding:26px;
    position:relative;
    overflow:hidden;
    min-height:190px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
  .promo-card.big{ grid-column: span 1; }
  .promo-card h4{
    font-family:'Archivo Black', sans-serif;
    font-size:18px;
    line-height:1.15;
    max-width:60%;
  }
  .promo-card .price{
    font-weight:800;
    font-size:15px;
    margin-top:12px;
  }
  .promo-card .tag-new{
    position:absolute;
    top:16px; right:16px;
    background:var(--dorado);
    color:var(--carbon);
    font-size:11px;
    font-weight:800;
    padding:4px 10px;
    border-radius:20px;
  }
  .promo-card.a{ background:#FFE3B8; color:var(--carbon); }
  .promo-card.b{ background:var(--rojo); color:var(--blanco); }
  .promo-card.c{ background:#2E5951; color:var(--blanco); }
  .promo-card img.deco{
    position:absolute;
    right:-10px; bottom:-14px;
    width:130px;
    opacity:0.95;
  }
  .promo-card .cta-mini{
    align-self:flex-start;
    margin-top:14px;
    background:rgba(255,255,255,0.9);
    color:var(--rojo-oscuro);
    font-size:12px;
    font-weight:700;
    padding:8px 18px;
    border-radius:20px;
  }

  .promo-row2{
    display:grid;
    grid-template-columns: 1.3fr 1fr;
    gap:22px;
    margin-top:22px;
  }
  .feature-card{
    border-radius:var(--radio);
    background:var(--blanco);
    border:1px solid #f1e3d4;
    display:flex;
    align-items:stretch;
    overflow:hidden;
    min-height:170px;
  }
  .feature-card .txt{
    padding:26px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:10px;
    max-width:60%;
  }
  .feature-card .txt h4{font-size:17px;}
  .feature-card .badge{
    display:inline-block;
    background:var(--rojo);
    color:var(--blanco);
    font-size:11px;
    font-weight:700;
    padding:6px 12px;
    border-radius:20px;
    width:fit-content;
  }
  .feature-card .imgwrap{flex:1; min-width:38%;}
  .feature-card .imgwrap img{width:100%; height:100%; object-fit:cover;}

  /* ---------- APP BANNER ---------- */
  .app-banner{
    background: linear-gradient(120deg, var(--dorado), var(--naranja));
    margin-top:60px;
    padding:60px 0;
    position:relative;
    overflow:hidden;
  }
  .app-grid{
    display:grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items:center;
    gap:40px;
  }
  .app-phones{display:flex; justify-content:center; gap:-20px; position:relative;}
  .app-phones img{
    width:200px;
    border-radius:24px;
    box-shadow:0 24px 50px rgba(0,0,0,0.25);
  }
  .app-copy h2{
    font-size:32px;
    color:var(--carbon);
    margin-bottom:16px;
    max-width:420px;
  }
  .store-btns{display:flex; gap:14px; margin-top:22px;}
  .store-btn{
    background:var(--carbon);
    color:var(--blanco);
    padding:12px 22px;
    border-radius:12px;
    font-size:13px;
    font-weight:600;
    display:flex;
    flex-direction:column;
    line-height:1.2;
  }
  .store-btn small{font-size:10px; opacity:0.75;}

  /* ---------- SOCIAL + VIDEO ---------- */
  .social-section{padding:70px 0;}
  .social-grid{
    display:grid;
    grid-template-columns: 1fr 1.15fr;
    gap:50px;
  }
  .social-section h3{
    font-size:20px;
    margin-bottom:24px;
    color:var(--rojo-oscuro);
  }
  .post-row{display:flex; gap:16px; margin-bottom:18px;}
  .avatar{
    width:44px; height:44px;
    border-radius:50%;
    background:#e6d8cd;
    flex-shrink:0;
  }
  .post-row .content{font-size:13px;}
  .post-row .content .name{font-weight:700; margin-bottom:2px;}
  .post-row .content .handle{color:#a2897c; font-weight:400; font-size:12px;}
  .post-row .content p{color:#7a6a60; margin-top:4px;}

  .video-card{
    border-radius:20px;
    overflow:hidden;
    position:relative;
    min-height:280px;
    background:#1a1310;
  }
  .video-card img{width:100%; height:100%; object-fit:cover; opacity:0.6; position:absolute; inset:0;}
  .video-caption{
    position:relative;
    z-index:2;
    padding:30px;
    color:var(--blanco);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%;
    min-height:280px;
  }
  .video-caption h4{font-size:22px; max-width:60%;}
  .play-btn{
    width:56px; height:56px;
    border-radius:50%;
    background:var(--rojo);
    display:flex; align-items:center; justify-content:center;
    align-self:flex-start;
    font-size:20px;
  }

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--carbon);
    color:#cbb9ac;
    position:relative;
  }
  .footer-top{
    background:#000000;
    color:var(--blanco);
    padding:18px 0;
  }
  .footer-top .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
  }
  .footer-top .contact{display:flex; gap:30px; font-size:14px; font-weight:600;}
  .footer-top .contact a{color:var(--blanco); text-decoration:none;}
  .footer-top .contact a:hover{color:var(--dorado);}
  .footer-top .footer-copy{font-size:12px; color:#8a7a70; text-align:center; flex:1; min-width:200px;}
  .footer-top .social-icons{display:flex; gap:12px;}
  .footer-top .social-icons a,
  .footer-top .social-icons span{
    width:38px; height:38px; border-radius:50%;
    background:rgba(255,255,255,0.15);
    color:var(--blanco);
    display:flex; align-items:center; justify-content:center;
    font-size:15px; font-weight:700;
    text-decoration:none;
    transition:background .2s ease;
  }
  .footer-top .social-icons a:hover,
  .footer-top .social-icons span:hover{
    background:var(--rojo);
  }
  .footer-cols{
    display:flex;
    flex-wrap:wrap;
    align-items:flex-start;
    gap:40px 56px;
    padding:56px 0 28px;
  }
  .footer-card{
    flex:1 1 300px;
    min-width:260px;
  }
  .footer-card p{
    font-size:13px;
    line-height:1.8;
    color:#b8a99f;
    margin-top:6px;
  }
  .footer-logo{
    margin-right:auto;
    align-self:center;
    display:flex;
    align-items:center;
    padding-right:16px;
    margin-top:-24px;
  }
  .footer-logo img{
    height:168px;
    width:auto;
    display:block;
  }
  .footer-cols h5{
    color:var(--blanco);
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:16px;
    text-transform:uppercase;
  }
  .footer-cols li{margin-bottom:10px; font-size:13px;}
  .footer-cols a:hover{color:var(--dorado);}
  .footer-bottom{
    text-align:center;
    padding:18px 0;
    font-size:12px;
    border-top:1px solid rgba(255,255,255,0.08);
    color:#8a7a70;
  }

  /* ---------- MARQUEE ---------- */
  .marquee{
    background:var(--blanco);
    padding:20px 0;
    overflow:hidden;
  }
  .marquee-track{
    display:flex;
    flex-wrap:nowrap;
    gap:64px;
    width:max-content;
    animation:marquee-scroll 40s linear infinite;
    will-change:transform;
  }
  .marquee:hover .marquee-track{animation-play-state:paused;}
  .marquee-track img{
    height:104px;
    width:auto;
    max-width:none;
    object-fit:contain;
    flex:0 0 auto;
  }
  @keyframes marquee-scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }

  /* ---------- MANUAL STRIP (differs from auto marquee: dark bg, framed cards, arrow-driven) ---------- */
  .manual-strip{
    background:var(--carbon);
    padding:30px 0 56px;
    position:relative;
    overflow:hidden;
  }
  .manual-strip .strip-head{
    margin-bottom:24px;
    position:relative;
    z-index:2;
  }
  .manual-strip .strip-head p{ color:#cbb9ac; }
  .manual-strip-wrap{ position:relative; z-index:2; }
  .strip-decor{
    position:absolute;
    inset:0;
    z-index:1;
    overflow:hidden;
    pointer-events:none;
  }
  .sd-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(40px);
    opacity:0.35;
  }
  .sd-glow.g1{ width:340px; height:340px; top:-120px; left:-80px; background:radial-gradient(circle, #7a3fae, transparent 70%); }
  .sd-glow.g2{ width:300px; height:300px; bottom:-140px; right:-60px; background:radial-gradient(circle, #cc7a2e, transparent 70%); }
  .strip-decor .sd{
    position:absolute;
    font-size:30px;
    opacity:0.22;
    animation:sd-float 6s ease-in-out infinite;
  }
  @keyframes sd-float{
    0%,100%{ transform:translateY(0) rotate(var(--r,0deg)); }
    50%{ transform:translateY(-10px) rotate(var(--r,0deg)); }
  }
  .strip-decor .sd1 { top:6%;   left:4%;   font-size:46px; --r:-6deg; animation-delay:0s; }
  .strip-decor .sd2 { top:66%;  left:9%;   font-size:26px; --r:-12deg; animation-delay:.6s; }
  .strip-decor .sd3 { top:12%;  right:7%;  font-size:30px; --r:8deg;  animation-delay:1.1s; }
  .strip-decor .sd4 { bottom:8%; right:15%; font-size:42px; --r:0deg; animation-delay:.3s; }
  .strip-decor .sd5 { bottom:12%; left:46%; font-size:26px; --r:-6deg; animation-delay:1.6s; }
  .strip-decor .sd6 { top:42%;  right:38%; font-size:22px; --r:10deg; animation-delay:.9s; }
  .strip-decor .sd7 { top:24%;  left:22%;  font-size:34px; --r:0deg;  animation-delay:2s; }
  .strip-decor .sd8 { bottom:22%; left:2%; font-size:24px; --r:14deg; animation-delay:1.3s; }
  .strip-decor .sd9 { top:4%;   left:48%;  font-size:30px; --r:0deg;  animation-delay:.4s; }
  .strip-decor .sd10{ bottom:4%; right:44%; font-size:22px; --r:-8deg; animation-delay:1.8s; }
  .strip-decor .sd11{ top:20%;  right:22%; font-size:26px; --r:6deg;  animation-delay:2.3s; }
  .strip-decor .sd12{ bottom:30%; right:4%; font-size:24px; --r:-10deg; animation-delay:.7s; }
  .strip-decor .sd13{ top:54%;  left:32%;  font-size:20px; --r:16deg; animation-delay:1.4s; }
  .strip-decor .sd14{ top:2%;   right:34%; font-size:24px; --r:0deg;  animation-delay:2.1s; }
  .strip-decor .sd15{ bottom:2%; left:20%; font-size:26px; --r:0deg;  animation-delay:1s; }
  .strip-decor .sd16{ top:34%;  left:60%;  font-size:22px; --r:-4deg; animation-delay:1.7s; }
  @media (max-width:900px){
    .strip-decor .sd{ display:none; }
    .strip-decor .sd1, .strip-decor .sd4, .strip-decor .sd7{ display:block; opacity:0.16; }
  }
  .manual-strip-wrap{
    display:flex;
    align-items:center;
    gap:16px;
  }
  .strip-arrow{
    background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.18);
    color:var(--blanco);
    flex-shrink:0;
  }
  .strip-arrow:hover{ background:var(--rojo); border-color:var(--rojo); }
  .strip-scroll{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    flex:1;
    padding:4px 2px;
    scrollbar-width:none;
  }
  .strip-scroll::-webkit-scrollbar{display:none;}
  .strip-scroll.is-autoplay{ scroll-snap-type:none; }
  .strip-scroll figure{
    scroll-snap-align:start;
    flex:0 0 auto;
    width:130px;
    height:190px;
    border-radius:var(--radio);
    overflow:hidden;
    border:2px solid rgba(255,255,255,0.12);
  }
  .strip-scroll img{
    width:100%; height:100%;
    object-fit:cover;
    object-position:center top;
  }
  @media (max-width:560px){
    .strip-scroll figure{ width:100px; height:146px; }
    .strip-arrow{ width:38px; height:38px; }
  }

  /* ---------- SECTIONS (Gallery / About / FAQ / Contact) ---------- */
  html{scroll-behavior:smooth;}
  .section{padding:72px 0;}
  .section-head{text-align:center; margin-bottom:40px;}
  .section-head span.kicker{
    display:inline-block;
    background:var(--dorado);
    color:var(--blanco);
    font-size:12px; font-weight:800;
    padding:6px 16px; border-radius:30px;
    letter-spacing:1px; text-transform:uppercase;
    margin-bottom:14px;
  }
  .section-head h2{font-size:32px; color:var(--rojo);}
  .section-head p{max-width:560px; margin:12px auto 0; color:#6b5c54; font-size:15px;}

  /* Gallery */
  .gallery-section{background:var(--blanco);}
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
  }
  .gallery-grid figure{
    border-radius:var(--radio);
    overflow:hidden;
    aspect-ratio:1/1;
    box-shadow:0 12px 26px rgba(0,0,0,0.10);
  }
  .gallery-grid img{
    width:100%; height:100%;
    object-fit:cover;
    transition:transform .35s ease;
    cursor:pointer;
  }
  .gallery-grid figure:hover img{transform:scale(1.06);}

  /* Lightbox */
  .lightbox{
    position:fixed;
    inset:0;
    z-index:999;
    background:rgba(0,0,0,0.92);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    cursor:zoom-out;
  }
  .lightbox img{
    max-width:92vw;
    max-height:88vh;
    width:auto;
    background:#fff;
    padding:22px;
    border-radius:20px;
    box-shadow:0 30px 80px rgba(0,0,0,0.5);
  }
  .lightbox-plain img{
    background:transparent;
    padding:0;
    border-radius:12px;
  }
  .lightbox .close{
    position:absolute;
    top:22px; right:28px;
    color:#fff;
    font-size:34px;
    line-height:1;
    font-weight:700;
    cursor:pointer;
  }

  /* About */
  .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
    align-items:center;
  }
  .about-grid img{border-radius:var(--radio); box-shadow:0 20px 40px rgba(0,0,0,0.16);}
  .about-text h3{font-size:22px; color:var(--rojo-oscuro); margin-bottom:14px;}
  .about-text p{color:#5f524b; font-size:15px; margin-bottom:14px;}

  /* FAQ */
  .faq-section{background:var(--blanco);}
  .faq-list{max-width:820px; margin:0 auto;}
  .faq-item{
    border:1px solid #eadfd2;
    border-radius:var(--radio);
    padding:20px 24px;
    margin-bottom:14px;
    background:var(--crema);
  }
  .faq-item h4{font-family:'Poppins',sans-serif; font-weight:700; font-size:16px; color:var(--carbon); margin-bottom:8px;}
  .faq-item p{color:#6b5c54; font-size:14px;}

  /* Contact */
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
  }
  .contact-col-head{
    font-family:'Poppins',sans-serif;
    font-size:18px; font-weight:700;
    color:var(--carbon);
    margin-bottom:6px;
  }
  .contact-col-head + p{
    font-size:14px; color:#6b5c54;
    margin-bottom:22px;
  }
  .contact-info li{display:flex; gap:12px; margin-bottom:18px; font-size:15px; color:#5f524b;}
  .contact-info li strong{display:block; color:var(--carbon);}
  .contact-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    align-content:start;
    background:var(--blanco);
    border:1px solid #f1e3d4;
    border-radius:var(--radio);
    padding:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
  }
  .contact-form .contact-col-head,
  .contact-form > p,
  .contact-form textarea,
  .contact-form button{ grid-column:1 / -1; }
  .contact-form button{ justify-self:start; }
  .contact-form input, .contact-form textarea{
    font-family:'Poppins',sans-serif;
    font-size:14px;
    padding:14px 16px;
    border:1px solid #eadfd2;
    border-radius:12px;
    background:#F6EFEC;
    resize:vertical;
  }
  .contact-form input:focus, .contact-form textarea:focus{
    outline:none;
    border-color:var(--rojo);
    background:var(--blanco);
  }
  .contact-form button{
    align-self:flex-start;
    background:var(--rojo);
    color:var(--blanco);
    border:0;
    padding:14px 34px;
    border-radius:30px;
    font-weight:700; font-size:14px;
    cursor:pointer;
  }
  .contact-form button:disabled{
    background:#d9c9bd;
    cursor:not-allowed;
  }
  .human-check{
    grid-column:1 / -1;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#6b5c54;
    cursor:pointer;
  }
  .human-check input{
    width:18px; height:18px;
    accent-color:var(--rojo);
    cursor:pointer;
  }

  /* ---------- LANDING BLOCKS ---------- */
  /* Showcase de productos */
  .showcase-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
  }
  .showcase-card{
    background:rgba(255,255,255,0.45);
    border:1px solid rgba(255,255,255,0.6);
    border-radius:var(--radio);
    overflow:hidden;
    text-align:center;
    padding-bottom:18px;
  }
  .showcase-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    background:rgba(255,255,255,0.5);
    padding:16px;
  }
  .showcase-card h4{
    font-family:'Poppins',sans-serif;
    font-size:14px; font-weight:700;
    margin-top:14px;
    color:var(--carbon);
  }
  .showcase-card p{font-size:12px; color:#8a7a70; margin-top:3px;}

  /* Capacidades de personalización */
  .caps-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
  }
  .caps-card{
    background:var(--blanco);
    border:1px solid #f1e3d4;
    border-radius:var(--radio);
    padding:28px 24px;
  }
  .caps-card .ico{
    width:52px; height:52px;
    border-radius:14px;
    background:#F3E4E2;
    display:flex; align-items:center; justify-content:center;
    font-size:24px;
    margin-bottom:14px;
  }
  .caps-card h4{
    font-family:'Poppins',sans-serif;
    font-size:16px; font-weight:700;
    color:var(--carbon);
    margin-bottom:8px;
  }
  .caps-card p{font-size:13px; color:#6b5c54;}

  /* Trayectoria / credibilidad */
  .stats-row{display:flex; flex-wrap:wrap; gap:40px; margin-top:26px;}
  .stats-row .stat{flex:1; min-width:120px;}
  .stats-row .stat b{
    display:block;
    font-family:'Archivo Black',sans-serif;
    font-size:30px;
    color:var(--rojo);
  }
  .stats-row .stat span{font-size:13px; color:#6b5c54;}

  .center-btn{text-align:center; margin-top:36px;}

  /* CTA final */
  .cta-final{
    background:#000000;
    color:var(--blanco);
    text-align:center;
    padding:140px 0 80px;
    position:relative;
    overflow:hidden;
  }
  .cta-final .wrap{position:relative; z-index:2;}
  .cta-wave-top{
    position:absolute;
    left:0; right:0; top:-1px;
    width:100%;
    display:block;
    z-index:1;
  }
  .cta-final h2{font-size:32px; margin-bottom:14px;}
  .cta-final p{max-width:520px; margin:0 auto 26px; opacity:0.92; font-size:15px;}
  .cta-final .btn-primary{background:var(--rojo); border-color:var(--rojo);}
  .cta-final .btn-primary:hover{background:var(--rojo-oscuro); border-color:var(--rojo-oscuro);}
  .cta-decor{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
    pointer-events:none;
  }
  .cta-decor .circle{
    position:absolute;
    border-radius:50%;
    border:2px solid rgba(255,255,255,0.055);
  }
  .cta-decor .circle.fill{ border:0; background:rgba(255,255,255,0.028); }
  .cta-decor .k1{ width:420px; height:420px; top:-160px; left:-120px; }
  .cta-decor .k2{ width:240px; height:240px; top:-80px; left:22%; }
  .cta-decor .k3{ width:340px; height:340px; bottom:-160px; right:-100px; }
  .cta-decor .k4{ width:120px; height:120px; bottom:30px; right:16%; }
  .cta-decor .wave{ position:absolute; left:0; width:100%; opacity:0.18; }
  .cta-decor .wave.kw1{ top:30%; }
  .cta-decor .wave.kw2{ top:62%; opacity:0.1; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px){
    header.topnav{flex-wrap:wrap; justify-content:center; gap:12px; padding-bottom:14px;}
    nav.mainlinks{order:3; width:100%;}
    nav.mainlinks ul{justify-content:center; flex-wrap:wrap; gap:10px 20px;}
    nav.mainlinks a{display:inline-block; padding:6px 4px;}
    .hero-grid, .promo-row2, .app-grid, .social-grid,
    .about-grid, .contact-grid{grid-template-columns:1fr;}
    .hero-grid{padding-bottom:80px;}
    .promo-grid{grid-template-columns:1fr 1fr;}
    .gallery-grid{grid-template-columns:1fr 1fr;}
    .showcase-grid{grid-template-columns:1fr 1fr;}
    .caps-grid{grid-template-columns:1fr 1fr;}
    .footer-cols{gap:40px;}
    .footer-logo{margin-right:0; align-self:flex-start;}
    .footer-logo img{height:110px;}
    .footer-top .wrap{justify-content:center; text-align:center;}
    .footer-top .contact{flex-wrap:wrap; justify-content:center; gap:8px 24px;}
    .hero-copy h1{font-size:34px;}
  }
  @media (max-width: 560px){
    .wrap{padding:0 20px;}
    header.topnav{padding:20px 20px 12px;}
    .brand{font-size:22px;}
    nav.mainlinks ul{gap:12px 16px; font-size:13px;}
    .hero-grid{padding:26px 20px 60px; gap:28px;}
    .hero-copy h1{font-size:28px;}
    .hero-copy p{font-size:14px;}
    .section{padding:48px 0;}
    .section-head{margin-bottom:28px;}
    .section-head h2, .cta-final h2{font-size:24px;}
    .caps-grid{grid-template-columns:1fr;}
    .contact-form{grid-template-columns:1fr;}
    .cta-final{padding:100px 0 56px;}
    .stats-row{gap:20px 30px;}
    .stats-row .stat b{font-size:26px;}
    .lightbox{padding:16px;}
  }

  /* ---------- SUBPAGE HERO (gallery / faq / about / contact) ---------- */
  .subhero{
    background:#000000;
    color:var(--blanco);
    position:relative;
    overflow:hidden;
  }
  .subhero > .wrap{
    position:relative;
    z-index:2;
    padding-top:4px;
    padding-bottom:124px;
    text-align:center;
  }
  .subhero .eyebrow{
    display:inline-block;
    background:rgba(255,255,255,0.18);
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
  }
  .subhero h1{font-size:40px; margin:18px 0 12px;}
  .subhero p{max-width:580px; margin:0 auto; opacity:0.92; font-size:15px;}
  .subhero .hero-wave-bottom{
    position:absolute;
    left:0; right:0; bottom:-1px;
    width:100%;
    display:block;
    z-index:1;
  }
  .subhero .hero-decor{position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none;}

  .page-intro{max-width:760px; margin:0 auto 44px; text-align:center; color:#5f524b; font-size:15px;}
  .page-intro p{margin-bottom:12px;}

  /* Team (about) */
  .team-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:10px;}
  .team-card{background:var(--blanco); border:1px solid #f1e3d4; border-radius:var(--radio); padding:24px; text-align:center;}
  .team-card .ava{width:64px; height:64px; border-radius:50%; background:#F3E4E2; display:flex; align-items:center; justify-content:center; font-size:26px; margin:0 auto 12px;}
  .team-card h4{font-family:'Poppins',sans-serif; font-size:15px; font-weight:700; color:var(--carbon);}
  .team-card span{font-size:12px; color:#8a7a70;}

  /* Timeline (about) */
  .timeline{max-width:820px; margin:0 auto;}
  .timeline .row{display:flex; gap:20px; padding:18px 0; border-bottom:1px solid #eadfd2;}
  .timeline .yr{flex:0 0 90px; font-family:'Archivo Black',sans-serif; color:var(--rojo);}
  .timeline .txt{font-size:14px; color:#5f524b;}

  @media (max-width:900px){
    .team-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:560px){
    .subhero h1{font-size:28px;}
    .subhero > .wrap{padding-bottom:64px;}
    .team-grid{grid-template-columns:1fr;}
    .timeline .row{flex-direction:column; gap:4px;}
  }

  /* ---------- SCROLL-TO-TOP ---------- */
  .scroll-top{
    position:fixed;
    right:22px; bottom:22px;
    width:48px; height:48px;
    border-radius:50%;
    border:0;
    background:var(--rojo);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    z-index:900;
    box-shadow:0 10px 24px rgba(0,0,0,0.25);
    display:flex; align-items:center; justify-content:center;
  }
  .scroll-top:hover{ background:var(--rojo-oscuro); }

  /* ---------- CRAFT PHOTO STRIP (pre-footer) ---------- */
  .craft-strip{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  .craft-frame{
    overflow:hidden;
    border:0;
    background:transparent;
    padding:0;
  }
  .craft-track{
    display:flex;
    flex-wrap:nowrap;
    gap:14px;
    width:max-content;
    animation:craft-scroll 55s linear infinite;
    will-change:transform;
  }
  .craft-strip:hover .craft-track{ animation-play-state:paused; }
  .craft-track img{
    height:170px;
    width:auto;
    max-width:none;
    border-radius:10px;
    object-fit:cover;
    flex:0 0 auto;
  }
  @keyframes craft-scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }

  @media (max-width:560px){
    .scroll-top{ right:14px; bottom:14px; width:44px; height:44px; }
    .craft-strip{ padding:0 20px; }
    .craft-track img{ height:130px; }
  }
