:root{
  --rojo:#d90b3f;
  --rojo-oscuro:#b00835;
  --negro:#171717;
  --gris:#6b7280;
  --gris-suave:#9ca3af;
  --gris-claro:#f6f6f6;
  --blanco:#ffffff;
  --borde:#ececec;
  --borde-fuerte:#e4e4e7;
  --sombra-suave:0 10px 30px rgba(0,0,0,.05);
  --sombra-media:0 18px 50px rgba(0,0,0,.08);
  --sombra-fuerte:0 24px 70px rgba(0,0,0,.12);
  --radio:22px;
  --max:1120px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

html,
body{
  overflow-x:hidden;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--negro);
  background:
    radial-gradient(circle at 12% 8%, rgba(217,11,63,.055), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(217,11,63,.035), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(0,0,0,.03), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffafa 42%, #fcfcfc 100%);
  line-height:1.55;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{
  text-decoration:none;
  color:inherit;
}

img,
video,
iframe{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:min(92%, var(--max));
  margin:0 auto;
}

section{
  padding:82px 0;
  position:relative;
  overflow:hidden;
}

section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 100%);
  opacity:.55;
}

.section-head{
  margin-bottom:34px;
  position:relative;
  z-index:1;
}

.section-head h2{
  font-size:clamp(30px, 4vw, 40px);
  margin-bottom:12px;
  line-height:1.1;
  letter-spacing:-0.02em;
}

.section-head p{
  color:var(--gris);
  max-width:700px;
  font-size:17px;
}

.section-head-center{
  text-align:center;
}

.section-head-center p{
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:90;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:0 8px 24px rgba(0,0,0,.03);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.4px;
  transition:transform .22s ease;
}

.brand:hover{
  transform:translateY(-1px);
}

.brand-badge{
  width:42px;
  height:42px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--rojo) 0%, #ef335f 100%);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(217,11,63,.28);
}

.brand-subtitle{
  display:block;
  color:#777;
  font-weight:400;
  letter-spacing:0;
  margin-top:2px;
}

.menu{
  display:flex;
  align-items:center;
  gap:24px;
  color:#222;
  font-size:14px;
}

.menu a{
  position:relative;
  transition:color .2s ease;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:var(--rojo);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}

.menu a:hover{
  color:var(--rojo);
}

.menu a:hover::after{
  transform:scaleX(1);
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(135deg, var(--rojo) 0%, #ef335f 100%);
  color:#fff;
  padding:12px 20px;
  border-radius:14px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow:0 12px 28px rgba(217,11,63,.25);
}

.cta:hover{
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 18px 40px rgba(217,11,63,.35);
  filter:saturate(1.05);
}

.cta-outline{
  background:transparent;
  color:var(--rojo);
  border:1px solid rgba(217,11,63,.22);
  box-shadow:none;
}

.cta-outline:hover{
  background:rgba(217,11,63,.06);
  color:var(--rojo-oscuro);
  box-shadow:none;
  filter:none;
}

.card{
  background:rgba(255,255,255,.96);
  border:1px solid var(--borde);
  border-radius:var(--radio);
  padding:28px;
  box-shadow:var(--sombra-suave);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position:relative;
  z-index:1;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--sombra-media);
  border-color:rgba(217,11,63,.14);
}

.card h3{
  margin-bottom:10px;
  font-size:24px;
  line-height:1.2;
}

