                /* ====== Estilo para boton de whatsapp de la sección donde esta el mapa ====== */
.btnws_contact{
    height: auto;
    width: auto;
    background-color: #25d366;
    padding: 8px 10px;
    border-radius: 8px;
    color: white;
  }
  .btnws_contact:hover{
    background-color: #128c7e;
    color: white;
  }

  :root{
  --wa-green:#25D366;
  --wa-shadow: 0 10px 24px rgba(0,0,0,.25);
}

                          /* ====== Estilo para boton estatico de Whatsapp ====== */
/* Contenedor botón */
.wa-fab{
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 99999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: var(--wa-green);
  color: #fff;
  text-decoration: none;

  padding: 12px 14px;
  border-radius: 999px;

  box-shadow: var(--wa-shadow);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;

  transition: transform .35s ease, opacity .35s ease, box-shadow .25s ease;
}

/* Visible al hacer scroll */
.wa-fab.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Círculo del icono */
.wa-icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Texto */
.wa-text{
  font: 600 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .2px;
  white-space: nowrap;
}

/* Hover/Focus */
.wa-fab:hover{
  box-shadow: 0 14px 30px rgba(0,0,0,.32);
  transform: translateY(-2px);
}
.wa-fab:focus-visible{
  outline: 3px solid rgba(255,255,255,.75);
  outline-offset: 3px;
}

/* Pulso sutil */
.wa-fab.is-visible::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius: 999px;
  background: rgba(37, 211, 102, .28);
  z-index:-1;
  animation: waPulse 1.8s ease-in-out infinite;
}

@keyframes waPulse{
  0%   { transform: scale(.95); opacity:.45; }
  60%  { transform: scale(1.08); opacity:.10; }
  100% { transform: scale(1.12); opacity:0; }
}

/* ===== Responsive ===== */
@media (max-width: 600px){
  .wa-fab{
    right: 10px;
    bottom: 16px;
    padding: 10px 12px;

    margin-bottom: 50px;
  }

  .wa-icon{
    width: 44px;
    height: 44px;
  }

  /* En móvil: ocultamos el texto para que no tape contenido */
  .wa-text{
    display:none;
  }

  /* Hacemos el botón más “redondo” */
  .wa-fab{
    border-radius: 50%;
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }

  .wa-fab.is-visible::after{
    inset:-10px;
    border-radius: 50%;
  }
}

/* Respeta usuarios con reduce motion */
@media (prefers-reduced-motion: reduce){
  .wa-fab, .wa-fab::after{
    transition:none !important;
    animation:none !important;
  }
}

                              /* ====== Estilo para videos de portada ====== */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh; /* viewport real en mobile */
  overflow: hidden;
  background: #0b0f17;
}

/* Videos */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.08);
  filter: blur(6px) brightness(0.9);

  transition:
    opacity 1s ease,
    transform 1.2s ease,
    filter 1.2s ease;
}

/* Video visible */
.hero-video.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) brightness(1);
}

/* Overlay cinematográfico */
.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.2) 50%, rgba(0,0,0,.6)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.05), transparent 60%);
  z-index: 2;
}

/* Texto encima */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  color: white;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-video {
    filter: blur(3px) brightness(0.9);
  }

  .hero-video.active {
    filter: blur(0) brightness(1);
  }
}

                                          /* ====== ESTILO NUEVO HERO ====== */

.hero-one{
  margin-top: -60px;
}
                                                  
.hero-one__media{
  position: relative;
  width: 100%;
  height: 100vh;     /* fallback */
  height: 100svh;    /* mejor en mobile (iOS/Android) */
  overflow: hidden;
  background: #0b0f17;
}

/* Video full cover */
.hero-one__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* look premium */
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.05) brightness(0.95);
}

/* Overlay cinematográfico */
.hero-one__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 18% 20%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.20) 55%, rgba(0,0,0,.65));
  z-index: 2;
}

/* Contenido */
.hero-one__content{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;

  padding: 0 8%;
  max-width: 900px;
  color: #fff;
}

/* Tipografía responsive */
.hero-one__content h1{
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-one__content p{
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  opacity: .92;
  max-width: 48ch;
}

/* Botones */
.hero-one__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btnPrimary, .btnGhost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease;
}

