/* =========================
RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
  
  html {
  scroll-behavior: smooth;
  }
  
  body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
  }
  
  /* =========================
  HEADER
  ========================= */
  
  header {
  width: 100%;
  height: 100px;

  background: rgba(255, 255, 255, 0.88);
  
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  
  align-items: center;
  
  padding: 10px 50px;
  
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
 
  
  }
  
  /* =========================
  LOGO
  ========================= */
  
  .logo {
  justify-self: start;
  
 
  display: block;
  
  flex-shrink: 0;

  
  }
  
  .logo img {
  display: block;
  

  width: 180px;
  
  height: auto;
 
  
  }
  
  /* =========================
  MENÚ
  ========================= */
  
  nav {
  justify-self: center;
  }
  
  nav ul {
  display: flex;
  
 
  align-items: center;
  
  gap: 35px;
  
  list-style: none;

  
  }
  
  nav a {
  display: block;

  text-decoration: none;
  
  color: #111;
  
  font-size: 15px;
  
  font-weight: 600;
  
  white-space: nowrap;
  
  transition: color 0.2s ease;
 
  
  }
  
  nav a:hover {
  color: #e30613;
  }
  
  /* =========================
  WHATSAPP FLOTANTE
  ========================= */

  .whatsapp {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #fff;

  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.20);

  transition:
      background 0.2s ease,
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .whatsapp-flotante {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  }

  .whatsapp i {
  display: block;
  font-size: 29px;
  line-height: 1;
  color: #fff;
  }

  .whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 11px 28px rgba(0, 0, 0, 0.24);
  }

  /* =========================
  MENÚ HAMBURGUESA
  ========================= */
  
  .menu-toggle {
  display: none;
  
 
  width: 42px;
  height: 42px;
  
  padding: 0;
  
  background: transparent;
  
  border: none;
  
  cursor: pointer;
  
  flex-direction: column;
  
  align-items: center;
  
  justify-content: center;
  
  gap: 5px;
 
  
  }
  
  .menu-toggle span {
  display: block;
  

  width: 24px;
  height: 2px;
  
  background: #111;
  
  transition:
      transform 0.25s ease,
      opacity 0.25s ease;

  
  }
  
  .menu-toggle.active span:nth-child(1) {
  transform:
  translateY(7px)
  rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
  opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
  transform:
  translateY(-7px)
  rotate(-45deg);
  }
  
  /* =========================
  HERO
  ========================= */
  
  .hero {
  position: relative;
  

  width: 100%;
  
  height: calc(100vh - 100px);
  
  background-image: url("hero.jpg");
  
  background-size: cover;
  
  background-position: center;
  
  display: flex;
  
  align-items: center;
 
  
  }
  
  .hero::before {
  content: "";
  
 
  position: absolute;
  
  inset: 0;
  
  background: rgba(0, 0, 0, 0.40);
 
  
  }
  
  .hero-content {
  position: relative;
  

  z-index: 1;
  
  max-width: 700px;
  
  margin-left: 8%;
  
  color: #fff;
 
  
  }
  
  .hero-content .subtitulo {
  font-size: 18px;
  

  font-weight: 500;
  
  margin-bottom: 15px;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;

  
  }
  
  .hero-content h1 {
  font-size: clamp(42px, 6vw, 78px);
  

  line-height: 1.05;
  
  font-weight: 700;
  
  margin-bottom: 25px;
 
  
  }
  
  .hero-content h1 span {
  color: #e30613;
  }
  
  .hero-content p {
  max-width: 560px;
  

  font-size: 18px;
  
  line-height: 1.6;
  
  margin-bottom: 35px;

  
  }
  
  /* =========================
  BOTÓN
  ========================= */
  
  .boton {
  display: inline-block;
  
 
  padding: 15px 30px;
  
  background: #e30613;
  
  color: #fff;
  
  text-decoration: none;
  
  font-size: 14px;
  
  font-weight: 600;
  
  transition:
      background 0.2s ease,
      transform 0.2s ease;

  
  }
  
  .boton:hover {
  background: #b8050f;
  

  transform: translateY(-2px);
  
  
  }
  
  /* =========================
  EMPRESA
  ========================= */
  
  .empresa {
  padding: 120px 8%;

  background: #fff;
 
  
  }
  
  .empresa-contenido {
  max-width: 1200px;
  

  margin: 0 auto;
  
  display: grid;
  
  grid-template-columns: 1fr 1fr;
  
  gap: 100px;
  
  align-items: center;

  
  }
  
  .empresa-titulo small {
  display: block;
  

  margin-bottom: 15px;
  
  color: #e30613;
  
  font-size: 14px;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;
 
  
  }
  
  .empresa-titulo h2 {
  font-size: clamp(36px, 4vw, 58px);
  
 
  line-height: 1.1;
  
  font-weight: 700;
 
  
  }
  
  .empresa-texto p {
  font-size: 17px;
  
 
  line-height: 1.8;
  
  color: #555;
  
  margin-bottom: 20px;
 
  
  }
  
  .empresa-linea {
  width: 60px;
  

  height: 4px;
  
  background: #e30613;
  
  margin-bottom: 30px;
 
  
  }
  
  /* =========================
  PRODUCTOS
  ========================= */

  .productos {
  padding: 110px 8%;

  background: #111;

  color: #fff;
  }

  .productos-contenido {
  max-width: 1200px;

  margin: 0 auto;
  }

  .productos-header {
  max-width: 820px;

  margin-bottom: 65px;
  }

  .productos-header small {
  display: block;

  margin-bottom: 15px;

  color: #e30613;

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;
  }

  .productos-header h2 {
  max-width: 760px;

  margin-bottom: 25px;

  font-size: clamp(36px, 4vw, 58px);

  line-height: 1.1;
  }

  .productos-header p {
  max-width: 760px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 17px;

  line-height: 1.8;
  }

  .productos-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.18);

  border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .producto-categoria {
  min-height: 300px;

  padding: 38px 34px;

  text-align: center;

  border-right: 1px solid rgba(255, 255, 255, 0.18);

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);

  transition:
      background 0.2s ease,
      transform 0.2s ease;
  }

  .producto-categoria:hover {
  background: rgba(255, 255, 255, 0.045);
  }

  .producto-icono {
  width: 58px;
  height: 58px;

  margin: 0 auto 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #e30613;

  font-size: 29px;

  line-height: 1;
  }

  .producto-categoria h3 {
  margin-bottom: 16px;

  font-size: 22px;

  line-height: 1.25;
  }

  .producto-categoria p {
  color: rgba(255, 255, 255, 0.66);

  font-size: 15px;

  line-height: 1.75;
  }

  .productos-nota {
  margin-top: 38px;

  padding-top: 30px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .productos-nota p {
  max-width: 620px;

  color: rgba(255, 255, 255, 0.64);

  font-size: 14px;

  line-height: 1.7;
  }

  .productos-enlace {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #fff;

  font-size: 14px;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;
  }

  .productos-enlace span {
  color: #e30613;

  font-size: 20px;

  transition: transform 0.2s ease;
  }

  .productos-enlace:hover span {
  transform: translateX(4px);
  }


  /* =========================
  POR QUÉ TTAC
  ========================= */
  
  .porque-ttac {
  padding: 110px 8%;
  
  
  background: #f5f5f5;
 
  
  }
  
  .porque-contenido {
  max-width: 1200px;
  

  margin: 0 auto;
 
  
  }
  
  .porque-header {
  max-width: 750px;
  
 
  margin-bottom: 65px;
 
  
  }
  
  .porque-header small {
  display: block;
  

  margin-bottom: 15px;
  
  color: #e30613;
  
  font-size: 14px;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;

  
  }
  
  .porque-header h2 {
  font-size: clamp(36px, 4vw, 58px);
  

  line-height: 1.1;
  
  margin-bottom: 25px;

  
  }
  
  .porque-header p {
  max-width: 650px;
  

  color: #666;
  
  font-size: 17px;
  
  line-height: 1.8;

  
  }
  
  /* =========================
  GRID POR QUÉ TTAC
  ========================= */
  
  .porque-grid {
  display: grid;
  
  
  grid-template-columns: repeat(3, 1fr);
  
  gap: 0;
  
  border-top: 1px solid #d8d8d8;
 
  
  }
  
  .porque-item {
  padding: 35px 40px 20px 0;
  
 
  border-right: 1px solid #d8d8d8;
  
  text-align: center;

  
  }
  
  .porque-item:not(:first-child) {
  padding-left: 40px;
  }
  
  .porque-item:last-child {
  border-right: none;
  }
  
  /* =========================
  ICONOS POR QUÉ TTAC
  ========================= */
  
  .porque-icono {
  width: 70px;
  height: 70px;
  
 
  margin: 0 auto 25px;
  
  display: flex;
  
  align-items: center;
  justify-content: center;
  
  color: #e30613;
  
  font-size: 34px;
  
  line-height: 1;

  
  }
  
  .porque-icono i {
  display: block;
  }
  
  /* =========================
  CONTENIDO POR QUÉ TTAC
  ========================= */
  
  .porque-item h3 {
  margin-bottom: 15px;

  font-size: 23px;
  
  line-height: 1.2;

  
  }
  
  .porque-item p {
  max-width: 320px;
  

  margin: 0 auto;
  
  color: #666;
  
  font-size: 15px;
  
  line-height: 1.7;

  
  }
  
  /* =========================
  CERCANÍA
  ========================= */
  
  .cercania {
  padding: 110px 8%;
  

  background: #111;
  
  color: #fff;
 
  
  }
  
  .cercania-contenido {
  max-width: 1200px;
  

  margin: 0 auto;
  
  display: grid;
  
  grid-template-columns: 1.2fr 0.8fr;
  
  gap: 100px;
  
 
  
  }
  
  .cercania-texto small {
  display: block;
  
 
  margin-bottom: 15px;
  
  color: #e30613;
  
  font-size: 14px;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;

  
  }
  
  .cercania-texto h2 {
  max-width: 650px;

  font-size: clamp(38px, 5vw, 65px);
  
  line-height: 1.05;
  
  margin-bottom: 30px;

  
  }
  
  .cercania-texto p {
  max-width: 650px;
 
  color: rgba(255, 255, 255, 0.7);
  
  font-size: 16px;
  
  line-height: 1.8;
  
  margin-bottom: 18px;

  }
  
  /* =========================
  DATOS CERCANÍA
  ========================= */
  
  .cercania-datos {
  display: flex;
  

  flex-direction: column;
  
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  
  }
  
  .zona {
  display: flex;
  

  align-items: center;
  
  gap: 25px;
  
  padding: 25px 0;
  
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

  
  }
  
  /* =========================
  ICONOS CERCANÍA
  ========================= */
  
  .zona-icono {
  width: 52px;
  height: 52px;
  
 
  display: flex;
  
  align-items: center;
  justify-content: center;
  
  flex-shrink: 0;
  
  color: #e30613;
  
  font-size: 29px;
  
  line-height: 1;
 
  
  }
  
  .zona-icono i {
  display: block;
  }
  
  .zona strong {
  font-size: 25px;
  

  font-weight: 600;

  
  }
  
  /* =========================
  CONTACTO
  ========================= */
  
  .contacto {
  padding: 110px 8%;

  background: #e30613;
  
  color: #fff;

  
  }
  
  .contacto-contenido {
  max-width: 1200px;
  

  margin: 0 auto;
  
  display: grid;
  
  grid-template-columns: 1fr 1fr;
  
  gap: 80px;
  
  align-items: center;
 
  
  }
  
  .contacto-texto small {
  display: block;
  

  margin-bottom: 15px;
  
  color: #fff;
  
  font-size: 14px;
  
  font-weight: 600;
  
  text-transform: uppercase;
  
  letter-spacing: 2px;

  
  }
  
  .contacto-texto h2 {
  font-size: clamp(50px, 6vw, 80px);
  
 
  line-height: 1;
  
  margin-bottom: 25px;
  
  color: #fff;
 
  
  }
  
  .contacto-texto > p {
  max-width: 500px;
  

  color: rgba(255, 255, 255, 0.85);
  
  font-size: 17px;
  
  line-height: 1.7;
  
  margin-bottom: 35px;
 
  
  }
  
  /* =========================
  DATOS CONTACTO
  ========================= */
  
  .contacto-datos {
  display: flex;
  

  flex-direction: column;
  
  gap: 25px;

  
  }
  
  .contacto-info {
  display: flex;
  

  flex-direction: column;
  
  gap: 8px;
  
  padding-top: 20px;
  
  border-top: 1px solid rgba(255, 255, 255, 0.35);

  
  }
  
  .contacto-info > span {
  color: rgba(255, 255, 255, 0.7);
  

  font-size: 13px;
  
  text-transform: uppercase;
  
  letter-spacing: 1px;

  
  }
  
  .contacto-info strong {
  font-size: 16px;
  

  font-weight: 500;
  
  color: #fff;
  
  line-height: 1.6;

  
  }
  
  /* =========================
  TELÉFONO
  ========================= */
  
  .contacto-telefono {
  display: inline-block;
  

  color: #fff;
  
  font-size: 24px;
  
  font-weight: 600;
  
  text-decoration: none;
  
  transition: opacity 0.2s ease;

  
  }
  
  .contacto-telefono:hover {
  opacity: 0.75;
  }
  
  /* =========================
  HORARIOS
  ========================= */
  
  .horarios {
  display: flex;
  

  flex-direction: column;
  
  gap: 9px;
  
  margin-top: 8px;
  
  width: 100%;

  
  }
  
  .horario-dia {
  display: flex;
  

  justify-content: space-between;
  
  align-items: baseline;
  
  gap: 20px;
  
  font-size: 14px;
  
  line-height: 1.4;
 
  
  }
  
  .horario-dia strong {
  min-width: 85px;
  
 
  color: #fff;
  
  font-weight: 600;
  
  
  }
  
  .horario-dia span {
  color: rgba(255, 255, 255, 0.85);
  
 
  font-size: 13px;
  
  text-transform: none;
  
  letter-spacing: 0;
 
  
  }
  
  .horario-dia.cerrado span {
  color: rgba(255, 255, 255, 0.55);
  }
  
  /* =========================
  GOOGLE MAPS
  ========================= */
  
  .contacto-mapa {
  width: 100%;
  

  height: 450px;
  
  overflow: hidden;
  
  border-radius: 6px;
  
  border: 3px solid rgba(255, 255, 255, 0.9);
  
  box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.18);
 
  
  }
  
  .contacto-mapa iframe {
  display: block;
  

  width: 100%;
  
  height: 100%;
  
  border: 0;

  
  }
  
  /* =========================
  FOOTER
  ========================= */

  footer {
      background: #111;
      color: rgba(255, 255, 255, 0.68);
      padding: 72px 8% 24px;
  }

  .footer-principal {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.45fr 1fr 0.8fr 1.15fr;
      gap: 55px;
  }

  .footer-marca img {
      display: block;
      width: 105px;
      height: auto;
      margin-bottom: 24px;
  }

  .footer-marca p {
      max-width: 340px;
      font-size: 14px;
      line-height: 1.8;
  }

  .footer-columna h2 {
      margin-bottom: 22px;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
  }

  .footer-columna ul {
      margin: 0;
      padding: 0;
      list-style: none;
  }

  .footer-columna li + li {
      margin-top: 11px;
  }

  .footer-columna a {
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      line-height: 1.5;
      text-decoration: none;
      transition: color 0.2s ease;
  }

  .footer-columna a:hover {
      color: #fff;
  }

  .footer-contacto address {
      margin-bottom: 18px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      font-style: normal;
      line-height: 1.75;
  }

  .footer-contacto .footer-telefono {
      display: block;
      margin-bottom: 12px;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
  }

  .footer-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .footer-whatsapp i {
      color: #25D366;
      font-size: 18px;
  }

  .footer-inferior {
      max-width: 1200px;
      margin: 55px auto 0;
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-inferior p {
      color: rgba(255, 255, 255, 0.45);
      font-size: 11px;
  }

  .footer-legal {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
  }

  .footer-legal span {
      color: rgba(255, 255, 255, 0.45);
      font-size: 11px;
  }


  /* =========================
  TABLET
  ========================= */
  
  @media (max-width: 1000px) {
  
 
  header {
      padding: 0 30px;
  }
  
  .empresa-contenido {
      gap: 60px;
  }
  
  .cercania-contenido {
      gap: 60px;
  }
  
  .contacto-contenido {
      gap: 50px;
  }

  .footer-principal {
      grid-template-columns: repeat(2, 1fr);
      gap: 45px 60px;
  }

  
  }
  
  /* =========================
  MÓVIL
  ========================= */
  
  @media (max-width: 768px) {
  
  /* Header */
  
  header {
      height: 86px;
  
      padding: 12px 20px;
  
      display: flex;
  
      justify-content: space-between;
  
      align-items: center;
  }
  
  
  /* Logo */
  
  .logo img {
      width: 145px;
  }
/* Hamburguesa */
  
  .menu-toggle {
      display: flex;
  
      flex-shrink: 0;
  }
  
  
  /* Menú */
  
  nav {
      position: absolute;
  
      top: 86px;
  
      left: 0;
  
      width: 100%;
  
      background: #fff;
  
      padding: 0 20px;
  
      max-height: 0;
  
      overflow: hidden;
  
      opacity: 0;
  
      transition:
          max-height 0.3s ease,
          opacity 0.3s ease;
  
      box-shadow:
          0 8px 15px rgba(0, 0, 0, 0.08);
  }
  
  nav.active {
      max-height: 350px;
  
      opacity: 1;
  }
  
  nav ul {
      width: 100%;
  
      display: flex;
  
      flex-direction: column;
  
      align-items: stretch;
  
      gap: 0;
  }
  
  nav li {
      width: 100%;
  
      border-bottom: 1px solid #eee;
  }
  
  nav li:last-child {
      border-bottom: none;
  }
  
  nav a {
      display: block;
  
      width: 100%;
  
      padding: 18px 5px;
  
      font-size: 14px;
  
      text-align: left;
  }
  
  
  /* Hero */
  
  .hero {
      height: calc(100vh - 86px);
  
      background-position: center;
  }
  
  .hero-content {
      width: auto;
  
      max-width: none;
  
      margin-left: 25px;
  
      margin-right: 25px;
  }
  
  .hero-content .subtitulo {
      font-size: 14px;
  }
  
  .hero-content h1 {
      font-size: clamp(40px, 12vw, 60px);
  }
  
  .hero-content p {
      font-size: 16px;
  }
  
  
  /* Empresa */
  
  .empresa {
      padding: 80px 25px;
  }
  
  .empresa-contenido {
      grid-template-columns: 1fr;
  
      gap: 40px;
  }
  
  
  /* Productos */

  .productos {
      padding: 80px 25px;
  }

  .productos-header {
      margin-bottom: 45px;
  }

  .productos-grid {
      grid-template-columns: 1fr;
  }

  .producto-categoria {
      min-height: auto;

      padding: 32px 28px;
  }

  .productos-nota {
      margin-top: 30px;

      padding-top: 28px;

      flex-direction: column;

      align-items: flex-start;
  }

  .productos-enlace {
      white-space: normal;
  }


  /* Por qué TTAC */
  
  .porque-ttac {
      padding: 80px 25px;
  }
  
  .porque-header {
      margin-bottom: 50px;
  }
  
  .porque-grid {
      grid-template-columns: 1fr;
  }
  
  .porque-item,
  .porque-item:not(:first-child) {
      padding: 30px 0;
  
      border-right: none;
  
      border-bottom: 1px solid #d8d8d8;
  }
  
  .porque-item:first-child {
      padding-top: 30px;
  }
  
  .porque-item:last-child {
      border-bottom: none;
  }
  
  .porque-icono {
      width: 68px;
  
      height: 68px;
  
      margin-bottom: 22px;
  
      font-size: 32px;
  }
  
  
  /* Cercanía */
  
  .cercania {
      padding: 80px 25px;
  }
  
  .cercania-contenido {
      grid-template-columns: 1fr;
  
      gap: 50px;
  }
  
  .zona strong {
      font-size: 22px;
  }
  
  .zona-icono {
      width: 48px;
  
      height: 48px;
  
      font-size: 26px;
  }
  
  
  /* Contacto */
  
  .contacto {
      padding: 80px 25px;
  }
  
  .contacto-contenido {
      grid-template-columns: 1fr;
  
      gap: 50px;
  }
  
  .contacto-telefono {
      font-size: 24px;
  }
  
  .horario-dia {
      justify-content: flex-start;
  
      gap: 15px;
  }
  
  .horario-dia strong {
      min-width: 80px;
  }
  
  .horario-dia span {
      font-size: 12px;
  }
  
  
  /* Mapa */
  
  .contacto-mapa {
      height: 350px;
  
      margin-top: 10px;
  }
  
  
  /* Footer */

  footer {
      padding: 60px 25px 22px;
  }

  .footer-principal {
      grid-template-columns: 1fr;
      gap: 42px;
  }

  .footer-marca img {
      width: 95px;
  }

  .footer-marca p {
      max-width: 100%;
  }

  .footer-columna h2 {
      margin-bottom: 18px;
  }

  .footer-inferior {
      margin-top: 45px;
      padding-top: 20px;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
  }

  .footer-legal {
      gap: 10px 18px;
  }

  }
  

/* =========================
   LEGAL / COOKIES
========================= */
.footer-legal a,
.footer-cookie-settings {
    color: rgba(255, 255, 255, 0.45);
    font: inherit;
    font-size: 11px;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.footer-legal a:hover,
.footer-cookie-settings:hover { color: #fff; }

.mapa-consentimiento {
    width: 100%; height: 100%; min-height: 320px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 18px; padding: 35px; text-align: center; background: #f3f3f3; color: #222;
}
.mapa-consentimiento i { font-size: 40px; color: #e30613; }
.mapa-consentimiento p { max-width: 460px; line-height: 1.6; }
.boton-mapa { padding: 12px 20px; border: 0; background: #111; color: #fff; font-weight: 600; cursor: pointer; }

.cookie-banner {
    position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 9999;
    max-width: 980px; margin: 0 auto; padding: 24px;
    background: #fff; color: #111; border: 1px solid #ddd; box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
.cookie-banner h2, .cookie-modal h2 { margin-bottom: 10px; font-size: 20px; }
.cookie-banner p, .cookie-modal p { font-size: 14px; line-height: 1.65; color: #555; }
.cookie-banner a, .cookie-modal a { color: #111; font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cookie-btn { min-height: 42px; padding: 10px 18px; border: 1px solid #111; background: #fff; color: #111; font-weight: 700; cursor: pointer; }
.cookie-btn.primary { background: #111; color: #fff; }
.cookie-btn.accept, .cookie-btn.reject { min-width: 140px; }

.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; padding: 22px; background: rgba(0,0,0,.58); }
.cookie-panel { width: min(680px, 100%); max-height: 88vh; overflow: auto; padding: 28px; background: #fff; }
.cookie-option { display: flex; justify-content: space-between; gap: 25px; padding: 18px 0; border-top: 1px solid #e5e5e5; }
.cookie-option strong { display:block; margin-bottom:6px; }
.cookie-option small { display:block; color:#666; line-height:1.5; }
.cookie-option input { width: 20px; height: 20px; accent-color: #111; }
.cookie-modal-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }

.legal-main { background:#f6f6f6; padding:70px 8% 100px; }
.legal-wrap { max-width:900px; margin:0 auto; background:#fff; padding:55px; }
.legal-wrap h1 { font-size:clamp(36px,5vw,58px); margin-bottom:16px; }
.legal-wrap .legal-updated { color:#777; margin-bottom:35px; font-size:13px; }
.legal-wrap h2 { margin:34px 0 12px; font-size:24px; }
.legal-wrap h3 { margin:24px 0 10px; font-size:18px; }
.legal-wrap p, .legal-wrap li { color:#444; line-height:1.8; font-size:15px; }
.legal-wrap ul { margin:12px 0 0 22px; }
.legal-wrap a { color:#b8050f; }
.legal-note { margin-top:35px; padding:18px 20px; background:#f4f4f4; border-left:4px solid #e30613; }

@media (max-width: 768px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-actions .cookie-btn { flex:1 1 100%; }
  .legal-main { padding:35px 18px 70px; }
  .legal-wrap { padding:30px 22px; }
}


/* =========================
   AYUDA ECOVUL 2025
========================= */

.ayuda-ecovul {
    padding: 100px 8%;
    background: #f5f5f5;
}

.ayuda-ecovul-contenido {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.ayuda-ecovul-texto small,
.legal-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #e30613;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.7px;
}

.ayuda-ecovul-texto h2 {
    margin-bottom: 24px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    color: #111;
}

.ayuda-ecovul-texto > p {
    margin-bottom: 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.ayuda-ecovul-datos {
    margin: 0 0 30px;
}

.ayuda-ecovul-datos > div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 13px 0;
    border-top: 1px solid #d9d9d9;
}

.ayuda-ecovul-datos > div:last-child {
    border-bottom: 1px solid #d9d9d9;
}

.ayuda-ecovul-datos dt {
    color: #777;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.ayuda-ecovul-datos dd {
    margin: 0;
    color: #111;
    font-size: 15px;
    font-weight: 600;
}

.ayuda-ecovul-enlace {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.ayuda-ecovul-enlace span {
    color: #e30613;
    font-size: 20px;
    transition: transform .2s ease;
}

.ayuda-ecovul-enlace:hover span {
    transform: translateX(4px);
}

.ayuda-ecovul-cartel {
    background: #fff;
    padding: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .10);
}

.ayuda-ecovul-cartel img,
.subvencion-cartel-completo img {
    display: block;
    width: 100%;
    height: auto;
}

.subvenciones-wrap {
    max-width: 1000px;
}

.subvencion-ficha {
    margin: 35px 0;
    padding: 26px 30px;
    background: #f5f5f5;
    border-left: 4px solid #e30613;
}

.subvencion-ficha p:last-child {
    margin-bottom: 0;
}

.subvencion-cartel-completo {
    margin: 45px 0;
}

@media (max-width: 900px) {
    .ayuda-ecovul-contenido {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 768px) {
    .ayuda-ecovul {
        padding: 75px 25px;
    }

    .ayuda-ecovul-datos > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .ayuda-ecovul-cartel {
        padding: 7px;
    }

    .subvencion-ficha {
        padding: 22px 20px;
    }
}


/* =========================
   FORMULARIO DE CONTACTO
========================= */

.contacto-columna-derecha {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacto-formulario {
    background: #fff;
    color: #111;
    padding: 38px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.formulario-cabecera {
    margin-bottom: 28px;
}

.formulario-cabecera > span {
    display: block;
    margin-bottom: 8px;
    color: #e30613;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.formulario-cabecera h3 {
    margin-bottom: 12px;
    color: #111;
    font-size: 28px;
    line-height: 1.15;
}

.formulario-cabecera p {
    color: #666;
    font-size: 14px;
    line-height: 1.65;
}

.formulario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campo-completo {
    grid-column: 1 / -1;
}

.campo label {
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.campo input,
.campo textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 15px;
    padding: 13px 14px;
    outline: none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.campo textarea {
    resize: vertical;
    min-height: 135px;
}

.campo input:focus,
.campo textarea:focus {
    border-color: #e30613;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .10);
}

.checkbox-privacidad {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-privacidad input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: #e30613;
}

.checkbox-privacidad span {
    color: #666;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 400;
}

.checkbox-privacidad a {
    color: #111;
    text-decoration: underline;
}

.boton-formulario {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.campo-trampa {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .contacto-formulario {
        padding: 28px 22px;
    }

    .formulario-grid {
        grid-template-columns: 1fr;
    }

    .campo-completo {
        grid-column: auto;
    }
}


/* =========================
   RESPUESTA FORMULARIO
========================= */

.mensaje-formulario-pagina {
    min-height: 100vh;
    padding: 50px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.mensaje-formulario-caja {
    width: 100%;
    max-width: 620px;
    padding: 55px 45px;
    background: #fff;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .10);
}

.mensaje-formulario-caja i {
    margin-bottom: 25px;
    color: #e30613;
    font-size: 48px;
}

.mensaje-formulario-caja h1 {
    margin-bottom: 18px;
    color: #111;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.1;
}

.mensaje-formulario-caja p {
    margin: 0 auto 30px;
    max-width: 500px;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   CONTACTO — REORGANIZACIÓN
========================= */

.contacto {
    padding: 100px 8%;
}

.contacto-contenido {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.contacto-intro {
    max-width: 820px;
    margin-bottom: 52px;
}

.contacto-intro small {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.contacto-intro h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
}

.contacto-intro p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.7;
}

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

.contacto-bloque-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacto-datos {
    gap: 22px;
}

.contacto-info {
    padding-top: 18px;
}

.contacto-mapa {
    height: 320px;
    margin: 0;
}

.contacto-formulario {
    align-self: start;
    margin: 0;
}

@media (max-width: 900px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contacto-formulario {
        order: 1;
    }

    .contacto-bloque-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contacto {
        padding: 75px 25px;
    }

    .contacto-intro {
        margin-bottom: 36px;
    }

    .contacto-intro h2 {
        font-size: clamp(46px, 13vw, 64px);
    }

    .contacto-mapa {
        height: 280px;
    }
}

/* =========================
   FOTOS TTAC — EMPRESA Y PRODUCTOS
   Añadido sobre la versión estable
========================= */

.empresa-titulo {
    align-self: start;
}

.empresa-foto {
    width: 100%;
    max-width: 500px;
    margin: 34px 0 0;
}

.empresa-foto img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.productos-presentacion {
    margin-bottom: 65px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 60px;
    align-items: center;
}

.productos-presentacion .productos-header {
    max-width: none;
    margin-bottom: 0;
}

.productos-foto {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.productos-foto img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1000px) {
    .productos-presentacion {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .productos-foto {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .empresa-foto {
        max-width: 100%;
        margin-top: 28px;
    }

    .productos-presentacion {
        margin-bottom: 45px;
        gap: 28px;
    }

    .productos-foto {
        border-radius: 6px;
    }
}

/* =========================
   EMPRESA · FOTO + TEXTO
   ========================= */

.empresa-contenido {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.empresa-titulo {
    max-width: 760px;
    margin-bottom: 52px;
}

.empresa-detalle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.empresa-imagen {
    margin: 0;
    width: 100%;
}

.empresa-imagen img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.empresa-texto {
    padding-top: 4px;
}

@media (max-width: 1000px) {
    .empresa-detalle {
        gap: 45px;
    }
}

@media (max-width: 768px) {
    .empresa-titulo {
        margin-bottom: 34px;
    }

    .empresa-detalle {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .empresa-imagen {
        max-width: 620px;
    }

    .empresa-texto {
        padding-top: 0;
    }
}


/* =========================
   COBERTURA · TODA ESPAÑA
   ========================= */

.cobertura-datos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-self: center;
}

.cobertura-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    align-items: start;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.cobertura-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.cobertura-icono {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e30613;
    font-size: 27px;
    line-height: 1;
}

.cobertura-item strong {
    display: block;
    margin-bottom: 9px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.cobertura-item p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cobertura-datos {
        margin-top: 15px;
    }

    .cobertura-item {
        grid-template-columns: 46px 1fr;
        gap: 16px;
        padding: 22px 0;
    }

    .cobertura-icono {
        width: 42px;
        height: 42px;
        font-size: 23px;
    }

    .cobertura-item strong {
        font-size: 21px;
    }
}


/* CTA visita comercial */
.cobertura-cta {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cobertura-cta-texto {
    max-width: 390px;
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.78) !important;
}

.cobertura-boton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #e30613;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cobertura-boton span {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.cobertura-boton:hover {
    background: #b8050f;
    transform: translateY(-2px);
}

.cobertura-boton:hover span {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .cobertura-boton {
        width: 100%;
        justify-content: center;
    }
}


/* =========================
   CONTACTO · DATOS COMPACTOS
   ========================= */

.contacto-datos-compactos {
    gap: 12px;
}

.contacto-info-icono {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
    padding-top: 12px;
}

.contacto-icono {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    line-height: 1;
}

.contacto-info-icono > div > span,
.contacto-horario-contenido > span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contacto-info-icono address {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    line-height: 1.5;
}

.contacto-enlace-compacto,
.contacto-email {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    transition: opacity 0.2s ease;
}

.contacto-email {
    font-size: 15px;
    font-weight: 500;
}

.contacto-enlace-compacto:hover,
.contacto-email:hover {
    opacity: 0.75;
}

.contacto-horario-contenido {
    min-width: 0;
}

.horarios-compactos {
    margin-top: 4px;
    gap: 5px;
}

.horarios-compactos .horario-dia {
    font-size: 13px;
    gap: 12px;
}

.horarios-compactos .horario-dia strong {
    min-width: 125px;
    font-size: 13px;
}

.horarios-compactos .horario-dia span {
    font-size: 12px;
}

/* Reducimos algo la altura visual del bloque de contacto */
.contacto-grid {
    align-items: start;
}

.contacto-bloque-info {
    gap: 24px;
}

.contacto-mapa {
    height: 360px;
}

@media (max-width: 768px) {
    .contacto-info-icono {
        grid-template-columns: 30px 1fr;
        gap: 12px;
    }

    .contacto-icono {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    .horarios-compactos .horario-dia {
        flex-direction: column;
        gap: 2px;
    }

    .horarios-compactos .horario-dia strong {
        min-width: 0;
    }

    .contacto-mapa {
        height: 320px;
    }
}



/* =========================
   CONTACTO · AJUSTE LEGIBILIDAD
   ========================= */

/* Más aire entre mapa y formulario */
.contacto-formulario {
    margin-top: 34px;
}

/* Mayor contraste y presencia en los datos de contacto */
.contacto-info-icono > div > span,
.contacto-horario-contenido > span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
}

.contacto-info-icono address {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.contacto-enlace-compacto,
.contacto-email {
    font-weight: 700;
}

.contacto-email {
    font-size: 16px;
}

.horarios-compactos .horario-dia strong {
    font-size: 14px;
    font-weight: 700;
}

.horarios-compactos .horario-dia span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 500;
}

.contacto-icono {
    color: #fff;
}

@media (max-width: 768px) {
    .contacto-formulario {
        margin-top: 26px;
    }
}
