
   /* ================================================ */
/* ILUMINACIÓN SUTIL EN TÍTULOS H1 Y H2             */
/* ================================================ */
h1, h2 {
  /* sombra tenue para dar un “halo” muy suave */
  text-shadow: 0 0 4px rgba(0, 255, 200, 0.4);
  transition: text-shadow 0.3s ease-in-out;
}

h1:hover, h2:hover {
  /* al pasar el ratón, refuerza ligeramente el efecto */
  text-shadow: 0 0 10px rgba(0, 255, 200, 0.7);
}

    /* Botón premium para escritorio */
    .btn-premium {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 12px 25px;
      background: transparent;
      border: 2px solid var(--gold-color);
      color: var(--gold-color);
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      font-weight: 600;
      border-radius: 5px;
      cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;

      z-index: 1100;
    }
    .btn-premium:hover {
      background: var(--gold-color);
      color: #003333;
        box-shadow: 0 0 10px var(--gold-color);

    }
    @keyframes goldBlink {
      0%, 100% { color: var(--gold-color); }
      50% { color: #000; }
    }
    
    /* Por defecto, el contenedor móvil estará oculto */
    .btn-premium-mobile-container {
      display: none;
    }
    
    /* Media query para pantallas pequeñas */
    @media (max-width: 768px) {
      /* Ocultar el botón premium original (dentro del header) */
      .btn-premium {
        display: none;
      }
      /* Mostrar el contenedor para el botón premium móvil */
      .btn-premium-mobile-container {
        display: block;
        text-align: center;
        margin: 15px 0;  /* Separación debajo del encabezado */
      }
      /* Ajustar el estilo del botón móvil */
      .btn-premium-mobile-container .btn-premium {
        position: static; /* En el flujo del documento */
        padding: 8px 15px;
        font-size: 16px;
        border: 2px solid var(--gold-color);
        display: inline-block;
      }
    }
    
    /* RESET Y CONFIGURACIÓN GLOBAL */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    /* VARIABLES */
    :root {
      --primary-color: #003333;
      --accent-color:  #00B3B3;
      --gradient-main: linear-gradient(90deg, #003333, #00B3B3, #66FFFF);
      --gold-color:    #FFD700;
    }
    body.pagina-particulares {
      background: var(--gradient-main);
      color: #fff;
      font-family: 'Roboto', sans-serif;
    }
    a { 
      color: #fff; 
      text-decoration: none; 
    }
    a:hover { 
      text-decoration: underline; 
    }
    
    /* Botón "Volver a inicio" */
    .boton-volver {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 40px;
      height: 40px;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      z-index: 1000;
    }
    .boton-volver a {
      display: block;
      width: 100%;
      height: 100%;
      text-align: center;
    }
    .boton-volver img {
      width: 24px;
      height: 24px;
      display: inline-block;
      margin-top: 2px;
    }
    .boton-volver:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    
    /* ENCABEZADO */
    .encabezado {
      position: relative;
      width: 100%;
      height: 50vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      animation: moverFondo 20s infinite linear;
      background: url('particular5.png') center/cover no-repeat;

        
    }
    .encabezado::before {
      content: "";
      position: absolute;
      top: 0; 
      left: 0; 
      right: 0; 
      bottom: 0;
      background: url('particular5.png') center/cover no-repeat;
      animation: moverFondo 20s infinite linear;
      z-index: -1;
    }
    .encabezado-contenido {
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 700px;
      animation: fadeIn 1.5s ease-in-out;
    }
    .boton-cta {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 25px;
      background: var(--accent-color);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      text-decoration: none;
      font-weight: 600;
      border-radius: 5px;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .boton-cta:hover {
      background: #00CCCC;
      transform: scale(1.05);
    }
    @keyframes moverFondo {
      0% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 768px) {
      .encabezado { height: 40vh; }
      .encabezado-contenido { width: 95%; font-size: 14px; padding: 15px; }
    }
    
    /* ÍNDICE DE NAVEGACIÓN */
    #indice-particulares {
      background: rgba(0, 0, 0, 0.7);
      padding: 10px;
      text-align: center;
      margin-bottom: 20px;
    }
    #indice-particulares ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin: 0;
      padding: 0;
    }
    #indice-particulares li a {
      color: #fff;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      transition: text-decoration 0.3s ease;
    }
    #indice-particulares li a:hover {
      text-decoration: underline;
    }
    
    /* CONTENIDO PRINCIPAL */
    .contenido-particulares {
      padding: 20px 0;
    }
    .parrafo-diagonal {
      background: #003333;
      color: #fff;
      margin: 20px auto;
      padding: 30px;
      position: relative;
      clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
      max-width: 800px;
      text-align: center;
    }
    .centrado-contenido {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }
    .tira-negra-arriba,
    .tira-negra-abajo {
      height: 3cm;
      background: #000;
      margin: 20px 0;
    }
    .tira-negra-arriba {
      clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    }
    .tira-negra-abajo {
      clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    }
    
    /* CARRUSELES – DISEÑO EN DOS COLUMNAS */
    .doble-columna .carrusel-layout {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }
    .doble-columna .carrusel-servicios {
      flex: 1 1 48%;
      text-align: left;
    }
    .doble-columna .texto-explicativo {
      flex: 1 1 48%;
      background: rgba(0,0,0,0.4);
      padding: 20px;
      border: 2px solid var(--accent-color);
      border-radius: 10px;
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }
    .texto-explicativo h3 {
      font-size: 1.5rem;
      color: var(--accent-color);
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
      text-align: center;
    }
    .texto-explicativo p,
    .texto-explicativo ul {
      font-size: 1rem;
      line-height: 1.6;
      text-align: center;
    }
    .texto-explicativo ul {
      margin-top: 10px;
      padding-left: 20px;
      list-style-type: square;
    }
    @media (max-width: 768px) {
      .doble-columna .carrusel-layout {
        flex-direction: column;
      }
    }
    
    /* ESTILOS PARA EL CARRUSEL */
    .carousel {
      position: relative;
      overflow: hidden;
    }
    .carousel-inner {
      display: flex;
      transition: transform 0.5s ease;
    }
    .carousel-item {
      min-width: 100%;
      text-align: left;
      padding: 20px;
      position: relative;
    }
    .carousel-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }
    .carousel-item .image-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.6);
      padding: 8px;
      font-size: 0.95rem;
      text-align: center;
    }
    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: none;
      padding: 10px;
      font-size: 18px;
      cursor: pointer;
      z-index: 9999;
      color: #fff;
    }
    .carousel-control.prev { left: 10px; }
    .carousel-control.next { right: 10px; }


    /* Ensanchar columna de imágenes y ajustar texto */

    /* SERVICIOS GRATUITOS */
    .servicios-gratuitos {
      width: 700px;
      max-width: 100%;
      margin: 20px auto;
      background: #003333;
      color: #fff;
      border: 2px solid var(--accent-color);
      border-radius: 5px;
      padding: 20px;
      text-align: left;
    }
    .servicios-gratuitos h2 {
      text-align: center;
      margin-bottom: 15px;
    }
    
    /* FORMULARIO DE DATOS PERSONALES */
    .columna-central {
      width: 700px;
      max-width: 100%;
      margin: 20px auto;
      background: #003333;
      color: #fff;
      border: 2px solid var(--accent-color);
      border-radius: 5px;
      padding: 20px;
      text-align: left;
    }
    .columna-central input[type="text"],
    .columna-central input[type="number"],
    .columna-central input[type="tel"],
    .columna-central input[type="email"],
    .columna-central textarea {
      width: 100%;
      margin-top: 5px;
      margin-bottom: 15px;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
      color: #000;
    }
    
    /* TÍTULOS H2 INTERACTIVOS */
    .h2-personalizado {
      font-family: 'Lobster', cursive;
      font-size: 2rem;
      color: #fff;
      text-shadow: 1px 1px 2px #000;
      display: block;
      text-align: center;
      transition: transform 0.3s ease, color 0.3s ease;
      cursor: pointer;
      margin-bottom: 15px;
    }
    .h2-personalizado:hover {
      transform: scale(1.05);
      color: var(--accent-color);
    }
    .h2-personalizado::after {
      content: "";
      display: block;
      margin: 0 auto;
      width: 0;
      height: 3px;
      background: var(--accent-color);
      transition: width 0.3s ease;
    }
    .h2-personalizado:hover::after {
      width: 100%;
    }
    @keyframes intermitente {
      0%, 100% { color: var(--accent-color); }
      50% { color: #808080; }
    }
    .h2-gold-intermitente {
      font-family: 'Lobster', cursive;
      font-size: 2rem;
  text-shadow: 0 0 4px rgba(0,255,200,0.4);

      text-align: center;
      margin-bottom: 20px;
  transition: text-shadow 0.3s ease-in-out;

        
    }
    .h2-gold-intermitente:hover {
  text-shadow: 0 0 10px rgba(0,255,200,0.7);
}
    /* SERVICIOS DE PAGO */
    .servicios-pago {
      width: 700px;
      max-width: 100%;
      margin: 20px auto;
      background: #003333;
      color: #fff;
      border: 2px solid var(--accent-color);
      border-radius: 5px;
      padding: 20px;
      text-align: left;
    }
    .servicios-pago h2 {
      text-align: center;
      margin-bottom: 15px;
  animation: none !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
 cursor: pointer;          /* cursor mano */
  position: relative;       /* para el ::after */
  overflow: visible;        /* asegurar que el ::after no se recorte */
    
        
    }
    .servicios-pago h2:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(0, 255, 200, 0.7);
  transform: scale(1.02);
}
.servicios-pago h2::after {
  content: "";
  display: block;
  margin: 6px auto 0;       /* separación bajo el texto */
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

/* Al hover, ensanchamos la línea */
.servicios-pago h2:hover::after {
  width: 100%;
}
    /* Aseguramos que los labels se muestren como bloque */
    label {
      display: block;
      margin-top: 10px;
      margin-bottom: 5px;
    }
    
    /* FOOTER */
    footer {
      background: var(--primary-color);
      padding: 20px;
      text-align: center;
    }
    footer a {
      color: var(--accent-color);
      margin: 0 10px;
      text-decoration: none;
    }
    
    @media (max-width: 768px) {
      /* Aumentamos el tamaño de los contenedores para una mejor visualización en móvil */
      .carrusel-container, .servicios-gratuitos, .servicios-pago, .columna-central { 
        width: 95%; 
        margin: 20px auto; 
        padding: 20px; 
      }
      /* Aumentamos los tamaños de fuente */
      .h2-personalizado,
      .h2-gold-intermitente {
        font-size: 2.5rem;
      }
      .texto-explicativo p, 
      .texto-explicativo li {
        font-size: 1.1rem;
      }
      /* Hacemos que las imágenes del carrusel sean un poco más grandes */
      .carousel-item img {
        height: 350px;
      }
      /* Desplazamos únicamente la sección de vinilado un poco a la izquierda */
      #carrusel-vinilado {
        margin-left: -10px;
      }
    }
    
    /* PREMIUM IMAGE: Enmarcado de imágenes de servicios de pago */
    .premium-image img {
      width: 100%;
      max-width: 100%;
      border: 2px solid var(--accent-color);
      display: block;
    }


  @media (max-width: 768px) {
    /* — SOLO Remolques: altura fija y recorte igual que en desktop — */
    #carrusel-remolques .carousel-item img {
      width: 100% !important;
      height: 300px !important;      /* misma altura que en PC */
      object-fit: cover !important;   /* recorte idéntico */
      display: block !important;
    }
  }
      .carrusel-container {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto !important;
      padding: 0 !important;
    }
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #carrusel-adaptaciones .carrusel-layout {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  #carrusel-adaptaciones .carrusel-servicios,
  #carrusel-adaptaciones .texto-explicativo {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}