.btnPrimary{
  background: #e11d48;
  color: #fff;
}

.btnGhost{
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(8px);
}

.btnPrimary:hover, .btnGhost:hover{
  transform: translateY(-1px);
  opacity: .95;
}

/* Ajuste móvil */
@media (max-width: 768px){
  .hero-one__content{
    padding: 0 6%;
  }

  .hero-one__overlay{
    background:
      radial-gradient(700px 420px at 20% 25%, rgba(255,255,255,.05), transparent 60%),
      linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 45%, rgba(0,0,0,.70));
  }
}

/* Accesibilidad: reduce motion */
@media (prefers-reduced-motion: reduce){
  .btnPrimary, .btnGhost{
    transition: none;
  }
  .hero-one__video{
    transform: none;
  }
}

                              /* ====== Estilo nuevo para about section ====== */
.about-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) clamp(18px, 5vw, 60px);

  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
}

/* ====== Izquierda ====== */
.about-title{
  margin: 0;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 0.95;
}

.about-title .line1{
  display:block;
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 64px);
}

.about-title .line2{
  display:block;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 72px);
}

/* ====== Responsive ====== */
@media (max-width: 820px){
  .about-inner{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px){
  .about-title{
    line-height: 1;
  }
}

                                      /*Nueva sección de servicios*/
.services {
  background: #e30613;
  color: #fff;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 24px;
}

/* Título */
.services-title {
  font-style: italic;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 60px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

/* Card */
.service-card {
  text-align: center;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

/* Icono */
.icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.icon img{
  height: 60px;
  width: 60px;
}

/* ===== ANIMACIÓN ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    text-align: center;
  }
}


                                      /*ESTILOS PARA LA PAGINA DE FILM_PROTECTION*/
:root{
  --red:#e30613;
  --black:#0b0b0b;
  --max:1200px;
}

.film{
  background:#fff;
  color:var(--black);
}

.film__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) 24px;
}

/* ====== TITULO ====== */
.film__title{
  text-align:center;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-size: clamp(34px, 6vw, 64px);
}

/* ====== TABS ====== */
.film__tabs{
  display:flex;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  flex-wrap: wrap; /* responsive */
  margin-bottom: clamp(24px, 4vw, 44px);
}

.film__tab{
  background: var(--red);
  color:#fff;
  text-decoration:none;

  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-align:center;

  padding: 14px 18px;
  border-radius: 6px;

  min-width: 140px;
  line-height: 1.05;

  transition: transform .2s ease, filter .2s ease;
}

.film__tab:hover{ transform: translateY(-2px); filter: brightness(1.05); }
.film__tab.is-active{ outline: 3px solid rgba(227,6,19,.25); }

/* ====== CONTENIDO 2 COL ====== */
.film__content{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.film__media{
  border-radius: 6px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.film__media img{
  width:100%;
  height:100%;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.film__headline{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: .5px;
  line-height: .92;
  font-size: clamp(36px, 4.6vw, 64px);
}

.film__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 62ch;
  text-align: justify;
  text-justify: inter-word;
}

.film__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  background: var(--red);
  color:#fff;
  font-weight: 900;
  text-transform: uppercase;

  padding: 14px 18px;
  border-radius: 999px;
  letter-spacing: .5px;

  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 20px rgba(227,6,19,.25);
}

.film__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(227,6,19,.35);
}

/* ====== ANIMACION POR ELEMENTOS ====== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 980px){
  .film__content{
    grid-template-columns: 1fr;
  }
  .film__text{ max-width: 75ch; }
}

@media (max-width: 600px){
  .film__tab{ min-width: 44%; } /* 2 por fila aprox */
  .film__text{ text-align: left; } /* justificado se ve feo en móvil */
}


/*CSS NUMERO 2*/
:root{
  --red:#e30613;
  --max:1200px;
}

.mil{
  background: var(--red);
  color:#fff;
}

.mil__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

.mil__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Texto */
.mil__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  font-size: clamp(34px, 5vw, 62px);
}

.mil__subtitle{
  margin: 0 0 26px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: clamp(16px, 2vw, 22px);
}

.mil__desc{
  margin: 0 0 22px;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.35;
  max-width: 52ch;
}

