/* ---------------- RESET ---------------- */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#ffffff;
    color:#333;
    font-family:'Inter',sans-serif;
}
/* ========  TOP BAR  ======== */
.topbar{
    background:linear-gradient(180deg,#9c0000 0%,#c90000 100%);
    color:#fff;
    font-size:15px;
    line-height:48px;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1200;
    transition: transform .25s ease;
}
.topbar.is-hidden{ transform: translateY(-100%); }
.topbar__inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1250px;
    margin:0 auto;
    padding:0 20px;
}
.topbar__right{
    display:flex;
    align-items:center;
    gap:100px;
    font-weight:100;
}
.topbar .dot{font-size:20px;line-height:0;position:relative;top:-1p;} 

.header{
    position:fixed;      
    top:82px;               
    left:0;width:100%;
    z-index:1190;
    transition: top .22s ease, transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.header__inner{
    max-width:1200px;      
    margin:0 auto;
    padding:22px 24px;    
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.brand img{
    height:46px;         
}

.nav{
    display:flex;
    align-items:center;
    gap:40px;               
    font-size:18px;     
}
.container{
    max-width:1200px;
    margin:0 auto;      
    padding:0 24px;
  } 
  
.nav__link{
    color:#fff;
    text-decoration:none;
}
.nav__link:hover,
.nav__link:focus{opacity:.85;}
.nav__link,
.nav__btn{
  font-weight:300;          
  text-shadow: 0 2px 3px rgba(0,0,0,.20); 
}
.nav__link.act,
.nav__btn.act{
  font-weight:700;           
  text-shadow: 0 3px 4px rgba(0,0,0,.25);    
}
.nav__btn{
    display:inline-block;
    background:#fff;
    color:#000;
    padding:9px 30px;
    border-radius:10px;
    font-weight:400;      
    font-size:17px;
    box-shadow:0 5px 12px rgba(0,0,0,.22);
    transition:transform .2s,box-shadow .2s;
    text-decoration:none;
}
.nav__btn.act{
  background:#CA0001 !important;
  color:white !important;
  box-shadow:0 6px 14px rgba(0,0,0,.35);
}
.nav__btn:hover{
    transform:translateY(-2px);
    box-shadow:0 9px 16px rgba(0,0,0,.25);
}

/* Header visible/hidden on scroll */
.header.is-hidden{ transform: translateY(-130%); }
.header.is-scrolled{
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.header.is-scrolled .header__inner{
  padding: 14px 20px;
}
.header.is-scrolled .nav__link{
  color:#111;
  text-shadow:none;
}
.header.is-scrolled .nav__link.act{
  color:#CA0001;
}
.header.is-scrolled .brand img{
  height:42px;
}
.header.is-scrolled .nav__btn{
  box-shadow:0 6px 14px rgba(0,0,0,.18);
}
body.menu-open .header,
body.menu-open .topbar{
  transform:none !important;
}

/* ---------- HERO SLIDER tamaños y posiciones ---------- */

.hero-slider{position:relative;height:950px;overflow:hidden;}

.hero-slider .slide{
  position:absolute;inset:0;
  background:var(--bg) center/cover no-repeat;
  opacity:0;transition:opacity .7s ease;
}
.hero-slider .slide.active{opacity:1;}
.hero-slider::before{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(
                180deg,
                rgba(0,0,0,.40)   0%,     /* casi imperceptible arriba  */
                rgba(0,0,0,.20)  35%,     /* transición suave           */
                rgba(0,0,0,.35)  65%,     /* gris medio                 */
                rgba(89,89,89,.90) 100%   /* gris #575757 muy oscuro    */
              );
    z-index:2;
  }

.hero-slider .hero-content{
  position:absolute;       
  top:310px;                 
  left:170px;
  z-index:2;max-width:580px;
  color:#fff;
  text-shadow: 0 3px 4px rgba(0,0,0,.25);
}
.hero-content.nowrap h1{ white-space:nowrap; }
.hero-slider h1{font:600 40px 'Inter',sans-serif;margin-bottom:16px;}
.hero-slider p {font:300 20px 'Inter',sans-serif;opacity:.95;}

.slider-dots{
    position:absolute;
    left:50%; bottom:350px;        
    transform:translateX(-50%);
    display:flex; gap:7px;
    z-index:5;                   
  }

  .slider-dots span{
    width:20px; height:12px;          
    border-radius:44px;
    background:rgba(255,255,255,.45);
    transition:.3s;
  }
  
  .slider-dots span.active{
    width:40px; height:12px;          
    border-radius:44px;               
    background:#ffffff;
  }
/* Caja de beneficios flotante */
.hero-slider .beneficios-box{
  position:absolute;left:50%;bottom:50px;transform:translateX(-50%);
  width:78%;padding:64px 20px;z-index:3;
  display:flex;justify-content:space-around;
  background:#fff;border-radius:10px;
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}
.hero-slider .beneficios-box::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:4px;
      box-shadow:0 5px 12px rgba(0,0,0,.22);
}

/* Botón volver arriba */
.scroll-top-btn{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #ca0001;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, filter .2s ease;
  z-index: 1200;
}
.scroll-top-btn.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover{
  filter: brightness(1.08);
}
.beneficio{flex:1;text-align:center;position:relative;}
.beneficio:not(:last-child)::after{
  content:"";position:absolute;top:0;right:0;width:1.5px;height:100%;
  background:#c90000;
}
.beneficio i{font-size:32px;color:#CA0001;margin-bottom:12px;}
.beneficio h4{font:600 18px 'Inter',sans-serif;color:#CA0001;margin-bottom:6px;}
.beneficio p {font:400 14px/1.45 'Inter',sans-serif;color:#555;}

/* ---------------- SECCIONES ---------------- */
.section{
    padding:70px 0;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.section h2{
    font-size:28px;
}

.ver-todo{
    background:#CA0001;
    color:white;
    border:none;
    padding:10px 16px;
    border-radius:6px;
    cursor:pointer;
}
/* ---------------- MARCAS ---------------- */
.section-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start; 
    margin-bottom:60px;     
  }
  
  .section-header h2{
    font:500 39px/1.1 'Inter',sans-serif;  
    margin:0 0 10px;   
    color:#070707;    
    margin-bottom:15px;          
  }
  
  .section-header .subtitle{
    font:italic 19px/1.35 'Inter',sans-serif;
    color:#757575;
    margin:0;                              
    max-width:900px;  
    font-weight: 100;                     
  }
  
  #brands{             
    background:#ffffff;       
    padding:90px 0;            
  }

  .section-header .title-block{
    max-width:65%;         
  }
.cta-all{
    display:inline-flex;               
    align-items:center;
    gap:14px;               
    text-decoration:none;                  
  }
  
  .cta-label{
    position:relative;
    background:#CA0001;
    color:#fff;
    font:400 15px 'Inter',sans-serif;
    padding:10px 26px 12px;              
    transition:.25s;
    clip-path:polygon(14px 0,100% 0,100% 100%,0 100%,0 14px);
    border-radius:8px;
  }

  .cta-arrow{
    display:flex;align-items:center;justify-content:center;
    width:50px;height:40px;
    background:#970001;              
    color:#fff;
    font-size:25px; line-height:1;
    border-radius:8px;
    box-shadow:0 3px 8px rgba(0,0,0,.18);
    transition:.25s;
  }
  
  .cta-all:hover .cta-label,
  .cta-all:hover .cta-arrow{
    transform:translateY(-3px);
  }

.brands-slider,
.brands-slider *{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

/* =========================
   CARRUSEL MARCAS
========================= */

:root{
  --brand-bubble: 178px;
}

.brands-slider{
    position: relative;
    overflow: visible;  
    padding-inline: 70px; /* gutter como Destacados */

  }
  
  .brands-window{
    overflow-x: hidden;   
    overflow-y: visible;  
    padding-bottom: 28px; 
    padding-inline: 12px; /* evita que se recorte el círculo/sombra */
    box-sizing: border-box;
  }
  
  .brands-track{
    display: flex;
    gap: 1rem;
    list-style: none;
    transition: transform .4s ease;
    padding: 0;         
    will-change: transform;
    padding-inline: 0;
 
  }
  
  .brands-track li{
    flex: 0 0 calc(var(--brand-bubble) + 20px);
    text-align: center;
    position: relative;
    padding: 10px;         
    box-sizing: border-box;
  }
  
  .brands-track li:hover{ z-index: 5; }
  
  .brand-bubble{
    display: block;
    width: var(--brand-bubble);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    transition: transform .25s ease;
    transform-origin: center;
  }
  
  .brands-track li:hover .brand-bubble{
    transform: scale(1.08);
  }

  /* En touch, evitamos hover "pegado" que genera superposición */
  @media (hover: none){
    .brands-track li:hover .brand-bubble{ transform:none; }
    .brands-track li:hover{ z-index:auto; }
  }
  
  .brand-bubble img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
 
  .brands-track span{
    display: block;
    margin-top: 1rem;
    font: 500 1.1rem/1 "Roboto", sans-serif;
    color: #000;
    white-space: nowrap; 
    max-width: var(--brand-bubble);
    margin-inline: auto;
    overflow: hidden;
    text-overflow: ellipsis;
  }
 
  .brand-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
  background: transparent !important;
    background-color: transparent !important;
    font-size: 2.5rem;
    line-height: 1;
    color: #757575;
    cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 0;
  box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 30;
  }
  
  .brand-nav:hover,
  .brand-nav:focus{
    color: #7b0000;
    outline: none;
  }
  
  .brand-nav.prev{ left: 6px; }
  .brand-nav.next{ right: 6px; }
  

  .brands-dots{
    display: flex;
    justify-content: center;
    gap: .65rem;
    margin-top: 14px;
    margin-bottom: 58px;
    position: relative;
    z-index: 5;
 
  }
  
  .brands-dots button{
    border: none;
    width: 1rem;
    height: .55rem;
    border-radius: .5rem;
    background: #dca2a2;
    cursor: pointer;
  }
  
  .brands-dots button.is-active{
    background: #7b0000;
    width: 2.5rem;
  }
/* ---------------- BANNER ROJO ---------------- */
.banner-img{
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .banner-img img{
    display: block;
    width: 100%;
    height: auto;
    max-width: none;  
  }
  
/* ---------------- PRODUCTOS ---------------- */
.featured-slider{
    position: relative;
    overflow: visible;
    padding-inline: 70px;
  }
  
  .featured-window{
    overflow: hidden;
    padding: 18px 0 40px;  
    margin: -18px 0 -40px;  
    position: relative;
    z-index: 1;
  }
  
  
  .featured-track{
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform .4s ease;
    will-change: transform;
    overflow: visible;
  }
  
  .featured-item{
    flex: 0 0 calc((100% - 2*28px) / 3);
    overflow: visible;
    position: relative;
  }
  
  /* Card */
  .featured-card{
    position: relative;
    display: block;
    background: transparent;    
    text-decoration: none;
    color: #111;
    overflow: visible;
  }
  
  .featured-inner{
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    min-height: 420px;
    overflow: hidden;        
    transition: transform .18s ease, box-shadow .18s ease;
  }
  
  
  .featured-card:hover .featured-inner{
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
  }

.featured-inner{
    position: relative;
    display:flex;
    flex-direction:column;
  }
  
  .featured-inner::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;                
    height:10px;
    background:#CA0001;
    border-radius: 0 0 14px 14px; 
    opacity:0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 2;
  }
 
  .featured-card:hover .featured-inner::after{
    opacity:1;
    transform: scaleY(1);
  }
  
  /* Imagen */
  .featured-img{
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fff;
  }
  
  .featured-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* Texto */
  .featured-title{
    font:300 17px 'Inter',sans-serif;
    padding: 10px 18px 0 18px;
    margin: 0;
    line-height:1.25;
    min-height: 4.1em; /* 3 líneas + margen (no corta letras) */
    margin-bottom: 17px;
    margin-top: 20px;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    line-clamp:3;
    overflow:hidden;
  }
  
  .featured-price{
    padding: 14px 18px 0 18px;
    margin: 0;
    color: #CA0001;
    font:600 22px 'Inter',sans-serif;
  }
  
  .featured-installments{
    padding: 10px 18px 30px 18px;
    margin: 0;
    color: #CA0001;
    font:300 15px 'Inter',sans-serif;
    line-height: 1.3;
    min-height: 2.85em; /* 2 líneas + margen */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  /* En touch, evitamos hover "pegado" que deja una card distinta */
  @media (hover: none){
    .featured-card:hover .featured-inner{
      transform:none;
      box-shadow: 0 6px 16px rgba(0,0,0,.12);
    }
    .featured-card:hover .featured-inner::after{
      opacity:0;
      transform: scaleY(0);
    }
  }
  
  /* Flechas */
  .featured-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 2.5rem;
    line-height: 1;
    color: #777;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index: 10;
  }
  
  .featured-nav:hover,
  .featured-nav:focus{ color:#7b0000; outline:none; }
  
  .featured-nav.prev{ left: 10px; }
  .featured-nav.next{ right: 10px; }
  
  /* Dots */
  .featured-dots{
    display: flex;
    justify-content: center;
    gap: .65rem;
    margin-top: 22px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }
  
  .featured-dots button{
    border: none;
    width: 1rem;
    height: .55rem;
    border-radius: .5rem;
    background: #dca2a2;
    cursor: pointer;
  }
  
  .featured-dots button.is-active{
    background: #7b0000;
    width: 2.5rem;
  }
/* ===== NEWSLETTER ===== */
.newsletter{
    position: relative;
    width: min(1200px, 100%);
    margin: 70px auto;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 10px;
  }
  
  /* LA IMAGEN ES EL FONDO */
  .newsletter img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* TEXTO FLOTANTE */
  .newsletter-content{
    position: absolute;
    top: 50%;
    right: 210px;
    transform: translateY(-50%);
    max-width: 420px;
    color: white;
  }
  
  /* TITULO */
  .newsletter-content h3{
    margin: 0 0 30px 0;
    font: 600 35px/1.1 "Inter", sans-serif;
  }
  
  /* SUBTITULO */
  .newsletter-content p{
    margin: 30px 0px 30px 0;
    font: 500 19px/1.4 "Inter", sans-serif;
  }
  
  /* FORM */
  .newsletter-form{
    position: relative;
    width: 120%;       
    max-width: 720px; 
  }
  .newsletter-form input{
    width: 100%;
    height: 64px;                
    padding: 0 78px 0 26px;     
  
    border: none;
    border-radius: 12px;
    outline: none;
  
    font: 100 18px "Inter", sans-serif;
    color: #333;
  
    background: #fff;
    box-shadow: 0 14px 28px rgba(0,0,0,.22);
  }
  
  .newsletter-form input::placeholder{
    color: #777;
  }
  .newsletter-btn{
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .newsletter-icon{
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #7a7a7a;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: .2s;
    transform: rotate(45deg); 
  }
  .newsletter-form:hover .newsletter-icon{
    transform: translateX(5px);
    stroke: #4a4a4a;
  }
  .newsletter-form{
    position: relative;
    width: 100%;
    max-width: 640px;
  }
  .newsletter-form button{
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
  
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
  
    display: grid;
    place-items: center;
    padding: 0;
  }

  .newsletter-form button:hover .arrow{
    color: #444;
  }

/* ========== CATEGORÍAS: "Nuestros productos" ========== */

.cats-slider{
    position: relative;
    overflow: visible;
    padding-inline: 70px; 
  }
  
  .cats-window{
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  /* pista */
  .cats-track{
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform .4s ease;
    will-change: transform;
  }
  
  .cats-item{
    flex: 0 0 calc((100% - 2*28px) / 3);
  }
  
  .cats-card{
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 18px;
    overflow: hidden; /* ESTE es el que soluciona el problema */
    transition: transform .16s ease, box-shadow .16s ease;
  }
  
  .cats-card img{
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    transition: transform .5s ease, filter .35s ease;
  }
  .cats-card:hover{
    transform: translateY(-6px);
  }
  .cats-card:hover img{
    transform: scale(1.06);
  }
  
 
.cats-label{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 40%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom: 22px;
  font: 600 22px/1 "Inter", sans-serif;
  color:#fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  z-index: 3;
  transition: transform .25s ease, letter-spacing .25s ease, text-shadow .25s ease;
}
  
  .cats-nav{
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    border:none;
    background:none;
    font-size: 2.5rem;
    line-height:1;
    color:#777;
    cursor:pointer;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index: 10;
  }
  .cats-nav:hover,
  .cats-nav:focus{ color:#7b0000; outline:none; }
  
  .cats-nav.prev{ left: 10px; }
  .cats-nav.next{ right: 10px; }
  
  .cats-card::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0));
    opacity:0;
    transition: opacity .35s ease;
    z-index:2;
  }

  .cats-dots{
    display:flex;
    justify-content:center;
    gap:.65rem;
    margin-top: 26px;
    margin-bottom: 30px;
  }
  .cats-dots button{
    border:none;
    width: 1rem;
    height: .55rem;
    border-radius: .5rem;
    background:#dca2a2;
    cursor:pointer;
  }
  .cats-dots button.is-active{
    background:#7b0000;
    width: 2.5rem;
  }

/* ---------------- CONTACTO ---------------- */

.section__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin-bottom:78px;

  }
  
  .section__title{
    font-size:56px;
    font-weight:800;
    margin:0;
  }
  
  .cta{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
  }
  
  .cta__label{
    background:#CA0001;
    color:#fff;
    font-weight:700;
    padding:12px 26px;
    border-radius:10px;
    line-height:1;
  }
  
  .cta__icon{
    background:#8e1c13;
    color:#fff;
    font-weight:800;
    padding:12px 18px;
    border-radius:6px;
    line-height:1;
    font-size:20px;
  }
  

  .contact{
    display:flex;
    align-items:center;
    gap:58px;
  }
  
  .contact__img{
    flex: 0 0 560px; 
  }
  
  .contact__img img{
    width:100%;
    height:auto;
    display:block;
    border-radius:14px;
    object-fit:cover;
  
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 14%);
  }
  
  .contact__list{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:40px;
  }
  
  .infoBox{
    position:relative;
    display:flex;
    align-items:center;
    gap:22px;
    background:#fff;
    padding:22px 28px;
    border-radius:4px;
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
    min-height:88px;
  }
  
  .infoBox::after{
    content:"";
    position:absolute;
    top:12px;
    bottom:12px;
    right:0;
    width:2px;
  }
 
  .infoIcon{
    width:42px;
    height:42px;
    min-width:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#CA0001;
  }
  
  .infoIcon svg{
    width:30px;
    height:30px;
    stroke:currentColor;
    stroke-width:2;
    fill:none;
  }

  .infoText{ display:flex; flex-direction:column; gap:8px; }
  
  .infoTitle{
    font-size:17px;
    font-weight:300;
    color:#111;
    margin-bottom: 7px;
  }
  
  .infoSub{
    font-size:14px;
    font-weight:300;
    color:#CA0001;
  }
  
  /* ===== FOOTER ===== */

.site-footer{
    background:#EDEDED;
    padding:0;
  }
  
  .footer-topline{
    height:14px;
    background:linear-gradient(180deg,#9c0000 0%,#c90000 100%);
  }
  .footer-grid{
    display:grid;
    grid-template-columns: 1.2fr 1.1fr .7fr;
    gap: 80px;
    padding: 80px 0 120px;
    align-items:start;
  }
  
  .footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;     
    text-align:center;    
  }
  
  .footer-logo{
    width:360px;
    max-width:100%;
    height:auto;
    display:block;
    transform: translateX(18px);
  }
  .footer-tagline{
    margin-top:12px;
    font-style:italic;
    font-weight:400;
    font-size:20px;
    color:#CA0001;
  }
  
  /* Info (col 2) */
  .footer-info{
    display:flex;
    flex-direction:column;
    gap: 42px;
    padding-top: 10px;
  }
  
  .footer-block{
    display:flex;
    flex-direction:column;
    gap: 8px;
  }
  
  .footer-main{
    margin:0;
    font-size: 16px;
    font-weight: 300;
    color:#111;
  }
  
  .footer-sub{
    margin:0;
    font-size: 16px;
    font-weight: 300;
    color:#CA0001;
  }
  
  .footer-links{
    display:flex;
    flex-direction:column;
    gap: 25px;
    padding-top: 10px;
  }
  
  .footer-links a{
    text-decoration:none;
    color:#111;
    font-size: 16px;
    font-weight: 300;
  }
  
  .footer-links a:hover{
    color:#CA0001;
  }
  
  /* ===== HERO SUBPÁGINAS (Quienes Somos) ===== */

.page-hero{
  position: relative;
  width: 100%;
  height: clamp(450px, 67vh, 740px);
  overflow: hidden;
}

.page-hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay{
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(117,117,117,0.00) 0%,
      rgba(117,117,117,0.18) 35%,
    );
}

.page-hero__content{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(44px, 7vh, 100px);
}

.page-hero__title{
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 48px;
  letter-spacing: .2px;
  text-shadow: 0 5px 22px rgba(0,0,0,.35);
}

.page-hero__sub{
  margin: 12px 0 0;
  color: rgba(255,255,255,.92);
  font-weight: 400;
  font-size: clamp(14px, 1.45vw, 20px);
  text-shadow: 0 4px 18px rgba(0,0,0,.2);
}

/* ===== SECCION ABOUT ===== */

.about{
  padding:110px 0;
  margin-bottom: -40px;
}

.about__grid{
  display:grid;
  grid-template-columns: 520px 1fr;
  align-items:center;
  gap:90px;
}

/* Imagen */
.about__img img{
  width:100%;
  display:block;

}

/* Texto */
.about__content h2{
  font-size:40px;
  margin-bottom:40px;
  font-weight:500;
  color:#000;
}

.about__content p{
  font-size:20px;
  line-height:1.6;
  color:#222;
  margin-bottom:28px;
  max-width:620px;
  font-weight:200;
}
.about__highlight{
  color:#CA0001;
  font-weight:500;
}

.about__line{
  width:140px;
  height:14px;
  background:linear-gradient(180deg,#9c0000 0%,#c90000 100%);
  margin-top:45px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

/* ===== BENEFITS / POR QUE ELEGIRNOS ===== */

.benefits{
  padding:90px 0 110px;
  margin-top: -70px;
}

.benefits__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
}

.benefit{
  position:relative;
  border-radius:16px;
  overflow:hidden;
}

.benefit img{
  width:100%;
  display:block;
}

.benefit__content{
  position:absolute;
  left:0;
  right:0;
  bottom:38px;
  padding:0 32px;
  text-align:center;
}


.benefit__content h3{
  font-size:22px;
  font-weight:700;
  color:#CA0001;
  margin-bottom:19px;
}


.benefit__content p{
  font-size:17px;
  line-height:1.45;
  color:#2b2b2b;
  max-width:260px;
  margin:0 auto;
}


.work{
  padding:90px 0 120px;
}

.work h2.work__title{
  font-size: clamp(40px, 3vw, 40px) !important;
  font-weight: 500 !important;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 90px;
  color:#111;
}

.work__steps{
  --red:#CA0001;
  --icon:86px;
  --border:7px;
  --line:3px;
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:80px;
  padding-top:0;
  align-items:center; 
}


.work__steps::before{
  content:"";
  position:absolute;
  top: calc(var(--icon) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: var(--line);
  background: var(--red);
  z-index: 1;
}

.work__icon{
  width: var(--icon);
  height: var(--icon);
  border-radius:50%;
  border: var(--border) solid var(--red);
  background:#fff;

  margin:0 auto 60px;
  position:relative;
  z-index: 3;
  box-sizing:border-box;
}

.work__icon::after{
  content:"";
  position:absolute;

  width:30px;
  height:18px;

  border-left:8px solid var(--red);
  border-bottom:8px solid var(--red);

  left:50%;
  top:50%;
  transform: translate(-48%, -58%) rotate(-45deg);

  border-radius:2px;
}


.work__text{
  font-size:20px;
  line-height:1.25;
  margin:0;
  color:#111;
  font-weight:300;
  max-width:260px;     
  text-align:center;    
}


.tech{
  
  background: linear-gradient(180deg, #cfcfcf 0%, #9c9c9c 45%, #757575 100%);
  border-radius: 6px;
  padding: 70px 0 85px;
}

.tech__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 90px;
  align-items: center;
}

.tech__media{
  overflow: hidden;
}

.tech__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tech__content{
  color: #fff;
}

.tech__title{
  font-size: clamp(40px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.22;   
  margin: 0 0 42px;
  letter-spacing: -0.5px;
  max-width: 620px;   
}
.tech__p{
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  max-width: 620px;
  opacity: .95;
  font-weight: 300;
  text-align: left;
}

.tech__p--mt{
  margin-top: 34px;
}

.tech__line{
  width:140px;
  height:14px;
  background:linear-gradient(180deg,#ffffff 0%,#ffffff 100%);
  margin-top:45px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}
/* =======================
   REVIEWS (igual a la foto) ✅ FIX NO RECORTA
======================= */

.reviews h2.reviews__title{
  font-size: 40px !important;
  font-weight: 500;
  text-align: center;
  margin: 25px 0 55px;
  line-height: 1.15;
  color: #000;
}

.reviews__slider{
  position: relative;
  display:flex;
  align-items:center;
  gap: 20px;
}

.reviews__window{
  overflow: hidden;
  width: 100%;
  padding: 12px 10px 46px;   
  box-sizing: border-box;
}


.reviews__track{
  list-style:none;
  display:flex;
  gap: 40px;
  padding: 0;
  margin: 0;
  transition: transform .45s ease;
  align-items: stretch;      
}

.reviewCard{
  flex: 0 0 auto;
  width: calc((100% - 40px) / 2); 
  background:#fff;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,.18);
  border: 1px solid #eee;
  padding: 28px 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
  box-sizing: border-box;
  
}

.reviewTop{ margin-bottom: 14px; }

.stars{
  display:flex;
  align-items:center;
  gap: 6px;
  color:#CA0001;
  margin-bottom: 16px;
}
.star{ font-size: 18px; line-height:1; }
.rating{
  margin-left: 6px;
  font-size: 14px;
  color:#CA0001;
}

.reviewTitle{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color:#B40000;
}

.reviewText{
  margin: 0 0 26px;
  color:#222;
  font-size: 15px;
  line-height: 1.35;
  max-width: 520px;
}

.reviewUser{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  padding-bottom: 6px;       
}

.userIcon{
  width: 36px;
  height: 36px;
  display:grid;
  place-items:center;
  color:#CA0001;
}

.userName{
  font-weight: 600;
  color:#111;
  margin-bottom: 2px;
}
.userMeta{
  color:#CA0001;
  font-size: 13px;
  font-style: italic;
}

.reviews__nav{
  border: none;
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  color:#666;
  padding: 6px 10px;
  user-select:none;
}
.reviews__nav:disabled{
  opacity: .35;
  cursor: default;
}

.reviews__dots{
  display:flex;
  justify-content:center;
  gap:.65rem;
  margin-top: 26px;
  margin-bottom: 30px;
}
.reviews__dots button{
  border:none;
  width: 1rem;
  height: .55rem;
  border-radius: .5rem;
  background:#dca2a2;
  cursor:pointer;
}
.reviews__dots button.is-active{
  background:#7b0000;
  width: 2.5rem;

}
/* ===== HERO CONTACTO (igual a la foto) ===== */

.contactHero{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}


.contactHero__bg{
  position: absolute;
  inset: 0;
  background: url("img/CONTACTO.png") center/cover no-repeat;
  z-index: 0;
}

.contactHero::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(117,117,117,.25) 0%,
    rgba(117,117,117,.52) 45%,
    rgba(117,117,117,.80) 100%
  );
}


.contactHero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 130px 0 70px;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
}

.contactHero__text{
  max-width: 560px;
  margin-top: 100px;
}

.contactHero__title{
  margin: 0 0 12px;
  font-size: clamp(48px, 1.5vw, 48px);
  line-height: 1.05;
  color: #fff;
  font-weight: 600;
}

.contactHero__subtitle{
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
  color: rgba(255,255,255,.92);
  font-weight: 400;
}


.contactHero__cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 34px;
  align-items: stretch;
  width: min(1200px, 100%);
}

.infoBox{
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
  border: 1px solid rgba(0,0,0,.06);
  padding: 18px 22px;

  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;

  align-items: start;   
}

.infoIcon{
  color: #CA0001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;        
}

.infoIcon .icon{
  width: 34px;
  height: 34px;
  display: block;
}

.infoIcon .icon path,
.infoIcon .icon rect,
.infoIcon .icon line,
.infoIcon .icon polyline{
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.infoBox:nth-child(3) .infoIcon .icon rect,
.infoBox:nth-child(3) .infoIcon .icon path{
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.infoTitle{
  font-size: 18px;
  color: #111;
  font-weight: 200;
  margin: 0;            
  line-height: 1.2;
}

.infoSub{
  font-size: 16px;
  color: #CA0001;
  margin: 6px 0 0;          
  line-height: 1.2;
}

/* =======================
   FORM CONTACTO (MISMO DISEÑO) + FUNCIONAL
======================= */

.contactForm{
  padding: 70px 0 140px; 
}

.contactForm__title{
  text-align:center;
  font-size: 45px;
  font-weight: 500;
  margin: 10px 0 70px;
  color:#111;
}

.contactForm__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items:start;
}

.field{
  position: relative;
  margin-bottom: 42px;
  max-width: 640px;
}

:root{
  --field-font: 17px;
  --label-font: 18px;
  --label-float: 13px;
}

.field input,
.field textarea{
  width: 100%;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 2px;
  padding: 44px 22px 13px;
  font-size: var(--field-font);
  color:#111;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
  box-sizing: border-box;
}


.field--textarea textarea{
  min-height: 438px;
  resize: none;
  padding-top: 49px;
}


.field input::placeholder,
.field textarea::placeholder{
  color: transparent;
}

.field label{
  position:absolute;
  left: 22px;
  top: 18px;
  font-size: var(--label-font);
  color:#777;
  pointer-events:none;
  font-weight: 400;
  transition: .2s ease;
}

.field label span{
  color:#CA0001;
  font-weight:700;
  margin-left: 6px;
}

.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label{
  top: 10px;
  font-size: var(--label-float);
  color:#CA0001;
}

/* =======================
   ERRORES (sin romper el layout)
   - NO usamos mensajes nativos del browser
======================= */

.fieldError{
  display:none;
  position:absolute;
  left: 0;
  bottom: -22px;
  font-size: 13px;
  color:#CA0001;
}

#contactForm.was-submitted input:invalid,
#contactForm.was-submitted textarea:invalid{
  box-shadow: 0 0 0 2px rgba(202,0,1,.25), 0 4px 10px rgba(0,0,0,.18);
}

#contactForm.was-submitted .field input:invalid ~ .fieldError,
#contactForm.was-submitted .field textarea:invalid ~ .fieldError{
  display:block;
}


.contactForm__actions{
  grid-column: 1 / -1;
  display:flex;
  justify-content:center;
  margin-top: -67px;
  margin-bottom: 150px;
}

.contactForm__btn{
  border: none;
  cursor: pointer;
  background:#7b0000;
  color:#fff;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 62px;
  border-radius: 10px;
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
}

.contactForm__btn:hover{
  filter: brightness(1.05);
}

/* =========================
   CONTACTO BANNER
========================= */

.contactBanner{
  position: relative;
  max-width: 1200px;
  margin: -200px auto 100px;
  overflow: hidden;
  border-radius:18px;  
}

.contactBanner__img{
  width:100%;
  height:auto;   
  display:block;
}

.contactBanner__content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:20px;
  z-index:2;
}
.contactBanner__content h2{
  font-size:42px;
  font-weight:600;
  margin-bottom:12px;
}
.contactBanner__content p{
  font-size:22px;
  font-weight:400;
  opacity:.95;
}
.contactBanner__line{
  width:90px;
  height:6px;
  background:#d00000;
  margin-top:24px;
  border-radius:4px;
}