@media (max-width: 768px) {
  /* El contenedor del carrusel siempre al 100% */
  #carrusel-adaptaciones .carousel {
    width: 100% !important;
    overflow: hidden !important;
  }
  /* Inner ocupa siempre sólo el ancho visible */
  #carrusel-adaptaciones .carousel-inner {
    width: 100% !important;
    display: flex !important;
  }
  /* Cada ítem flexiona a 100% del contenedor, no más */
  #carrusel-adaptaciones .carousel-item {
    flex: 0 0 100% !important;
    min-width: 100% !important; /* o bien sólo flex:0 0 100% */
  }
  /* Evita alturas fijas si provocan problemas: */
  #carrusel-adaptaciones .carousel-item img {
    width: 100% !important;
    height: auto !important;
  }
}
 /* Botón flotante Vesabot (WhatsApp) */
    .vesabot-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      padding: 12px 16px 12px 14px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      display: flex;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      z-index: 999;
      font-family: sans-serif;
      font-size: 16px;
    }

    .vesabot-icon {
      width: 28px;
      height: 28px;
      margin-right: 8px;
    }

    @media screen and (max-width: 768px) {
      .header-text h1 { font-size: 1.5em; }
      .text-box h1 { font-size: 2em; }
      .text-box h2 { font-size: 1.4em; }
      .text-box p { font-size: 1em; }
    }

    @media screen and (max-width: 480px) {
      .vesabot-btn {
        padding: 10px 12px;
        font-size: 14px;
      }
      .vesabot-icon {
        width: 24px;
        height: 24px;
        margin-right: 6px;
      }
    }
    /* Botón teléfono fijo (escritorio) */