.mil__label{
  margin: 0 0 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: clamp(16px, 1.4vw, 20px);
}

.mil__list{
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.35;
}

.mil__list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  margin: 6px 0;
}

/* Flecha tipo "▶" */
.mil__list li::before{
  content: "▶";
  font-size: 14px;
  line-height: 1.6;
}

/* Imagen */
.mil__right{
  display:flex;
  justify-content: flex-end;
}

.mil__img{
  width: min(520px, 100%);
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

/* ===== Animación (igual que la anterior) ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .mil__grid{
    grid-template-columns: 1fr;
  }
  .mil__right{
    justify-content: center;
  }
  .mil__img{
    width: 100%;
    max-width: 720px;
  }
}

@media (max-width: 520px){
  .mil__desc{ max-width: 100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .js-reveal{
    transition:none !important;
  }
}

/*CSS NUMERO 3*/
:root{
  --max:1200px;
  --black:#0b0b0b;
  --gray:#f2f2f2;
  --accent:#e30613; /* rojo para viñetas */
}

.mil2{
  background:#fff;
  color:var(--black);
}

.mil2__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Layout */
.mil2__grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Imagen */
.mil2__media{
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  background: #ddd;
}

.mil2__img{
  width:100%;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Texto */
.mil2__title{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  font-size: clamp(34px, 5vw, 62px);
}

.mil2__subtitle{
  margin: 0 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: clamp(16px, 2vw, 22px);
}

.mil2__desc{
  margin: 0 0 18px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
  max-width: 55ch;
}

.mil2__label{
  margin: 0 0 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: clamp(16px, 1.4vw, 20px);
}

.mil2__list{
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
}

.mil2__list li{
  display:flex;
  gap: 10px;
  margin: 6px 0;
}

/* Triángulo rojo tipo "▶" */
.mil2__list li::before{
  content: "";
  width: 0;
  height: 0;
  margin-top: 6px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--accent);
}

/* ===== Animación (igual que tus secciones) ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .mil2__grid{
    grid-template-columns: 1fr;
  }
  .mil2__desc{ max-width: 75ch; }
}

@media (max-width: 520px){
  .mil2__desc{ max-width: 100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

/*CSS NUMERO 4*/
:root{
  --red:#e30613;
  --max:1200px;
}

/* Fondo rojo */
.tones{
  background: var(--red);
  color:#fff;
}

.tones__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 20px;
}

/* Título */
.tones__title{
  text-align:center;
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1;
}

