        /* ===== CHAT ===== */
        .chat {
          position: fixed;
          bottom: 20px;
          right: 20px;
          max-width: 300px;
          z-index: 9999;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          border: 2px solid #f9061d;
          font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
      
        #sc {
          background-color: #f9061d;
          color: white;
          padding: 15px;
          font-size: 16px;
          width: 100%;
          height: 45px;
          cursor: pointer;
          border: none;
          border-radius: 8px 8px 0 0;
          text-align: left;
          font-weight: 600;
          transition: background-color 0.2s;
        }
      
        #sc:hover {
          background-color: #d60518;
        }
      
        #panel {
          background-color: white;
          display: none;
          width: 100%;
          height: 300px;
          border-radius: 0 0 8px 8px;
          overflow: hidden;
          box-shadow: inset 0 1px 0 #eee;
        }
      
        #chat-messages {
          padding: 10px;
          height: 240px;
          overflow-y: auto;
          background-color: #fafafa;
          font-size: 14px;
          line-height: 1.4;
        }
      
        #chat-input-area {
          padding: 0 10px 10px;
        }
      
        #chat-input-area input[type="text"] {
          width: 100%;
          padding: 12px 16px;
          margin: 0;
          box-sizing: border-box;
          border: 1px solid #ddd;
          border-radius: 20px;
          font-size: 14px;
          outline: none;
          transition: border-color 0.2s;
        }
      
        #chat-input-area input[type="text"]:focus {
          border-color: #f9061d;
        }
      
        .chat-message {
          background-color: #f1f0f0;
          color: black;
          padding: 10px;
          width: fit-content;
          max-width: 80%;
          border-radius: 15px;
          margin-bottom: 10px;
          text-align: left;
        }
      
        .user-message {
          background-color: #e3f2fd;
          margin-left: auto;
          text-align: right;
        }
      
        .stt {
          margin-top: 5px;
        }
      
        /* ===== ÍCONO PDF ===== */
        a[href$=".pdf"] {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          text-decoration: none;
          color: inherit;
          transition: transform 0.2s;
        }
      
        a[href$=".pdf"]:hover {
          transform: translateX(4px);
        }
      
        a[href$=".pdf"]::before {
          content: "";
          display: inline-block;
          width: 20px;
          height: 20px;
          background-image: url('/adobe.png');
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          transition: transform 0.3s;
        }
      
        a[href$=".pdf"]:hover::before {
          transform: scale(1.2);
        }
      
        /* ===== EMPRESAS DEL GRUPO DPL ===== */
        .dpl-group-widget {
          text-align: center;
        }
      
        .dpl-logos-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
          gap: 20px;
          margin-top: 15px;
        }
      
        .logo-item {
          padding: 15px;
          background: #f8f9fa;
          border-radius: 8px;
          transition: transform 0.3s, box-shadow 0.3s;
        }
      
        .logo-item:hover {
          transform: translateY(-4px);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }
      
        .logo-link {
          display: block;
          text-decoration: none;
          color: inherit;
          transition: opacity 0.3s;
        }
      
        .logo-link:hover {
          opacity: 0.95;
        }
      
        .logo-img {
          height: 50px;
          max-width: 100%;
          object-fit: contain;
          filter: grayscale(10%) contrast(110%);
          transition: filter 0.3s, transform 0.3s;
        }
      
        .logo-link:hover .logo-img {
          filter: grayscale(0%) contrast(120%);
          transform: scale(1.05);
        }
      
        .logo-label {
          display: block;
          font-size: 14px;
          font-weight: 600;
          margin-top: 8px;
          color: var(--color-dark);
          text-align: center;
        }
      
        /* ===== GALERÍA DINÁMICA (COLLAGE) - ÚNICA Y ESPECÍFICA ===== */
        .collage-section {
          background: #f8f9fa;
          padding: 60px 0;
        }
      
        .collage-section .section-title {
          font-size: 2.5rem;
          color: var(--color-dark);
          margin-bottom: 10px;
          text-align: center;
        }
      
        .collage-section .section-subtitle {
          font-size: 1.1rem;
          color: #666;
          max-width: 600px;
          margin: 0 auto 30px;
          text-align: center;
        }
      
        .collage-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
          gap: 20px;
          margin-top: 30px;
        }
      
        .collage-item {
          position: relative;
          overflow: hidden;
          border-radius: 12px;
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
          transform: translateY(30px);
          opacity: 0;
          transition: 
            transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            opacity 0.7s ease-out,
            box-shadow 0.3s ease;
          cursor: pointer;
        }
      
        .collage-item.visible {
          opacity: 1;
          transform: translateY(0);
        }
      
        .collage-item:hover {
          transform: translateY(-10px) scale(1.03);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
          z-index: 2;
        }
      
        .collage-img {
          width: 100%;
          height: 220px;
          object-fit: cover;
          display: block;
          transition: transform 0.5s ease;
        }
      
        .collage-item:hover .collage-img {
          transform: scale(1.12);
        }
      
        .collage-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
          color: white;
          padding: 16px;
          font-weight: 600;
          font-size: 14px;
          opacity: 0;
          transform: translateY(10px);
          transition: all 0.35s ease;
          text-align: center;
        }
      
        .collage-item:hover .collage-overlay {
          opacity: 1;
          transform: translateY(0);
        }
      
        /* Lightbox */
        .lightbox {
          display: none;
          position: fixed;
          z-index: 9999;
          padding: 20px;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          overflow: auto;
          background-color: rgba(0,0,0,0.9);
        }
      
        .lightbox-content {
          margin: auto;
          display: block;
          width: 90%;
          max-width: 900px;
          animation: zoom 0.3s;
        }
      
        @keyframes zoom {
          from { transform: scale(0); }
          to { transform: scale(1); }
        }
      
        #lightbox-caption {
          margin: 15px auto;
          text-align: center;
          color: #fff;
          font-size: 18px;
          max-width: 900px;
        }
      
        .close {
          position: absolute;
          top: 20px;
          right: 35px;
          color: #f1f1f1;
          font-size: 40px;
          font-weight: bold;
          transition: 0.3s;
          cursor: pointer;
        }
      
        .close:hover,
        .close:focus {
          color: #bbb;
          text-decoration: none;
        }
      
        /* Responsive */
        @media (max-width: 768px) {
          .collage-section .section-title { font-size: 2rem; }
          .collage-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
          .collage-img { height: 180px; }
          .lightbox-content { width: 95%; }
          .close { top: 10px; right: 20px; font-size: 30px; }
        }

        /* ===== SLIDER HERO MODERNIZADO ===== */