.header-phone{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.header-phone:hover{ background: rgba(255,255,255,.14); }

/* Botón flotante móvil */
.call-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: none;               /* por defecto oculto (solo móvil lo muestra) */
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #012a2a;
  font-weight: 800;
  background: linear-gradient(135deg,#14b8a6,#06b6d4);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.call-fab:active{ transform: scale(.98); }

/* Iconos del teléfono */
.phone-ico{ width: 18px; height: 18px; display:inline-block; }

/* Responsive: ocultar/mostrar */
@media (max-width: 900px){
  .header-phone{ display:none; }
  .call-fab{ display:flex; }
}

   /* ================================================ */
/* ILUMINACIÓN SUTIL EN TÍTULOS H1 Y H2             */
/* ================================================ */
h1, h2 {
  /* sombra tenue para dar un “halo” muy suave */
  text-shadow: 0 0 4px rgba(0, 255, 200, 0.4);
  transition: text-shadow 0.3s ease-in-out;
}

h1:hover, h2:hover {
  /* al pasar el ratón, refuerza ligeramente el efecto */
  text-shadow: 0 0 10px rgba(0, 255, 200, 0.7);
}

    /* Botón premium para escritorio */
    .btn-premium {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 12px 25px;
      background: transparent;
      border: 2px solid var(--gold-color);
      color: var(--gold-color);
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      font-weight: 600;
      border-radius: 5px;
      cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;

      z-index: 1100;
    }
    .btn-premium:hover {
      background: var(--gold-color);
      color: #003333;
        box-shadow: 0 0 10px var(--gold-color);

    }
    @keyframes goldBlink {
      0%, 100% { color: var(--gold-color); }
      50% { color: #000; }
    }
    
    /* Por defecto, el contenedor móvil estará oculto */
    .btn-premium-mobile-container {
      display: none;
    }
    
    /* Media query para pantallas pequeñas */
    @media (max-width: 768px) {
      /* Ocultar el botón premium original (dentro del header) */
      .btn-premium {
        display: none;
      }
      /* Mostrar el contenedor para el botón premium móvil */
      .btn-premium-mobile-container {
        display: block;
        text-align: center;
        margin: 15px 0;  /* Separación debajo del encabezado */
      }
      /* Ajustar el estilo del botón móvil */
      .btn-premium-mobile-container .btn-premium {
        position: static; /* En el flujo del documento */
        padding: 8px 15px;
        font-size: 16px;
        border: 2px solid var(--gold-color);
        display: inline-block;
      }
    }
    
    /* RESET Y CONFIGURACIÓN GLOBAL */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    /* VARIABLES */
    :root {
      --primary-color: #003333;
      --accent-color:  #00B3B3;
      --gradient-main: linear-gradient(90deg, #003333, #00B3B3, #66FFFF);
      --gold-color:    #FFD700;
    }
    body.pagina-particulares {
      background: var(--gradient-main);
      color: #fff;
      font-family: 'Roboto', sans-serif;
    }
    a { 
      color: #fff; 
      text-decoration: none; 
    }
    a:hover { 
      text-decoration: underline; 
    }
    
    /* Botón "Volver a inicio" */
    .boton-volver {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 40px;
      height: 40px;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      z-index: 1000;
    }
    .boton-volver a {
      display: block;
      width: 100%;
      height: 100%;
      text-align: center;
    }
    .boton-volver img {
      width: 24px;
      height: 24px;
      display: inline-block;
      margin-top: 2px;
    }
    .boton-volver:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    
    /* ENCABEZADO */
    .encabezado {
      position: relative;
      width: 100%;
      height: 50vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      animation: moverFondo 20s infinite linear;
      background: url('particular5.png') center/cover no-repeat;

        
    }
    .encabezado::before {
      content: "";
      position: absolute;
      top: 0; 
      left: 0; 
      right: 0; 
      bottom: 0;
      background: url('particular5.png') center/cover no-repeat;
      animation: moverFondo 20s infinite linear;
      z-index: -1;
    }
    .encabezado-contenido {
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 700px;
      animation: fadeIn 1.5s ease-in-out;
    }
    .boton-cta {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 25px;
      background: var(--accent-color);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      text-decoration: none;
      font-weight: 600;
      border-radius: 5px;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .boton-cta:hover {
      background: #00CCCC;
      transform: scale(1.05);
    }
    @keyframes moverFondo {
      0% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 768px) {
      .encabezado { height: 40vh; }
      .encabezado-contenido { width: 95%; font-size: 14px; padding: 15px; }
    }
    
    /* ÍNDICE DE NAVEGACIÓN */
    #indice-particulares {
      background: rgba(0, 0, 0, 0.7);
      padding: 10px;
      text-align: center;
      margin-bottom: 20px;
    }
    #indice-particulares ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin: 0;
      padding: 0;
    }
    #indice-particulares li a {
      color: #fff;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      transition: text-decoration 0.3s ease;
    }
    #indice-particulares li a:hover {
      text-decoration: underline;
    }
    
    /* CONTENIDO PRINCIPAL */
    .contenido-particulares {
      padding: 20px 0;
    }
    .parrafo-diagonal {
      background: #003333;
      color: #fff;
      margin: 20px auto;
      padding: 30px;
      position: relative;
      clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
      max-width: 800px;
      text-align: center;
    }
    .centrado-contenido {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }
    .tira-negra-arriba,
    .tira-negra-abajo {
      height: 3cm;
      background: #000;
      margin: 20px 0;
    }
    .tira-negra-arriba {
      clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    }
    .tira-negra-abajo {
      clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    }
    
    /* CARRUSELES – DISEÑO EN DOS COLUMNAS */
    .doble-columna .carrusel-layout {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }
    .doble-columna .carrusel-servicios {
      flex: 1 1 48%;
      text-align: left;
    }
    .doble-columna .texto-explicativo {
      flex: 1 1 48%;
      background: rgba(0,0,0,0.4);
      padding: 20px;
      border: 2px solid var(--accent-color);
      border-radius: 10px;
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }
    .texto-explicativo h3 {
      font-size: 1.5rem;
      color: var(--accent-color);
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
      text-align: center;
    }
    .texto-explicativo p,
    .texto-explicativo ul {
      font-size: 1rem;
      line-height: 1.6;
      text-align: center;
    }
    .texto-explicativo ul {
      margin-top: 10px;
      padding-left: 20px;
      list-style-type: square;
    }
    @media (max-width: 768px) {
      .doble-columna .carrusel-layout {
        flex-direction: column;
      }
    }
    
    /* ESTILOS PARA EL CARRUSEL */
    .carousel {
      position: relative;
      overflow: hidden;
    }
    .carousel-inner {
      display: flex;
      transition: transform 0.5s ease;
    }
    .carousel-item {
      min-width: 100%;
      text-align: left;
      padding: 20px;
      position: relative;
    }
    .carousel-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }
    .carousel-item .image-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.6);
      padding: 8px;
      font-size: 0.95rem;
      text-align: center;
    }
    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: none;
      padding: 10px;
      font-size: 18px;
      cursor: pointer;
      z-index: 9999;
      color: #fff;
    }
    .carousel-control.prev { left: 10px; }
    .carousel-control.next { right: 10px; }


    /* Ensanchar columna de imágenes y ajustar texto */

    /* SERVICIOS GRATUITOS */
    .servicios-gratuitos {
      width: 700px;
      max-width: 100%;
      margin: 20px auto;
      background: #003333;
      color: #fff;
      border: 2px solid var(--accent-color);
      border-radius: 5px;
      padding: 20px;
      text-align: left;
    }
    .servicios-gratuitos h2 {
      text-align: center;
      margin-bottom: 15px;
    }
    
    /* FORMULARIO DE DATOS PERSONALES */
    .columna-central {
      width: 700px;
      max-width: 100%;
      margin: 20px auto;
      background: #003333;
      color: #fff;
      border: 2px solid var(--accent-color);
      border-radius: 5px;
      padding: 20px;
      text-align: left;
    }
    .columna-central input[type="text"],
    .columna-central input[type="number"],
    .columna-central input[type="tel"],
    .columna-central input[type="email"],
    .columna-central textarea {
      width: 100%;
      margin-top: 5px;
      margin-bottom: 15px;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
      color: #000;
    }
    
    /* TÍTULOS H2 INTERACTIVOS */
    .h2-personalizado {
      font-family: 'Lobster', cursive;
      font-size: 2rem;
      color: #fff;
      text-shadow: 1px 1px 2px #000;
      display: block;
      text-align: center;
      transition: transform 0.3s ease, color 0.3s ease;
      cursor: pointer;
      margin-bottom: 15px;
    }
    .h2-personalizado:hover {
      transform: scale(1.05);
      color: var(--accent-color);
    }
    .h2-personalizado::after {
      content: "";
      display: block;
      margin: 0 auto;
      width: 0;
      height: 3px;
      background: var(--accent-color);
      transition: width 0.3s ease;
    }
    .h2-personalizado:hover::after {
      width: 100%;
    }
    @keyframes intermitente {
      0%, 100% { color: var(--accent-color); }
      50% { color: #808080; }
    }
    .h2-gold-intermitente {
      font-family: 'Lobster', cursive;
      font-size: 2rem;
  text-shadow: 0 0 4px rgba(0,255,200,0.4);

      text-align: center;
      margin-bottom: 20px;
  transition: text-shadow 0.3s ease-in-out;

        
    }
    .h2-gold-intermitente:hover {
  text-shadow: 0 0 10px rgba(0,255,200,0.7);
}
    /* SERVICIOS DE PAGO */
    .servicios-pago {
      width: 700px;
      max-width: 100%;
      margin: 20px auto;
      background: #003333;
      color: #fff;
      border: 2px solid var(--accent-color);
      border-radius: 5px;
      padding: 20px;
      text-align: left;
    }
    .servicios-pago h2 {
      text-align: center;
      margin-bottom: 15px;
  animation: none !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
 cursor: pointer;          /* cursor mano */
  position: relative;       /* para el ::after */
  overflow: visible;        /* asegurar que el ::after no se recorte */
    
        
    }
    .servicios-pago h2:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(0, 255, 200, 0.7);
  transform: scale(1.02);
}
.servicios-pago h2::after {
  content: "";
  display: block;
  margin: 6px auto 0;       /* separación bajo el texto */
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

/* Al hover, ensanchamos la línea */
.servicios-pago h2:hover::after {
  width: 100%;
}
    /* Aseguramos que los labels se muestren como bloque */
    label {
      display: block;
      margin-top: 10px;
      margin-bottom: 5px;
    }
    
    /* FOOTER */
    footer {
      background: var(--primary-color);
      padding: 20px;
      text-align: center;
    }
    footer a {
      color: var(--accent-color);
      margin: 0 10px;
      text-decoration: none;
    }
    
    @media (max-width: 768px) {
      /* Aumentamos el tamaño de los contenedores para una mejor visualización en móvil */
      .carrusel-container, .servicios-gratuitos, .servicios-pago, .columna-central { 
        width: 95%; 
        margin: 20px auto; 
        padding: 20px; 
      }
      /* Aumentamos los tamaños de fuente */
      .h2-personalizado,
      .h2-gold-intermitente {
        font-size: 2.5rem;
      }
      .texto-explicativo p, 
      .texto-explicativo li {
        font-size: 1.1rem;
      }
      /* Hacemos que las imágenes del carrusel sean un poco más grandes */
      .carousel-item img {
        height: 350px;
      }
      /* Desplazamos únicamente la sección de vinilado un poco a la izquierda */
      #carrusel-vinilado {
        margin-left: -10px;
      }
    }
    
    /* PREMIUM IMAGE: Enmarcado de imágenes de servicios de pago */
    .premium-image img {
      width: 100%;
      max-width: 100%;
      border: 2px solid var(--accent-color);
      display: block;
    }


  @media (max-width: 768px) {
    /* — SOLO Remolques: altura fija y recorte igual que en desktop — */
    #carrusel-remolques .carousel-item img {
      width: 100% !important;
      height: 300px !important;      /* misma altura que en PC */
      object-fit: cover !important;   /* recorte idéntico */
      display: block !important;
    }
  }
      .carrusel-container {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto !important;
      padding: 0 !important;
    }
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #carrusel-adaptaciones .carrusel-layout {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  #carrusel-adaptaciones .carrusel-servicios,
  #carrusel-adaptaciones .texto-explicativo {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}