/* Panel con sombra/borde */
.tones__panel{
  background: transparent;
  border: 3px solid rgba(0,0,0,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  overflow: hidden;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: clamp(220px, 30vw, 420px);
}

/* Bloques */
.tone{
  position: relative;
  display:flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(18px, 3vw, 44px);
}

/* Texto porcentaje */
.tone__pct{
  font-weight: 900;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: .5px;
  color:#fff;
}

/* Separadores entre columnas */
.tone + .tone{
  border-left: 2px solid rgba(0,0,0,.25);
}

/* Colores aproximados a la imagen */
.tone--5  { background:#2f2f2f; }
.tone--20 { background:#444444; }
.tone--35 { background:#7d7d7d; }
.tone--50 { background:#a2a2a2; }
.tone--70 { background:#c9c9c9; }

/* ===== Animación (mismo estilo que las anteriores) ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 720px){
  /* En móvil se apilan */
  .tones__panel{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tone{
    min-height: 120px;
    padding-bottom: 18px;
  }

  .tone + .tone{
    border-left: 0;
    border-top: 2px solid rgba(0,0,0,.25);
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}


                          /*CSS PARA SECCIÓN BLINDAJE VEHICULAR*/
:root{
  --max:1200px;
  --red:#e30613;
  --black:#0b0b0b;
}

/* Sección */
.svc{
  background:#fff;
  color:var(--black);
}

.svc__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Layout */
.svc__grid{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Imagen */
.svc__media{
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.svc__img{
  width:100%;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Texto */
.svc__title{
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: .92;
  font-size: clamp(44px, 5vw, 76px);
}

.svc__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 62ch;
  text-align: justify;
  text-justify: inter-word;
}

/* Botón */
.svc__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: var(--red);
  color:#fff;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;

  padding: 14px 18px;
  border-radius: 999px;

  box-shadow: 0 12px 22px rgba(227,6,19,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.svc__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(227,6,19,.34);
}

/* ===== Animación (igual que tus secciones) ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .svc__grid{
    grid-template-columns: 1fr;
  }
  .svc__text{
    max-width: 75ch;
    text-align: left; /* mejor lectura en móvil */
  }
}

@media (max-width: 520px){
  .svc__cta{
    width: 100%;
    text-align:center;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}


                                /*CSS PARA SECCIÓN OPCIONES DE BLINDAJE*/
:root{
  --red:#e30613;
  --max:1200px;
}

.packs{
  background: var(--red);
  color:#fff;
}

.packs__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

.packs__title{
  text-align:center;
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: clamp(34px, 4.5vw, 56px);
}

/* Grid responsive */
.packs__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.4vw, 26px);
}

/* Card */
.pack{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  background: rgba(255,255,255,.08);
}

.pack__img{
  width:100%;
  height: 100%;
  display:block;
  aspect-ratio: 4/5; /* estilo poster */
  object-fit: cover;
  transform: scale(1.02);
}

/* Overlay tipo poster */
.pack__overlay{
  position:absolute;
  inset:0;
  padding: 18px 18px 22px;

  display:flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;

  /* degradado arriba como en tus posters */
  background:
    linear-gradient(to bottom,
      rgba(227,6,19,.72) 0%,
      rgba(227,6,19,.45) 22%,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,.12) 100%);
}

.pack__brand{
  margin:0;
  font-weight: 800;
  letter-spacing: .8px;
  font-size: 13px;
  opacity: .95;
}

.pack__name{
  margin: 2px 0 0;
  font-weight: 900;
  letter-spacing: 1px;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(22px, 2.2vw, 32px);
  text-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.pack__desc{
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
  opacity: .95;
}

/* Hover suave */
.pack:hover .pack__img{
  transform: scale(1.06);
  transition: transform .35s ease;
}

/* ===== Animación al llegar (igual a las otras secciones) ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .packs__grid{
    grid-template-columns: 1fr;
  }
  .pack__img{
    aspect-ratio: 16/9; /* mejor en tablet/móvil */
  }
  .pack__name{
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}


:root{
  --red:#e30613;
  --max:1200px;
}

/* Fondo rojo */
.ppfi{
  background: var(--red);
  color:#fff;
}

.ppfi__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Layout */
.ppfi__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Título */
.ppfi__title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: .95;
  font-size: clamp(44px, 5vw, 76px);
}

/* Texto */
.ppfi__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
}

/* Botón (blanco con borde negro como tu imagen) */
.ppfi__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background:#fff;
  color:#000;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;

  padding: 14px 18px;
  border-radius: 14px;
  border: 3px solid #000;

  transition: transform .2s ease;
}

.ppfi__cta:hover{
  transform: translateY(-2px);
}

/* Imagen */
.ppfi__right{
  display:flex;
  justify-content: flex-end;
}

.ppfi__img{
  width: min(680px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display:block;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

/* ===== Animación (mismo sistema) ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .ppfi__grid{
    grid-template-columns: 1fr;
  }
  .ppfi__right{
    justify-content: center;
  }
  .ppfi__text{
    max-width: 75ch;
  }
  .ppfi__cta{
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

/*WRAP CAR*/
:root{
  --red:#e30613;
  --max:1200px;
}

/* Fondo rojo */
.wrapcar{
  background: var(--red);
  color:#fff;
}

.wrapcar__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Grid */
.wrapcar__grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Texto */
.wrapcar__title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: .95;
  font-size: clamp(44px, 5vw, 76px);
}

.wrapcar__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
}

/* Botón blanco */
.wrapcar__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background:#fff;
  color:#000;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;

  padding: 14px 18px;
  border-radius: 14px;
  border: 3px solid #000;

  transition: transform .2s ease;
}

.wrapcar__cta:hover{
  transform: translateY(-2px);
}

/* Imagen */
.wrapcar__right{
  display: flex;
  justify-content: flex-end;
}

.wrapcar__img{
  width: min(680px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

/* ===== Animación reutilizada ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .wrapcar__grid{
    grid-template-columns: 1fr;
  }

  .wrapcar__right{
    justify-content: center;
  }

  .wrapcar__text{
    max-width: 75ch;
  }

  .wrapcar__cta{
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{
    transition: none !important;
  }
}


                                    /*ESTILOS PARA LA PAGINA DE LAVADOS.PHP*/
:root{
  --red:#e30613;
  --black:#0b0b0b;
  --max:1200px;
}

/* Sección */
.detail{
  background:#fff;
  color:var(--black);
}

.detail__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) 24px;
}

/* Tabs */
.detail__tabs{
  display:flex;
  justify-content:center;
  gap: clamp(12px, 2.2vw, 28px);
  flex-wrap: wrap;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.detail__tab{
  background: var(--red);
  color:#fff;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-align:center;

  padding: 12px 16px;
  border-radius: 6px;

  min-width: 150px;
  line-height: 1.05;

  transition: transform .2s ease, filter .2s ease;
}

.detail__tab:hover{ transform: translateY(-2px); filter: brightness(1.05); }
.detail__tab.is-active{ outline: 3px solid rgba(227,6,19,.25); }

/* Botón grande centrado */
.detail__plans{
  display:flex;
  justify-content:center;
  margin-bottom: clamp(22px, 4vw, 44px);
}

.detail__plansBtn{
  background: var(--red);
  color:#fff;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;

  padding: 16px 22px;
  border-radius: 10px;

  min-width: min(620px, 100%);
  text-align:center;

  box-shadow: 0 12px 24px rgba(227,6,19,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.detail__plansBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(227,6,19,.3);
}

/* Grid contenido */
.detail__grid{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Imagen */
.detail__media{
  border-radius: 6px;
  overflow:hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.detail__img{
  width:100%;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Texto */
.detail__title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: .92;
  font-size: clamp(40px, 5vw, 72px);
}

.detail__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.55;
  max-width: 62ch;
  text-align: justify;
  text-justify: inter-word;
}

/* CTA */
.detail__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: var(--red);
  color:#fff;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;

  padding: 14px 18px;
  border-radius: 999px;

  box-shadow: 0 12px 22px rgba(227,6,19,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.detail__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(227,6,19,.34);
}

/* Animación al llegar */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .detail__grid{ grid-template-columns: 1fr; }
  .detail__text{ max-width: 75ch; text-align:left; }
}

@media (max-width: 600px){
  .detail__tab{ min-width: 44%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

:root{
  --red:#e30613;
  --max:1200px;
  --black:#0b0b0b;

  /* glass */
  --glass-bg: rgba(255,255,255,.14);
  --glass-brd: rgba(255,255,255,.28);
  --glass-shadow: 0 18px 40px rgba(0,0,0,.22);
}

/* Sección */
.plans{
  /* puedes dejarlo blanco o poner un fondo suave para que el glass se note más */
  background: radial-gradient(1200px 500px at 30% 0%, rgba(227,6,19,.08), transparent 60%),
              #f6f6f6;
  color: var(--black);
}

.plans__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

.plans__title{
  margin: 0 0 clamp(18px, 3vw, 28px);
  text-align: center;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(28px, 4.4vw, 44px);
  color: var(--red);
  font-style: italic;
}

/* Grid: 2 arriba + 1 abajo grande */
.plans__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}

/* Card glass */
.glassCard{
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);

  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow);

  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);

  position: relative;
  overflow: hidden;
}

/* brillo suave */
.glassCard::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 55%);
  transform: rotate(8deg);
  pointer-events:none;
}