.hero-slider .slide-content {
  background: rgba(255, 255, 255, 0.25);
  color: #000;
  padding: 18px 24px;
  border-radius: 10px;
  max-width: 620px;
  margin: 0 auto;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-slider .slide-product-btn {
  background: #f9061d;
  color: white;
  border: none;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: default;
  margin-bottom: 12px;
}

.hero-slider .slide-desc {
  color: #000;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
}

.hero-slider .slide-btns a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-slider .slide-btns a:hover {
  color: #f9061d;
}

.hero-slider .slide-btns svg {
  fill: #000;
}

.hero-slider .slide-btns a:hover svg {
  fill: #f9061d;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider .slide-content {
    padding: 14px 18px;
    max-width: 90%;
  }
  .hero-slider .slide-desc {
    font-size: 1.1rem;
  }
}

/* ===== SECCIÓN PROCESOS Y SOLUCIONES - DINÁMICA ===== */
.section-title-dynamic {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-dynamic .section-subtitle {
  display: block;
  color: #f9061d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title-dynamic .section-heading {
  font-size: 2rem;
  color: #18171C;
  margin-bottom: 20px;
}

.theme-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.theme-btn-arrow:hover {
  background: #f9061d;
  transform: translateX(5px);
}

.theme-btn-arrow:hover svg path,
.theme-btn-arrow:hover svg rect {
  fill: #fff !important;
}

/* Tarjetas dinámicas */
.grid-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.grid-card .entry-media {
  position: relative;
  overflow: hidden;
}

.grid-card .entry-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-card:hover .entry-media img {
  transform: scale(1.08);
}

.grid-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(249, 6, 29, 0.95);
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  cursor: default;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.grid-card:hover .grid-overlay {
  opacity: 1;
}

.grid-card .entry-details {
  padding: 20px;
}

.grid-card .entry-details h4 {
  margin: 0 0 12px 0;
  font-size: 1rem;
}

.grid-link {
  color: #18171C;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: block;
}

.grid-link:hover {
  color: #f9061d;
}

/* Enlaces PDF con ícono */
.grid-link.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Animación de entrada al hacer scroll */
.grid-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.grid-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title-dynamic .section-heading {
    font-size: 1.6rem;
  }
  .grid-card .entry-media img {
    height: 180px;
  }
}