@media (max-width: 768px) {
  /* El contenedor del carrusel siempre al 100% */
  #carrusel-adaptaciones .carousel {
    width: 100% !important;
    overflow: hidden !important;
  }
  /* Inner ocupa siempre sólo el ancho visible */
  #carrusel-adaptaciones .carousel-inner {
    width: 100% !important;
    display: flex !important;
  }
  /* Cada ítem flexiona a 100% del contenedor, no más */
  #carrusel-adaptaciones .carousel-item {
    flex: 0 0 100% !important;
    min-width: 100% !important; /* o bien sólo flex:0 0 100% */
  }
  /* Evita alturas fijas si provocan problemas: */
  #carrusel-adaptaciones .carousel-item img {
    width: 100% !important;
    height: auto !important;
  }
}
 /* Botón flotante Vesabot (WhatsApp) */
    .vesabot-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      padding: 12px 16px 12px 14px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      display: flex;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      z-index: 999;
      font-family: sans-serif;
      font-size: 16px;
    }

    .vesabot-icon {
      width: 28px;
      height: 28px;
      margin-right: 8px;
    }

    @media screen and (max-width: 768px) {
      .header-text h1 { font-size: 1.5em; }
      .text-box h1 { font-size: 2em; }
      .text-box h2 { font-size: 1.4em; }
      .text-box p { font-size: 1em; }
    }

    @media screen and (max-width: 480px) {
      .vesabot-btn {
        padding: 10px 12px;
        font-size: 14px;
      }
      .vesabot-icon {
        width: 24px;
        height: 24px;
        margin-right: 6px;
      }
    }
    /* Botón teléfono fijo (escritorio) */