/* título del card */
.glassCard__title{
  margin: 0 0 12px;
  font-weight: 900;
  font-size: clamp(18px, 2.1vw, 24px);
  letter-spacing: .3px;
}

.glassCard__tag{
  color: var(--red);
  font-style: italic;
}

/* subtítulos dentro */
.glassCard__block h4{
  margin: 12px 0 8px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--red);
}

/* listas */
.glassCard ul{
  margin: 0;
  padding-left: 18px;
  line-height: 1.45;
  font-size: 13px;
}

.glassCard__list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.45;
  font-size: 13px;
}

/* Card grande abajo */
.glassCard--wide{
  grid-column: 1 / -1;
}

.glassCard__columns{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

/* Responsive */
@media (max-width: 900px){
  .plans__grid{
    grid-template-columns: 1fr;
  }
  .glassCard--wide{
    grid-column: auto;
  }
  .glassCard__columns{
    grid-template-columns: 1fr;
  }
}

/* Animación al llegar (si ya la tienes, NO la dupliques) */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

:root{
  --red:#e30613;
  --black:#0b0b0b;
  --max:1200px;

  /* glass */
  --glass-bg: rgba(255,255,255,.14);
  --glass-brd: rgba(0,0,0,.18);
  --glass-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* Sección */
.ceramic{
  background:#fff;
  color: var(--black);
}

.ceramic__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Encabezado */
.ceramic__head{
  text-align:center;
  margin-bottom: clamp(16px, 3vw, 26px);
}

.ceramic__title{
  margin: 0 0 10px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--red);
  font-size: clamp(26px, 4vw, 46px);
}

.ceramic__subtitle{
  margin: 0 auto;
  max-width: 80ch;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.35;
  font-size: clamp(12px, 1.35vw, 15px);
}

/* Card */
.ceramicCard{
  border-radius: 18px;
  overflow:hidden;

  border: 2px solid rgba(0,0,0,.25);
  box-shadow: var(--glass-shadow);

  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
}

/* Título dentro del card */
.ceramicCard__title{
  margin: 0;
  padding: 18px 18px 0;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: clamp(20px, 2.6vw, 34px);
}

/* Lista */
.ceramicCard__list{
  margin: 10px 0 0;
  padding: 0 22px 18px;
  list-style: none;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(12px, 1.35vw, 14px);
}

.ceramicCard__list li{
  display:flex;
  gap: 10px;
  margin: 8px 0;
}

.ceramicCard__list li::before{
  content:"○";
  color: var(--red);
  font-size: 14px;
  line-height: 1.2;
  margin-top: 2px;
}

/* Imagen abajo dentro del card */
.ceramicCard__media{
  border-top: 2px solid rgba(0,0,0,.18);
  background:#ddd;
}

.ceramicCard__media img{
  width:100%;
  display:block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 680px){
  .ceramicCard__list{
    text-transform:none; /* mejor lectura en móvil */
    font-weight: 700;
  }
}

/* Animación (si ya la tienes global, NO la dupliques) */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

:root{
  --red:#e30613;
  --black:#0b0b0b;
  --max:1200px;

  /* glass */
  --glass-bg: rgba(255,255,255,.14);
  --glass-brd: rgba(0,0,0,.18);
  --glass-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* Sección */
.std{
  background:
    radial-gradient(1200px 500px at 40% 0%, rgba(227,6,19,.08), transparent 60%),
    #f6f6f6;
  color: var(--black);
}

.std__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Intro */
.std__intro{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(16px, 3vw, 30px);
  align-items: start;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.std__title{
  margin: 0 0 10px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--red);
}

.std__desc{
  margin: 0 0 14px;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.5;
  max-width: 70ch;
}

.std__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: var(--red);
  color:#fff;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;

  padding: 12px 16px;
  border-radius: 999px;

  box-shadow: 0 12px 22px rgba(227,6,19,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.std__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(227,6,19,.34);
}

/* Imagen intro */
.std__introMedia{
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
.std__introImg{
  width:100%;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Grid cards */
.std__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}

/* ===== GLASS BOX (reutilizable) ===== */
.glassBox{
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);

  background: rgba(255,255,255,.55);
  border: 2px solid rgba(0,0,0,.25);
  box-shadow: var(--glass-shadow);

  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);

  position: relative;
  overflow: hidden;
}

.glassBox::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 55%);
  transform: rotate(8deg);
  pointer-events:none;
}