/* Eliminar TODOS los elementos decorativos blancos */
.trending-articles-section .entry-media * {
  pointer-events: none;
}

.trending-articles-section .entry-media img {
  pointer-events: auto;
}

/* Forzar que solo se vea la imagen */
.trending-articles-section .entry-media > *:not(img) {
  display: none !important;
}

/* ===== VIDEOTECA - SECCIÓN DINÁMICA ===== */
.recent-videos-section {
  background: #f8f9fa;
}

.section-title-dynamic {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-dynamic .section-subtitle {
  display: block;
  color: #f9061d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title-dynamic .section-heading {
  font-size: 2.2rem;
  color: #18171C;
  margin-bottom: 20px;
}

.theme-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.theme-btn-arrow:hover {
  background: #f9061d;
  transform: translateX(5px);
}

.theme-btn-arrow:hover svg path,
.theme-btn-arrow:hover svg rect {
  fill: #fff !important;
}

/* Tarjetas de video */
.video-card-main,
.video-card-small {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.video-card-main:hover,
.video-card-small:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Media de video */
.video-card-main .entry-media,
.video-card-small .entry-media {
  position: relative;
  overflow: hidden;
}

/* Forzar que la imagen se vea completa */
.video-card-main .entry-media img {
  width: 100% !important;
  height: 350px !important;
  object-fit: cover !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

.video-card-small .entry-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card-main:hover .entry-media img,
.video-card-small:hover .entry-media img {
  transform: scale(1.08);
}

/* Badge de video */
.video-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(249, 6, 29, 0.95);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
  cursor: default;
}

/* Overlay oscuro */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.video-card-main:hover .video-overlay,
.video-card-small:hover .video-overlay {
  opacity: 1;
}

/* Botón de play */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  transition: transform 0.3s ease;
}

.video-card-main:hover .video-play-btn,
.video-card-small:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

.video-play-btn svg circle {
  transition: fill 0.3s ease;
}

.video-card-main:hover .video-play-btn svg circle,
.video-card-small:hover .video-play-btn svg circle {
  fill: #f9061d !important;
}

/* Detalles del video */
.entry-details {
  padding: 25px;
}

.entry-details .author {
  margin-bottom: 12px;
}

.entry-details .author a {
  color: #f9061d;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.entry-details .author a:hover {
  color: #d60518;
}

.entry-details h4 {
  margin: 0 0 15px 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.entry-details h4 a {
  color: #18171C;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.entry-details h4 a:hover {
  color: #f9061d;
}

/* Metadatos del video */
.video-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.video-meta li {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-meta li i {
  color: #f9061d;
  font-size: 0.95rem;
}

.video-meta li a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.video-meta li a:hover {
  color: #f9061d;
}

/* Animación de entrada al hacer scroll */
.video-card-main,
.video-card-small {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.video-card-main.visible,
.video-card-small.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .video-card-main .entry-media img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .section-title-dynamic .section-heading {
    font-size: 1.8rem;
  }
  .video-card-main .entry-media img {
    height: 250px;
  }
  .video-card-small .entry-media img {
    height: 160px;
  }
  .entry-details {
    padding: 20px;
  }
  .entry-details h4 {
    font-size: 1.1rem;
  }
}

/* Eliminar rectángulo blanco del video principal */
.video-card-main .entry-media::before,
.video-card-main .entry-media::after,
.video-card-main .white-shape,
.video-card-main .shape-white,
.video-card-main .media-shape,
.video-card-main .entry-media > div[class*="shape"],
.video-card-main .entry-media > div[class*="white"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Si es un elemento específico con clase o ID */
.video-card-main .entry-media [style*="background: white"],
.video-card-main .entry-media [style*="background: #fff"],
.video-card-main .entry-media [style*="background:#fff"] {
  display: none !important;
}

/* Asegurar que solo se vea la imagen y el botón de play */
.video-card-main .entry-media {
  position: relative;
  overflow: hidden;
}

/* Forzar que la imagen se vea completa */
.video-card-main .entry-media img {
  width: 100% !important;
  height: 350px !important;
  object-fit: cover !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

.video-card-main .video-play-btn,
.video-card-main .video-badge {
  position: relative;
  z-index: 3;
}

/* Si el problema es el overlay */
.video-card-main .video-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent) !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card-main:hover .video-overlay {
  opacity: 1;
}

.nombre-de-la-clase {
  display: none !important;
}

/* Corregir rectángulo blanco del badge */
.video-badge {
  background: rgba(249, 6, 29, 0.95) !important; /* Rojo corporativo */
  color: white !important;
  border: none !important;
  padding: 8px 18px !important;
  border-radius: 25px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  position: absolute !important;
  top: 15px !important;
  left: 15px !important;
  z-index: 10 !important;
  cursor: default !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

/* Eliminar cualquier estilo por defecto del botón */
.video-badge:focus,
.video-badge:active,
.video-badge:hover {
  background: rgba(249, 6, 29, 0.95) !important;
  outline: none !important;
  border: none !important;
}

/* Si hay pseudo-elementos creando el rectángulo */
.video-badge::before,
.video-badge::after {
  display: none !important;
}

/* Asegurar que el contenedor no tenga fondos blancos */
.video-card-main .entry-media {
  background: transparent !important;
}

.video-card-main .entry-media > * {
  background: transparent !important;
}

/* Excepto el badge que debe ser rojo */
.video-card-main .entry-media > .video-badge {
  background: rgba(249, 6, 29, 0.95) !important;
}

/* Eliminar el rectángulo rojo/etiqueta lateral */
.video-card-main .video-badge {
    display: none !important;
}

/* ===== TARJETAS DE CATÁLOGOS PDF - COMPACTAS Y DINÁMICAS ===== */
.catalog-widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #18171C;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f9061d;
  display: inline-block;
}

.catalog-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.catalog-card:hover {
  background: #f9061d;
  border-color: #f9061d;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(249, 6, 29, 0.25);
}

.catalog-card:hover .catalog-icon svg {
  fill: #fff;
  transform: scale(1.1);
}

.catalog-card:hover .catalog-name {
  color: #fff;
}

.catalog-card:hover .catalog-size {
  color: rgba(255,255,255,0.9);
}

.catalog-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 6, 29, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.catalog-icon svg {
  transition: all 0.3s ease;
}

.catalog-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.catalog-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #18171C;
  transition: color 0.3s ease;
}

.catalog-size {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Responsive - Mantener compacto en móviles */
@media (max-width: 768px) {
  .catalog-card {
    padding: 10px 12px;
  }
  .catalog-icon {
    width: 35px;
    height: 35px;
  }
  .catalog-name {
    font-size: 0.9rem;
  }
  .catalog-size {
    font-size: 0.7rem;
  }
}

/* ===== SECCIÓN DE CONTACTO - INTERFAZ MEJORADA ===== */

/* Título de página */
.page-title-contact .inner {
    text-align: center;
    padding: 40px 20px;
  }
  
  .page-title-contact .page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    font-weight: 400;
  }
  
  /* Sección de contacto */
  .contact-section {
    padding: 60px 0;
  }
  
  /* Introducción */
  .contact-intro {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(249, 6, 29, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .contact-intro-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Formulario */
  .contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }
  
  /* Filas de formulario */
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-col {
    flex: 1;
  }
  
  /* Grupos de formulario */
  .form-group {
    margin-bottom: 24px;
    position: relative;
  }
  
  .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #18171C;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  
  .label-icon {
    color: #f9061d;
    flex-shrink: 0;
  }
  
  .required {
    color: #f9061d;
    font-weight: 700;
  }
  
  /* Inputs y textarea */
  .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    color: #18171C;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
  }
  
  .form-control::placeholder {
    color: #aaa;
  }
  
  .form-control:focus {
    outline: none;
    border-color: #f9061d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 6, 29, 0.1);
  }
  
  .form-control:hover:not(:focus) {
    border-color: #ccc;
  }
  
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Ayuda de formulario */
  .form-help {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }
  
  /* Botón de envío */
  .theme-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f9061d;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(249, 6, 29, 0.3);
  }
  
  .theme-btn-submit:hover {
    background: #d60518;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 6, 29, 0.4);
  }
  
  .theme-btn-submit:active {
    transform: translateY(0);
  }
  
  .btn-icon {
    display: inline-flex;
    align-items: center;
  }
  
  .btn-icon svg {
    transition: transform 0.3s ease;
  }
  
  .theme-btn-submit:hover .btn-icon svg {
    transform: translateX(3px);
  }
  
  /* Nota de privacidad */
  .form-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .contact-form {
      padding: 30px 20px;
    }
    
    .page-title-contact .inner {
      padding: 30px 15px;
    }
    
    .theme-btn-submit {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* Estados de validación visual (opcional, se activan vía JS si lo deseas) */
  .form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2328a745' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 40px;
  }
  
  .form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293 5.354 4.646z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 40px;
  }

  /* ===== FIX MENÚ DESKTOP ===== */
@media (min-width: 992px) {
    /* Forzar que el menú desktop sea visible y no slide */
    #slide-nav {
      position: static !important;
      transform: none !important;
      width: auto !important;
      height: auto !important;
      overflow: visible !important;
      display: block !important;
      background: transparent !important;
      box-shadow: none !important;
      padding: 0 !important;
    }
    
    /* Asegurar que los enlaces funcionen normal en desktop */
    #slide-nav .nav-menu > li > a {
      pointer-events: auto !important;
      cursor: pointer !important;
    }
    
    /* Ocultar botón de cierre en desktop */
    #slide-nav .close-btn {
      display: none !important;
    }
    
    /* Asegurar que el navbar colapse correctamente en desktop */
    .navbar-collapse.collapse {
      display: block !important;
      height: auto !important;
      padding-bottom: 0;
      overflow: visible !important;
    }
  }
  
  /* En móvil, mantener el comportamiento slide */
  @media (max-width: 991px) {
    #slide-nav {
      position: fixed !important;
    }
  }

  /* ===== SECCIÓN SUCURSALES - INTERFAZ MEJORADA ===== */