.header-phone{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.header-phone:hover{ background: rgba(255,255,255,.14); }

/* Botón flotante móvil */
.call-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  display: none;               /* por defecto oculto (solo móvil lo muestra) */
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #012a2a;
  font-weight: 800;
  background: linear-gradient(135deg,#14b8a6,#06b6d4);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.call-fab:active{ transform: scale(.98); }

/* Iconos del teléfono */
.phone-ico{ width: 18px; height: 18px; display:inline-block; }

/* Responsive: ocultar/mostrar */
@media (max-width: 900px){
  .header-phone{ display:none; }
  .call-fab{ display:flex; }
}
/* fila de CTAs bajo el principal */
.cta-secundarias{
  margin-top: 12px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* botón turquesa con texto negro (llamar) */
/* Botón de llamar con mismo diseño que .boton-cta */
.btn-llamar {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  width: 100%;                   /* igual ancho */
  max-width: 350px;              /* mismo límite que el otro */
  background: #06b6d4;           /* turquesa */
  color: #000;                   /* texto negro */
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
}
.btn-llamar:hover {
  background: #11d6f0;
  transform: scale(1.05);
}


/* botón contorno para vesabot */
.btn-vesabot{
  background: transparent;
  color: #06b6d4;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid #06b6d4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-vesabot:hover{
  background: rgba(6,182,212,.12);
}

/* responsive: que se apilen en móvil y ocupen ancho cómodo */
@media (max-width: 768px){
  .cta-secundarias a{
    flex: 1 1 260px;
    text-align: center;
  }
}

/* pequeño “glow” temporal para el botón de WhatsApp al llegar */
@keyframes pulseGlow{
  0%{ box-shadow: 0 0 0 rgba(37,211,102,0.0); transform: scale(1); }
  50%{ box-shadow: 0 0 26px rgba(37,211,102,0.65); transform: scale(1.03); }
  100%{ box-shadow: 0 0 0 rgba(37,211,102,0.0); transform: scale(1); }
}
.vesabot-btn.pulse{
  animation: pulseGlow 1.6s ease-in-out 1;
}
/* Por defecto, ocultamos el de móvil */
.btn-movil { display: none; }

/* En pantallas pequeñas mostramos el de móvil y ocultamos el de escritorio */
@media (max-width: 768px) {
  .btn-escritorio { display: none; }
  .btn-movil { display: inline-block; }
}

/* Vídeo de fondo encabezado */
.encabezado {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.encabezado .bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.encabezado .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* oscurece un poco el vídeo para que resalte el texto */
  z-index: -1;
}
/* ——— Encabezado con vídeo: anular estilos antiguos ——— */
.encabezado {
  background: none !important;   /* quita la imagen de fondo */
  animation: none !important;    /* quita la animación del fondo */
}

.encabezado::before {
  content: none !important;      /* elimina la capa que tapa el vídeo */
}

.encabezado-contenido {
  position: relative;
  z-index: 1;                    /* texto por encima del vídeo */
}

/* Asegurar capa oscura del vídeo */
.encabezado .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.encabezado .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: -1;                   /* entre vídeo y contenido */
}
/* Oculta el índice en móviles en la página de Particulares */
@media (max-width: 768px){
  #indice-particulares{
    display: none !important;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
}
footer {
  background-color: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}

footer nav {
  margin-top: 10px;
}

footer nav a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
  color: #fff;
}

 