.glassBox__title{
  margin: 0 0 12px;
  font-weight: 900;
  font-size: clamp(18px, 2.1vw, 24px);
  letter-spacing: .3px;
}

.glassBox__tag{
  color: var(--red);
  font-style: italic;
}

.glassBox__block h4{
  margin: 12px 0 8px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--red);
}

.glassBox ul,
.glassBox__list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.45;
  font-size: 13px;
}

.glassBox--wide{
  grid-column: 1 / -1;
}

.glassBox__columns{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

/* Responsive */
@media (max-width: 900px){
  .std__intro{
    grid-template-columns: 1fr;
  }

  .std__grid{
    grid-template-columns: 1fr;
  }

  .glassBox--wide{
    grid-column: auto;
  }

  .glassBox__columns{
    grid-template-columns: 1fr;
  }
}

/* Animación (si ya la tienes global, NO la dupliques) */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

:root{
  --red:#e30613;
  --max:1200px;
  --black:#0b0b0b;

  /* glass */
  --glass-bg: rgba(255,255,255,.14);
  --glass-brd: rgba(255,255,255,.28);
  --glass-shadow: 0 18px 40px rgba(0,0,0,.22);
}

/* Sección */
.spec{
  background: #fff;
  color: var(--black);
}

.spec__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

.spec__title{
  margin: 0 0 clamp(18px, 3vw, 28px);
  text-align: center;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  font-size: clamp(26px, 4.4vw, 44px);
}

/* Grid (2 columnas desktop, 1 en mobile) */
.spec__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 24px);
}