/* ==========================================================
   SCROLL REVEAL (dinamismo al hacer scroll)
========================================================== */
.reveal-on-scroll{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible{
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  .reveal-on-scroll{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================
   HAMBURGER BUTTON
========================================================== */
.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:1100;
  padding:4px;
}
.hamburger span{
  display:block;
  width:28px;
  height:2.5px;
  background:#fff;
  border-radius:2px;
  transition:transform .3s,opacity .3s;
}
.hamburger.is-open span{ background:#fff; }
.hamburger.is-open span:nth-child(1){ transform:translateY(8.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-8.5px) rotate(-45deg); }

body.menu-open{ overflow:hidden; }
body.menu-open::after{
  content:none;
}

.nav-close{ display:none; }

/* Flechas del HERO: NO se muestran (no van) */
.hero-slider .nav-btn{ display:none !important; }

/* ==========================================================
   RESPONSIVE — TABLET (max-width: 1024px)
========================================================== */
@media(max-width:1024px){

  html,body{ overflow-x:hidden; }
  .hamburger{ display:flex; }

  .nav{
    position:fixed;
    top:0; right:-300px;
    width:280px;
    height:100vh; height:100dvh;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    padding:90px 28px 40px;
    box-shadow:none;
    z-index:1500;
    gap:0;
    transition:right .3s ease;
    overflow-y:auto;
    font-size:16px;
  }
  .nav.is-open{ right:0; }

  .nav-close{
    display:block;
    position:absolute;
    top:18px;
    right:18px;
    border:none;
    background:transparent;
    color:#000 !important;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    padding:6px 10px;
    z-index:2;
  }

  .nav__link{
    color:#333 !important;
    text-shadow:none !important;
    padding:18px 0;
    border-bottom:1px solid #f0f0f0;
    display:block;
    font-weight:400 !important;
  }
  .nav__link.act{ font-weight:600 !important; color:#CA0001 !important; }

  .nav__btn{
    margin-top:20px;
    text-align:center;
    display:block;
  }

  /* Hero */
  .hero-slider{ height:750px; }
  .hero-slider .hero-content{ left:40px; top:220px; max-width:calc(100% - 80px); }
  .slider-dots{ bottom:300px; }
  .beneficios-box{ width:90%; padding:44px 16px; }
  .beneficio h4{ font-size:16px; }
  .beneficio p{ font-size:13px; }

  /* Featured */
  .featured-item{ flex:0 0 calc((100% - 28px)/2); }
  .featured-slider{ padding-inline:50px; }

  /* Cats */
  .cats-item{ flex:0 0 calc((100% - 28px)/2); }
  .cats-slider{ padding-inline:50px; }

  /* About grid */
  .about__grid{ grid-template-columns:1fr; gap:40px; }
  .about__img{ max-width:520px; }

  /* Tech */
  .tech__wrap{ grid-template-columns:1fr; gap:40px; }
  .tech__media{ max-width:520px; }

  /* Work steps */
  .work__steps{ flex-direction:column; gap:40px; }
  .work__steps::before{ display:none; }

  /* Contact section home */
  .contact{ flex-direction:column; gap:30px; }
  .contact__img{ flex:0 0 auto; width:100%; max-width:560px; }

  /* Footer */
  .footer-grid{ grid-template-columns:1fr 1fr; gap:40px; }
  .footer-brand{ grid-column:1/-1; }
  .footer-logo{ transform:none; }

  /* Contact form */
  .contactForm__grid{ grid-template-columns:1fr; gap:30px; }
  .field--textarea textarea{ min-height:300px; }

  /* Contact hero cards */
  .contactHero__cards{ grid-template-columns:1fr 1fr; }

  /* Benefits */
  .benefits__grid{ gap:24px; }
}

/* ==========================================================
   RESPONSIVE — SMALL TABLET (max-width: 768px)
========================================================== */
@media(max-width:768px){

  /* Topbar */
  .topbar{ font-size:13px; line-height:40px; }
  .topbar__right{ gap:20px; }
  .header{ top:66px; }

  /* Hero */
  .hero-slider{ height:620px; }
  .hero-slider .hero-content{ top:150px; left:24px; max-width:calc(100% - 48px); }
  .hero-slider h1{ font-size:30px; }
  .hero-slider p{ font-size:16px; }
  .slider-dots{ bottom:215px; }

  .hero-slider .beneficios-box{
    width:94%;
    padding:20px 12px;
    bottom:25px;
  }
  .beneficio:not(:last-child)::after{
    display:block;
    height:70%;
    top:15%;
    opacity:.6;
  }
  .beneficio i{ font-size:26px; margin-bottom:6px; }
  .beneficio h4{ font-size:13px; margin-bottom:4px; }
  .beneficio p{ font-size:11px; }

  /* Section header */
  .section-header{ flex-direction:column; align-items:flex-start; gap:16px; margin-bottom:30px; }
  .section-header .title-block{ max-width:100%; }
  .section-header h2{ font-size:30px !important; }

  /* Newsletter */
  .newsletter{ min-height:220px; }
  .newsletter-content{ right:20px; max-width:260px; }
  .newsletter-content h3{ font-size:20px; margin-bottom:14px; }
  .newsletter-content p{ font-size:14px; margin:14px 0; }
  .newsletter-form{ max-width:100%; }
  .newsletter-form input{ height:48px; font-size:14px; }

  /* Footer */
  .footer-grid{ grid-template-columns:1fr; gap:32px; padding:50px 0 70px; }
  .footer-brand{ align-items:center; text-align:center; }
  .footer-info{ align-items:center; text-align:center; }
  .footer-links{ align-items:center; text-align:center; }
  .footer-logo{ width:240px; }

  /* Contact hero */
  .contactHero__cards{ grid-template-columns:1fr; }
  .contactHero{ min-height:auto; }
  .contactHero__inner{ padding:100px 16px 40px; }
  .contactHero__text{ margin-top:60px; }

  /* Benefits */
  .benefits__grid{ grid-template-columns:1fr; }
  .benefit{ max-width:400px; margin:0 auto; }

  /* Page hero */
  .page-hero{ height:clamp(300px,50vh,460px); }
  .page-hero__content{ padding-bottom:28px; }
  .page-hero__title{
    font-size:39px;
    line-height:1.1;
  }
  .page-hero__sub{
    font-size:96px;
    line-height:1.35;
    max-width:34ch;
  }

  /* About */
  .about{ padding:60px 0; margin-bottom:0; }
  .about__content h2{ font-size:28px; margin-bottom:24px; }

  /* Reviews */
  .reviewCard{ width:100% !important; }
  .reviews h2.reviews__title{ font-size:30px !important; }

  /* Contact form */
  .contactForm__title{ font-size:32px; }
  .contactForm__actions{ margin-bottom:80px; }

  /* Contact banner */
  .contactBanner{ margin:-120px auto 60px; }
  .contactBanner__content h2{ font-size:28px; }
  .contactBanner__content p{ font-size:16px; max-width:32ch; }
  .contactBanner__content .about__line{
    width:110px;
    height:8px;
    margin-top:18px;
    background:#d00000;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  }

  /* Banners (más altos solo en responsive) */
  .banner-img img{
    height: 150px;
    object-fit: contain; /* no recorta el texto del banner */
    object-position: center;
  }

  /* Brand nav */
  .brand-nav.prev{ left:6px; }
  .brand-nav.next{ right:6px; }

  /* Marcas (carrusel) */
  .brands-slider{ padding-inline: 40px; }
  :root{ --brand-bubble: 140px; }
  .brands-track span{ font-size: 0.95rem; }
  .brand-nav{ width: 36px; height: 36px; font-size: 2.4rem; }
}

/* ==========================================================
   RESPONSIVE — MOBILE (max-width: 480px)
========================================================== */
@media(max-width:480px){

  /* Topbar */
  .topbar{ font-size:11px; line-height:20px; padding:6px 0; }
  .topbar__right{ gap:8px; flex-wrap:wrap; justify-content:flex-end; }
  .topbar__inner{ padding:0 12px; }

  /* Header */
  .header{ top:50px; }
  .header__inner{ padding:12px 14px; }
  .brand img{ height:36px; }

  /* Hero — imagen arriba + beneficios debajo (sin taparse) */
  .hero-slider{
    height:auto;
    overflow:visible;
    padding-top:420px;
  }
  .hero-slider .slide{ bottom:auto; height:420px; }
  .hero-slider::before{ bottom:auto; height:420px; }
  .hero-slider .hero-content{ top:92px; left:16px; max-width:calc(100% - 32px); }
  .hero-slider h1{ font-size:26px; margin-bottom:8px; }
  .hero-slider p{ font-size:15px; }
  .slider-dots{ top:365px; bottom:auto; }

  .hero-slider .beneficios-box{
    position:relative;
    left:auto; bottom:auto; transform:none;
    width:calc(100% - 32px);
    margin:-40px auto 20px;
    flex-direction:column;
    padding:24px 16px;
    gap:16px;
  }
  .beneficio:not(:last-child)::after{ display:none; }
  .beneficio i{ font-size:24px; margin-bottom:6px; }
  .beneficio h4{ font-size:14px; margin-bottom:4px; }
  .beneficio p{ font-size:11px; }

  /* Featured */
  .featured-item{ flex:0 0 100%; }
  .featured-slider{ padding-inline:30px; }
  .featured-nav.prev{ left:2px; }
  .featured-nav.next{ right:2px; }
  .featured-inner{ min-height:auto; }

  /* Cats */
  .cats-item{ flex:0 0 100%; }
  .cats-slider{ padding-inline:56px; } /* gutter para flechas (como Destacados) */
  .cats-nav.prev{ left:10px; }
  .cats-nav.next{ right:10px; }

  /* En touch evitamos hover "pegado" */
  @media (hover: none){
    .cats-card:hover{ transform:none; }
    .cats-card:hover img{ transform:none; }
  }

  /* Banners (más altos solo en mobile) */
  .banner-img img{
    height: 170px;
    object-fit: contain; /* no recorta el texto del banner */
    object-position: center;
  }

  /* Brands */
  :root{ --brand-bubble: 120px; }
  .brands-slider{ padding-inline: 26px; }
  .brands-track span{ max-width: var(--brand-bubble); }
  .brand-nav{
    font-size:2.2rem;
    width:44px;
    height:44px;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
  }
  .brand-nav.prev{ left:6px; }
  .brand-nav.next{ right:6px; }

  /* Sections */
  .section{ padding:40px 0; }
  #brands{ padding:40px 0; }
  .container{ padding:0 16px; }

  /* Section header */
  .section-header h2{ font-size:24px !important; }
  .section-header .subtitle{ font-size:14px; }
  .cta-label{ font-size:13px; padding:8px 18px 9px; }
  .cta-arrow{ width:38px; height:32px; font-size:18px; }

  /* Newsletter — centrado y sin taparse */
  .newsletter{
    margin:20px 16px;
    border-radius:12px;
    min-height:280px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .newsletter img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
  .newsletter-content{
    position:relative;
    right:auto; top:auto; transform:none;
    padding:28px 20px;
    max-width:100%;
    z-index:2;
    text-align:center;
  }
  .newsletter-content h3{ font-size:20px; margin-bottom:10px; }
  .newsletter-content p{ font-size:14px; margin:10px 0; }
  .newsletter-form{ width:100%; max-width:100% !important; }
  .newsletter-form input{ height:48px; font-size:14px; padding:0 50px 0 16px; }

  /* Contact info */
  .infoBox{ padding:14px 14px; gap:12px; }
  .infoTitle{ font-size:15px !important; }
  .infoSub{ font-size:13px !important; }

  /* Contacto hero */
  .contactHero__title{ font-size:28px !important; }
  .contactHero__subtitle{ font-size:16px; }
  .contactHero__text{ margin-top:30px; }
  .contactHero__inner{ padding:70px 16px 30px; gap:24px; }
  .contactHero__cards{
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }
  .contactHero__cards{ gap:22px; }
  .contactHero__cards .infoBox{
    box-shadow: 0 6px 12px rgba(0,0,0,.16);
  }

  /* Contact form */
  .contactForm{ padding:30px 0 50px; }
  .contactForm__title{ font-size:24px; margin:10px 0 30px; }
  .field{ margin-bottom:24px; }
  .field input,.field textarea{ padding:36px 16px 10px; font-size:15px; }
  .field label{ font-size:15px; left:16px; top:14px; }
  .field--textarea textarea{ min-height:220px; }
  .contactForm__actions{ margin-top:-10px; margin-bottom:20px; }
  .contactForm__btn{ width:100%; text-align:center; font-size:17px; padding:14px 32px; }

  /* Contact banner */
  .contactBanner{ margin:-40px 16px 30px; border-radius:10px; }
  .contactBanner__content h2{ font-size:20px; }
  .contactBanner__content p{ font-size:13px; }
  .contactBanner__content{ padding:14px; }
  .contactBanner__content .about__line{
    width:90px;
    height:6px;
    margin-top:16px;
    background:#d00000;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  }

  /* Page hero */
  .page-hero{ height:clamp(250px,44vh,360px); }
  .page-hero__content{ padding-bottom:20px; }
  .page-hero__title{
    font-size:30px;
    line-height:1.12;
  }
  .page-hero__sub{
    font-size:17px !important;
    line-height:1.35;
    max-width:30ch;
    margin-top:8px;
  }

  /* About */
  .about{ padding:36px 0; margin-bottom:0; }
  .about__grid{ gap:24px; }
  .about__content h2{ font-size:22px; margin-bottom:16px; }
  .about__content p{ font-size:15px; margin-bottom:14px; }
  .about__line{ width:90px; height:8px; margin-top:20px; }

  /* Benefits */
  .benefits{ padding:30px 0 40px; margin-top:0; }
  .benefit__content{ bottom:16px; padding:0 16px; }
  .benefit__content h3{ font-size:18px; margin-bottom:8px; }
  .benefit__content p{ font-size:14px; }

  /* Work */
  .work{ padding:36px 0 50px; }
  .work h2.work__title{ font-size:22px !important; margin-bottom:36px; }
  .work__steps{ gap:24px; }
  .work__icon{ --icon:56px; --border:5px; margin-bottom:16px; }
  .work__icon::after{ width:22px; height:13px; border-width:6px; }
  .work__text{ font-size:15px; }

  /* Tech */
  .tech{ padding:36px 0 44px; }
  .tech__wrap{ gap:24px; width:min(1200px,88%); }
  .tech__title{ font-size:22px !important; margin-bottom:20px; }
  .tech__p{ font-size:15px; }
  .tech__p--mt{ margin-top:20px; }
  .tech__line{ width:90px; height:8px; margin-top:20px; }

  /* Reviews */
  .reviews h2.reviews__title{ font-size:22px !important; margin:10px 0 24px; }
  .reviews__slider{ gap:8px; }
  .reviews__nav{ font-size:28px; padding:2px 4px; }
  .reviewCard{ padding:18px 16px 14px; }
  .reviewTitle{ font-size:16px; }
  .reviewText{ font-size:13px; margin-bottom:16px; }
  .reviewUser{ gap:10px; padding-top:12px; }
  .userName{ font-size:14px; }
  .userMeta{ font-size:12px; }

  /* Footer */
  .footer-grid{ padding:28px 0 44px; gap:24px; }
  .footer-logo{ width:180px; }
  .footer-tagline{ font-size:14px; margin-top:6px; }
  .footer-main,.footer-sub,.footer-links a{ font-size:13px; }
  .footer-links{ gap:14px; }
  .footer-info{ gap:24px; }

  /* Brands dots */
  .brands-dots{ margin-bottom:40px; margin-top:10px; }
}