.card p{
  color:var(--gris);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.contact-list{
  display:grid;
  gap:14px;
  margin-top:10px;
}

.contact-item{
  border:1px solid var(--borde);
  border-radius:18px;
  padding:16px 18px;
  background:linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-item:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(0,0,0,.06);
  border-color:rgba(217,11,63,.16);
}

.contact-item small{
  color:var(--gris);
  display:block;
  margin-bottom:4px;
}

.contact-item strong{
  font-size:17px;
  line-height:1.45;
}

.process-section{
  padding-top:30px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
  position:relative;
  z-index:1;
}

.process-card{
  background:linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:24px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}

.process-step{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  background:linear-gradient(135deg, var(--rojo) 0%, #ef335f 100%);
  color:#fff;
  font-weight:800;
  box-shadow:0 12px 24px rgba(217,11,63,.22);
}

.process-card h3{
  font-size:22px;
  line-height:1.15;
  margin-bottom:10px;
}

.process-card p{
  color:var(--gris);
}

.proof-section{
  padding:24px 0 12px;
}

.proof-shell{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:start;
  position:relative;
  z-index:1;
}

.proof-copy h2{
  font-size:clamp(32px, 4vw, 44px);
  line-height:1.08;
  margin-bottom:14px;
  letter-spacing:-0.02em;
}

.proof-copy p{
  color:var(--gris);
  font-size:17px;
  max-width:560px;
}

.proof-metrics{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.proof-metric{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.proof-metric strong{
  display:block;
  margin-bottom:4px;
  font-size:16px;
}

.proof-metric span{
  color:var(--gris);
  font-size:14px;
}

.proof-grid{
  display:grid;
  gap:18px;
}

.proof-card{
  background:
    radial-gradient(circle at top right, rgba(217,11,63,.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffafb 100%);
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:24px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}

.proof-quote{
  font-size:19px;
  line-height:1.5;
  color:var(--negro);
  margin-bottom:16px;
}

.proof-card strong{
  color:var(--rojo-oscuro);
  font-size:14px;
  letter-spacing:.02em;
}

.lead-section{
  padding-top:24px;
}

.lead-shell{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
  position:relative;
  z-index:1;
}

.lead-copy{
  padding:16px 0;
}

.lead-copy h2{
  font-size:clamp(32px, 4vw, 44px);
  line-height:1.08;
  margin-bottom:14px;
  letter-spacing:-0.02em;
}

.lead-copy p{
  color:var(--gris);
  font-size:17px;
  max-width:560px;
}

.lead-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 0;
}

.lead-trust-item{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(217,11,63,.14);
  border-radius:999px;
  padding:10px 14px;
  font-size:13px;
  font-weight:700;
  color:#3a3a3a;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.lead-points{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.lead-points div{
  border:1px solid rgba(217,11,63,.12);
  border-radius:18px;
  padding:14px 16px;
  background:rgba(255,255,255,.86);
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.lead-card{
  background:rgba(255,255,255,.97);
  border:1px solid var(--borde);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--sombra-media);
}

.lead-form{
  display:grid;
  gap:18px;
}

.lead-form-head h3{
  font-size:26px;
  line-height:1.1;
  margin-bottom:8px;
}

.lead-form-head p{
  color:var(--gris);
  font-size:15px;
}

.lead-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.lead-field{
  display:grid;
  gap:8px;
}

.lead-field span{
  font-size:14px;
  font-weight:700;
  color:#262626;
}

.lead-field input,
.lead-field select,
.lead-field textarea{
  width:100%;
  border:1px solid var(--borde-fuerte);
  border-radius:14px;
  background:#fff;
  padding:13px 14px;
  font:inherit;
  color:var(--negro);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.lead-field textarea{
  min-height:120px;
  resize:vertical;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus{
  border-color:rgba(217,11,63,.48);
  box-shadow:0 0 0 4px rgba(217,11,63,.10);
}

.lead-field-full{
  grid-column:1 / -1;
}

.lead-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.lead-note{
  color:var(--gris);
  font-size:14px;
  max-width:380px;
}

.lead-status{
  min-height:24px;
  color:var(--rojo-oscuro);
  font-size:14px;
}

.faq-section{
  padding:20px 0 30px;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  position:relative;
  z-index:1;
}

.faq-item{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  padding:18px 20px;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-weight:700;
  line-height:1.35;
  padding-right:28px;
  position:relative;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:-2px;
  font-size:22px;
  line-height:1;
  color:var(--rojo);
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-item p{
  margin-top:14px;
  color:var(--gris);
}

.cta-band{
  padding:42px;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(135deg, var(--rojo) 0%, #ef335f 100%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  box-shadow:0 24px 60px rgba(217,11,63,.22);
  position:relative;
  z-index:1;
}

.cta-band h3{
  font-size:clamp(30px, 4vw, 40px);
  margin-bottom:10px;
  line-height:1.08;
  letter-spacing:-0.02em;
}

.cta-band p{
  max-width:700px;
  opacity:.96;
  font-size:17px;
}

.cta-band-btn{
  background:#fff;
  color:var(--rojo);
  border:none;
  box-shadow:0 14px 28px rgba(0,0,0,.12);
}

.cta-band-btn:hover{
  background:#fff;
  color:var(--rojo-oscuro);
}

.footer{
  padding:30px 0 44px;
  color:var(--gris);
  font-size:14px;
}

.footer-line{
  border-top:1px solid var(--borde);
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.center-actions{
  margin-top:34px;
  text-align:center;
}

.mb-18{
  margin-bottom:18px;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .75s ease, transform .75s ease;
  will-change:opacity, transform;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

::selection{
  background:rgba(217,11,63,.16);
}

.aliados-wall{
  padding:34px 0 82px;
}

.aliados-wall .section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}

.aliados-bloque + .aliados-bloque{
  margin-top:34px;
}

.aliados-titulo{
  margin:0 0 18px;
  font-size:22px;
  line-height:1.2;
  text-align:center;
}

.logos-wall{
  display:grid;
  gap:22px;
  align-items:stretch;
}

.logos-wall-3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.logos-wall-5{
  grid-template-columns:repeat(5, minmax(0, 1fr));
}

.logo-tile{
  background:#fff;
  border-radius:20px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  min-height:150px;
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.logo-tile:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 32px rgba(0,0,0,.12);
  border-color:rgba(178,30,50,.18);
}

.logo-tile img{
  max-width:100%;
  max-height:88px;
  object-fit:contain;
}

.logo-tile img[alt="Prfit"]{
  max-height:74px;
}

.logo-tile img[alt="La Gelaterie"]{
  max-height:78px;
}

.logo-tile img[alt="Paltetti"]{
  max-height:72px;
}

.logo-tile img[alt="La Calaca"]{
  max-height:70px;
}

.trabajamos-flip{
  padding:82px 0;
}

.trabajamos-flip .section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 36px;
}

.flip-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.flip-card{
  min-height:220px;
  border-radius:22px;
  background:
    radial-gradient(circle at top right, rgba(217,11,63,.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-align:left;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.flip-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(0,0,0,.12);
  border-color:rgba(217,11,63,.18);
}

.flip-card-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  background:linear-gradient(135deg, var(--rojo) 0%, #ef335f 100%);
  color:#fff;
  font-weight:800;
  font-size:14px;
  box-shadow:0 12px 24px rgba(217,11,63,.24);
}

.flip-card h3{
  font-size:26px;
  line-height:1.1;
  margin-bottom:12px;
}

.flip-card p{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:var(--gris);
}

/* RESPONSIVE UNIVERSAL */
@media (max-width: 1100px){
  .logos-wall-5{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px){
  .container{
    width:min(100% - 32px, var(--max)) !important;
  }

  .proof-shell,
  .lead-shell,
  .contact-grid,
  .process-grid,
  .flip-grid{
    gap:20px !important;
  }
}

@media (max-width: 980px){
  section{
    padding:68px 0;
  }

  section::before{
    opacity:.35;
  }

  .process-grid,
  .proof-shell,
  .contact-grid,
  .lead-shell,
  .flip-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .faq-grid{
    grid-template-columns:1fr;
  }

  .menu{
    display:none;
  }

  .cta-band{
    padding:34px 24px;
  }

  .pedido-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 820px){
  .logos-wall-3{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .logos-wall-5{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .container{
    width:min(100% - 24px, var(--max)) !important;
  }

  section{
    padding:56px 0 !important;
  }

  .nav{
    padding:12px 0 !important;
  }

  .brand{
    gap:10px !important;
  }

  .brand-badge{
    width:38px !important;
    height:38px !important;
    border-radius:10px !important;
    font-size:11px !important;
  }

  .section-head{
    margin-bottom:24px !important;
  }

  .section-head h2{
    font-size:clamp(28px, 7vw, 34px) !important;
    line-height:1.08 !important;
  }

  .section-head p{
    font-size:16px !important;
    line-height:1.55 !important;
  }

  .card{
    padding:20px !important;
    border-radius:20px !important;
  }

  .card h3{
    font-size:22px !important;
  }

  .contact-item strong{
    font-size:16px !important;
  }

  .cta{
    width:100%;
    min-height:48px;
    padding:12px 16px !important;
  }

  .cta-band{
    padding:24px 18px !important;
    border-radius:22px !important;
  }

  .cta-band h3{
    font-size:clamp(26px, 7vw, 32px) !important;
  }

  .cta-band p{
    font-size:15px !important;
  }

  .proof-copy h2,
  .lead-copy h2{
    font-size:clamp(28px, 8vw, 36px) !important;
  }

  .proof-copy p,
  .lead-copy p{
    font-size:16px !important;
  }

  .lead-trust{
    gap:8px !important;
  }

  .lead-trust-item{
    width:100%;
    border-radius:16px !important;
  }

  .footer{
    padding:24px 0 36px !important;
  }
}

@media (max-width: 640px){
  .trabajamos-flip{
    padding:68px 0;
  }

  .aliados-wall{
    padding:28px 0 68px;
  }

  .contact-grid,
  .process-grid,
  .proof-shell,
  .lead-shell,
  .lead-grid,
  .flip-grid,
  .faq-grid,
  .logos-wall-3,
  .logos-wall-5{
    grid-template-columns:1fr;
    gap:16px;
  }

  .flip-card,
  .logo-tile{
    padding:18px;
  }

  .flip-card{
    min-height:auto;
  }

  .flip-card h3{
    font-size:22px;
  }

  .flip-card p{
    font-size:15px;
  }

  .logo-tile{
    min-height:120px;
  }

  .logo-tile img{
    max-height:72px;
  }

  .footer-line{
    flex-direction:column;
  }

  .lead-card{
    padding:20px;
    border-radius:22px;
  }

  .process-card,
  .proof-card,
  .faq-item{
    padding:18px;
  }

  .lead-actions .cta{
    width:100%;
  }
}

@media (min-width: 1600px){
  :root{
    --max:1320px;
  }

  body{
    font-size:18px;
  }

  .section-head h2{
    font-size:48px;
  }

  .section-head p,
  .proof-copy p,
  .lead-copy p,
  .cta-band p{
    font-size:18px;
  }
}

/* BOTON IR A PEDIDO EN CATALOGO */
.catalogo-acciones{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn-ir-pedido{
  background:#2bb673;
  color:#fff;
  padding:8px 14px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  font-size:13px;
  box-shadow:0 6px 14px rgba(43,182,115,0.25);
  transition:.2s ease;
}

.btn-ir-pedido:hover{
  background:#239e62;
  transform:translateY(-1px);
}

@media (max-width:700px){
  .catalogo-acciones{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .btn-ir-pedido{
    width:100%;
    text-align:center;
  }
}