/* Card glass */
.specCard{
  border-radius: 18px;
  overflow:hidden;

  background: rgba(255,255,255,.55);
  border: 2px solid rgba(0,0,0,.22);
  box-shadow: var(--glass-shadow);

  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);

  position: relative;
}

/* brillo suave */
.specCard::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.35), transparent 55%);
  transform: rotate(8deg);
  pointer-events:none;
}

.specCard__media{
  background:#ddd;
}

.specCard__media img{
  width:100%;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Body */
.specCard__body{
  padding: 14px 16px 16px;
}

.specCard__h{
  margin: 0 0 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.2;
}

.specCard__p{
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 900px){
  .spec__grid{
    grid-template-columns: 1fr;
  }
  .specCard__media img{
    aspect-ratio: 16/9;
  }
}

/* Animación (si ya la tienes global, NO la dupliques) */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}


                        /*ESTILOS PARA LA PAGINA DE PROTECTION ACCESORIES*/
  :root{
  --red:#e30613;
  --black:#0b0b0b;
  --max:1200px;
}

.acc{
  background:#fff;
  color:var(--black);
}

.acc__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) 24px;
}

/* TITULO */
.acc__title{
  text-align:center;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-size: clamp(34px, 6vw, 64px);
}

/* TABS */
.acc__tabs{
  display:flex;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.acc__tab{
  background: var(--red);
  color:#fff;
  text-decoration:none;

  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-align:center;

  padding: 14px 18px;
  border-radius: 6px;

  min-width: 150px;
  line-height: 1.05;

  transition: transform .2s ease, filter .2s ease;
}

.acc__tab:hover{ transform: translateY(-2px); filter: brightness(1.05); }
.acc__tab.is-active{ outline: 3px solid rgba(227,6,19,.25); }

/* CONTENIDO */
.acc__content{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.acc__media{
  border-radius: 6px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.acc__img{
  width:100%;
  height:100%;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.acc__headline{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: .5px;
  line-height: .92;
  font-size: clamp(36px, 4.6vw, 55px);
}

.acc__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 62ch;
  text-align: justify;
  text-justify: inter-word;
}

.acc__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  background: var(--red);
  color:#fff;
  font-weight: 900;
  text-transform: uppercase;

  padding: 14px 18px;
  border-radius: 999px;
  letter-spacing: .5px;

  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 20px rgba(227,6,19,.25);
}
.acc__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(227,6,19,.35);
}

/* ANIMACIÓN AL SCROLL */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .acc__content{ grid-template-columns: 1fr; }
  .acc__text{ max-width: 75ch; }
}
@media (max-width: 600px){
  .acc__tab{ min-width: 44%; }
  .acc__text{ text-align: left; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

:root{
  --red:#e30613;
  --max:1200px;
}

/* Fondo rojo */
.cableVid{
  background: var(--red);
  color:#fff;
}

.cableVid__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Layout */
.cableVid__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Texto */
.cableVid__title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: .95;
  font-size: clamp(40px, 5vw, 50px);

  /*margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: .95;
  font-size: clamp(42px, 5vw, 50px);*/
}

.cableVid__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.6;
  max-width: 56ch;
}