/* Título de página */
.page-title-offices .inner {
    text-align: center;
    padding: 40px 20px;
  }
  
  .page-title-offices .page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    font-weight: 400;
  }
  
  /* Sección general */
  .offices-section {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .offices-intro {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .intro-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Tarjetas de sucursales */
  .branch-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e0e0e0;
  }
  
  .branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  /* Sucursal principal destacada */
  .branch-card-main {
    border-left-color: #f9061d;
    box-shadow: 0 6px 25px rgba(249, 6, 29, 0.15);
  }
  
  .branch-card-main:hover {
    box-shadow: 0 10px 35px rgba(249, 6, 29, 0.25);
  }
  
  /* Cabecera de tarjeta */
  .branch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #fafafa, #fff);
    border-bottom: 1px solid #eee;
  }
  
  .branch-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(249, 6, 29, 0.1);
    border-radius: 10px;
    color: #f9061d;
  }
  
  .branch-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #18171C;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .branch-badge {
    background: #f9061d;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Cuerpo de tarjeta */
  .branch-body {
    padding: 25px;
  }
  
  .branch-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Items de información */
  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .info-icon {
    color: #f9061d;
    flex-shrink: 0;
    margin-top: 3px;
  }
  
  .info-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
  }
  
  .info-text small {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-top: 4px;
    font-style: italic;
  }
  
  /* Teléfonos y emails */
  .info-phones,
  .info-emails {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .info-phones a,
  .info-emails a {
    color: #18171C;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .info-phones a:hover,
  .info-emails a:hover {
    color: #f9061d;
  }
  
  .info-phones a.fax {
    color: #888;
  }
  
  .info-phones a.fax:hover {
    color: #f9061d;
  }
  
  /* Botón de mapa */
  .branch-actions {
    margin-top: 25px;
    text-align: right;
  }
  
  .btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #18171C;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
  }
  
  .btn-map:hover {
    background: #f9061d;
    color: white;
    border-color: #f9061d;
    transform: translateX(3px);
  }
  
  .btn-map svg {
    transition: transform 0.3s ease;
  }
  
  .btn-map:hover svg {
    transform: scale(1.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .branch-header {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
    
    .branch-actions {
      text-align: center;
    }
    
    .btn-map {
      width: 100%;
      justify-content: center;
    }
    
    .info-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    
    .branch-card {
      margin-bottom: 20px;
    }
  }
  
  /* Accesibilidad: focus visible */
  .branch-card a:focus {
    outline: 2px solid #f9061d;
    outline-offset: 2px;
  }

  /* ===== ARTÍCULOS DESTACADOS - INTERFAZ MEJORADA ===== */

/* Contenedor de posts */
.featured-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Tarjeta de post */
.post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Media del post */
.post-card .entry-media {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.post-card .entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .entry-media img {
  transform: scale(1.08);
}

/* Overlay y badge */
.post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-card:hover .post-overlay {
  opacity: 1;
}

.post-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  color: white;
}

.badge-eco { background: linear-gradient(135deg, #28a745, #20c997); }
.badge-primary { background: linear-gradient(135deg, #f9061d, #d60518); }
.badge-secondary { background: linear-gradient(135deg, #6c757d, #495057); }
.badge-accent { background: linear-gradient(135deg, #007bff, #0056b3); }

/* Detalles del post */
.post-card .entry-details {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Meta información */
.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.post-category {
  color: #f9061d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-date {
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-date i {
  font-size: 0.8rem;
}

/* Título y párrafo */
.post-card .entry-details h4 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.post-card .entry-details h4 a {
  color: #18171C;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card .entry-details h4 a:hover {
  color: #f9061d;
}

.post-card .entry-details p {
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}

/* Botón "Leer más" */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f9061d;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* ===== SIDEBAR WIDGETS - ESTILO CONSISTENTE ===== */

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.widget-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header del widget */
.widget-header {
  padding: 20px 25px;
  background: linear-gradient(135deg, #fafafa, #fff);
  border-bottom: 1px solid #eee;
}

.widget-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #18171C;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-header h4 i {
  color: #f9061d;
}

.widget-divider {
  height: 3px;
  width: 40px;
  background: #f9061d;
  margin-top: 10px;
  border-radius: 2px;
}

/* Body del widget */
.widget-body {
  padding: 20px 25px;
}

/* Widget: About */
.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249, 6, 29, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .about-overlay {
  opacity: 1;
}

.about-overlay i {
  color: white;
  font-size: 2rem;
}

.about-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-signature {
  max-width: 150px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.about-signature:hover {
  opacity: 1;
}

/* Widget: Recent Posts */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.recent-post-item {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-thumb {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
  transform: scale(1.1);
}

.recent-post-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #f9061d;
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
}

.recent-post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-post-date {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.recent-post-date i {
  font-size: 0.7rem;
}

.recent-post-info h5 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.recent-post-info h5 a {
  color: #18171C;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.recent-post-info h5 a:hover {
  color: #f9061d;
}

/* Widget: Promo/Ad */
.promo-link {
  display: block;
  text-decoration: none;
}

.promo-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.promo-link:hover .promo-image img {
  transform: scale(1.05);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(249, 6, 29, 0.9), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-link:hover .promo-overlay {
  opacity: 1;
}

.promo-text {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-overlay i {
  color: white;
  font-size: 1.2rem;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 991px) {
  .post-card .entry-media {
    height: 200px;
  }
  
  .post-card .entry-details {
    padding: 20px;
  }
  
  .post-card .entry-details h4 {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .post-card {
    flex-direction: column;
  }
  
  .post-card .entry-media {
    height: 180px;
  }
  
  .post-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .recent-post-item {
    flex-direction: column;
    text-align: center;
  }
  
  .recent-post-thumb {
    width: 100%;
    height: 140px;
  }
  
  .widget-body {
    padding: 20px;
  }
}

/* Accesibilidad */
.post-card a:focus,
.read-more:focus,
.recent-post-info a:focus {
  outline: 2px solid #f9061d;
  outline-offset: 2px;
}

/* ===== SECCIÓN DE DESCARGA DE CATÁLOGOS - INDEPENDIENTE ===== */

/* Sección principal */
.catalog-download-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 80px 0;
}

/* Header de la sección */
.catalog-section-header {
  max-width: 700px;
  margin: 0 auto;
}

.catalog-icon-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(249, 6, 29, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
}

.catalog-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #18171C;
  margin-bottom: 12px;
}

.catalog-section-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Grid de tarjetas */
.catalog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* Tarjeta individual */
.catalog-card-large {
  display: block;
  text-decoration: none;
  color: inherit;
}

.catalog-card-large-inner {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

.catalog-card-large-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f9061d, #d60518);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.catalog-card-large:hover .catalog-card-large-inner {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: #f9061d;
}

.catalog-card-large:hover .catalog-card-large-inner::before {
  transform: scaleX(1);
}

/* Ícono de la tarjeta */
.catalog-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(249, 6, 29, 0.1);
  border-radius: 14px;
  margin-bottom: 18px;
  color: #f9061d;
  transition: all 0.3s ease;
}

.catalog-card-large:hover .catalog-card-icon {
  background: #f9061d;
  color: white;
  transform: scale(1.05);
}

.catalog-card-icon svg {
  transition: transform 0.3s ease;
}

.catalog-card-large:hover .catalog-card-icon svg {
  transform: scale(1.1);
}

/* Contenido de la tarjeta */
.catalog-card-content {
  flex: 1;
  margin-bottom: 20px;
}

.catalog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #18171C;
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.catalog-card-large:hover .catalog-card-title {
  color: #f9061d;
}

.catalog-card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

/* Meta información */
.catalog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.catalog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #888;
  font-weight: 500;
}

.catalog-card-meta i {
  font-size: 0.75rem;
  color: #f9061d;
}

/* Acción de descarga */
.catalog-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.btn-download {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9061d;
  transition: all 0.3s ease;
}

.download-arrow {
  color: #f9061d;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.catalog-card-large:hover .btn-download {
  color: #d60518;
}

.catalog-card-large:hover .download-arrow {
  transform: translateY(3px);
}

/* Nota de sección */
.catalog-section-note {
  margin-top: 40px;
}

.catalog-section-note p {
  margin: 0;
  color: #888;
}

.catalog-section-note a {
  color: #f9061d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.catalog-section-note a:hover {
  color: #d60518;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .catalog-download-section {
    padding: 60px 0;
  }
  
  .catalog-section-title {
    font-size: 1.75rem;
  }
  
  .catalog-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .catalog-card-large-inner {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .catalog-icon-large {
    width: 60px;
    height: 60px;
  }
  
  .catalog-section-title {
    font-size: 1.5rem;
  }
  
  .catalog-section-subtitle {
    font-size: 1rem;
  }
  
  .catalog-card-title {
    font-size: 1.15rem;
  }
  
  .catalog-card-desc {
    font-size: 0.9rem;
  }
  
  .catalog-card-meta {
    gap: 8px;
  }
}

/* Accesibilidad */
.catalog-card-large:focus .catalog-card-large-inner {
  outline: 2px solid #f9061d;
  outline-offset: 2px;
}

/* Animación de entrada (opcional, se activa con JS si lo deseas) */
.catalog-card-large {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.catalog-card-large.visible {
  opacity: 1;
  transform: translateY(0);
}