/* Botón blanco */
.cableVid__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#fff;
  color:#000;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;

  padding: 14px 18px;
  border-radius: 14px;
  border: 3px solid #000;

  transition: transform .2s ease;
}

.cableVid__cta:hover{
  transform: translateY(-2px);
}

/* Video (rectángulo gris) */
.cableVid__right{
  display:flex;
  justify-content: flex-end;
}

/* Video local */
.cableVid__video{
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  display:block;
  background: #d9d9d9; /* gris como la maqueta */
  border-radius: 0;    /* borde recto */
  border: 0;
  box-shadow: none;
  object-fit: cover;
}

/* Si usas iframe */
.cableVid__embed{
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  background:#d9d9d9;
}
.cableVid__embed iframe{
  width:100%;
  height:100%;
  display:block;
  border:0;
}

/* Responsive */
@media (max-width: 980px){
  .cableVid__grid{
    grid-template-columns: 1fr;
  }

  .cableVid__right{
    justify-content: center;
  }

  .cableVid__cta{
    width: 100%;
  }
}

/* ===== Reveal reusable ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

:root{
  --red:#e30613;
  --black:#0b0b0b;
  --max:1200px;
}

/* Fondo blanco */
.capo{
  background:#fff;
  color:var(--black);
}

.capo__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Layout */
.capo__grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Media gris (video/imagen) */
.capo__left{
  display:flex;
  justify-content: flex-start;
}

/* Para video o imagen */
.capo__media{
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 10; /* parecido al rectángulo de la maqueta */
  display:block;
  background:#d9d9d9;   /* gris */
  border: 0;
  border-radius: 0;     /* bordes rectos */
  box-shadow: none;
  object-fit: cover;
}

/* Si usas iframe */
.capo__embed{
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 10;
  background:#d9d9d9;
}
.capo__embed iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Texto */
.capo__title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: .95;
  font-size: clamp(42px, 5vw, 50px);
}

.capo__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
  text-align: justify;
  text-justify: inter-word;
}

/* Botón rojo */
.capo__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: var(--red);
  color:#fff;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;

  padding: 14px 18px;
  border-radius: 999px;

  box-shadow: 0 12px 22px rgba(227,6,19,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.capo__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(227,6,19,.34);
}

/* Responsive */
@media (max-width: 980px){
  .capo__grid{ grid-template-columns: 1fr; }
  .capo__text{
    max-width: 75ch;
    text-align: left; /* mejor en móvil */
  }
  .capo__cta{ width: 100%; }
}

/* ===== Reveal (mismo sistema) ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}

:root{
  --red:#e30613;
  --max:1200px;
}

/* Fondo rojo */
.tuercas{
  background: var(--red);
  color:#fff;
}

.tuercas__container{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 24px;
}

/* Layout */
.tuercas__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Texto */
.tuercas__title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: .95;
  font-size: clamp(42px, 5vw, 45px);
}

.tuercas__text{
  margin: 0 0 22px;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
  text-align: justify;
  text-justify: inter-word;
}

/* Botón blanco con borde negro (como la maqueta) */
.tuercas__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#fff;
  color:#000;
  text-decoration:none;

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;

  padding: 14px 18px;
  border-radius: 14px;
  border: 3px solid #000;

  transition: transform .2s ease;
}

.tuercas__cta:hover{
  transform: translateY(-2px);
}

/* Imagen */
.tuercas__right{
  display:flex;
  justify-content: flex-end;
}

.tuercas__img{
  width: min(760px, 100%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display:block;
  border-radius: 0;     /* bordes rectos como la referencia */
  box-shadow: none;
}

/* Responsive */
@media (max-width: 980px){
  .tuercas__grid{ grid-template-columns: 1fr; }
  .tuercas__right{ justify-content: center; }
  .tuercas__text{
    max-width: 75ch;
    text-align: left; /* mejor lectura en móvil */
  }
  .tuercas__cta{ width: 100%; }
}

/* ===== Reveal (mismo sistema) ===== */
.js-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal{ transition:none !important; }
}