/* ==========================================================================
   1. VARIABLES GLOBALES Y RESET
   ========================================================================== */
:root {
  --bg-light: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  
  /* Colores de Marca */
  --blue-accent: #2563eb;
  --red-accent: #ef4444;
  --yellow-accent: #eab308;
  --green-whatsapp: #22c55e;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==========================================================================
   2. LOGO EN BLOQUES POLIGONALES (HEADER Y FOOTER)
   ========================================================================== */
.logo-box-container {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.2rem 0;
  transition: transform 0.2s ease;
}

.logo-box-container:hover {
  transform: scale(1.03);
}

.block-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.45rem;
  font-family: 'Arial Black', 'Impact', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  margin-right: -7px;
  position: relative;
}

/* Inclinaciones alternadas */
.block-box:nth-child(1) { transform: rotate(-4deg) skewX(-3deg); z-index: 5; border-radius: 5px 2px 2px 5px; }
.block-box:nth-child(2) { transform: rotate(3deg) skewX(2deg); z-index: 4; }
.block-box:nth-child(3) { transform: rotate(-3deg) skewX(-2deg); z-index: 3; }
.block-box:nth-child(4) { transform: rotate(4deg) skewX(3deg); z-index: 2; }
.block-box:nth-child(5) { transform: rotate(-2deg) skewX(-2deg); z-index: 1; border-radius: 2px 5px 5px 2px; }

/* Colores de Fondo de los Bloques */
.block-box.yellow { background-color: #eab308; }
.block-box.dark { background-color: #1e293b; }
.block-box.blue { background-color: #0284c7; }
.block-box.magenta { background-color: #e11d48; }
.block-box.green { background-color: #22c55e; }

/* Colores de Texto */
.block-box .text-dark { color: #0f172a; }
.block-box .text-white { color: #ffffff; }

/* ==========================================================================
   3. NAVEGACIÓN
   ========================================================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--blue-accent);
}

.nav-link.btn-highlight {
  background: linear-gradient(135deg, var(--red-accent), var(--yellow-accent));
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   4. BOTÓN FLOTANTE WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: var(--green-whatsapp);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   5. FOOTER PRINCIPAL (4 COLUMNAS)
   ========================================================================== */
.main-footer {
  background: linear-gradient(180deg, #0f172a 0%, #090d16 100%);
  border-top: 4px solid var(--blue-accent);
  padding: 3.5rem 5% 2.5rem;
  margin-top: 4rem;
  color: #f8fafc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  display: inline-block;
}

.footer-box h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--red-accent), var(--yellow-accent));
  margin-top: 0.4rem;
  border-radius: 2px;
}

.logo-box-container.footer-logo-style {
  transform: scale(0.85);
  transform-origin: left center;
  margin-bottom: 0.8rem;
  display: inline-flex;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.social-title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.social-btn.fb:hover { background-color: #1877f2; border-color: #1877f2; }
.social-btn.tk:hover { background-color: #000000; border-color: #ffffff; }
.social-btn.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-menu a:hover {
  color: var(--yellow-accent);
}

.contact-item {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.contact-item strong {
  color: #ffffff;
}

.payment-methods {
  margin-top: 1.2rem;
}

.payment-methods h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.payment-badges {
  display: flex;
  gap: 0.6rem;
}

.bank-card {
  width: 90px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
}

.bank-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bcp-card { background-color: #1a3860; border: 1px solid rgba(255, 255, 255, 0.15); }
.yape-card { background-color: #243656; border: 1px solid rgba(36, 180, 180, 0.4); }

/* Adaptabilidad a Móviles y Tablets */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ESTILOS PARA SUBMENÚS DESPLEGABLES (DROPDOWN)
   ========================================================================== */
.nav-menu li.dropdown {
  position: relative;
}

.nav-menu a i {
  font-size: 0.7rem;
  margin-left: 3px;
  transition: transform 0.2s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1000;
  border: 1px solid #e2e8f0;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: #334155;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #f8fafc;
  color: #2563eb;
}

/* Mostrar desplegable al pasar el cursor */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

/* ==========================================================================
   POPUP MODAL DE COTIZACIÓN
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  width: 90%;
  max-width: 480px;
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #ef4444;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0.4rem 0;
}

.modal-header p {
  font-size: 0.85rem;
  color: #64748b;
}

/* Formulario */
.cotizacion-form .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cotizacion-form label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #334155;
}

.cotizacion-form input,
.cotizacion-form select,
.cotizacion-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.cotizacion-form input:focus,
.cotizacion-form select:focus,
.cotizacion-form textarea:focus {
  border-color: #2563eb;
}

.btn-send-quote {
  width: 100%;
  padding: 0.85rem;
  background-color: #22c55e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  transition: background-color 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

.btn-send-quote:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}

/* ==========================================================================
   POPUP MODAL COMPACTO (SIN BARRA DE DESPLAZAMIENTO / SCROLLBAR)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  overflow: hidden; /* Oculta cualquier barra de scroll */
  border-radius: 20px;
  padding: 1.4rem 1.6rem 1.3rem; /* Espaciado compacto para ajustar todo el contenido */
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-15px);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

/* Botón X de Cierre */
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: #f1f5f9;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* ==========================================================================
   ESTILOS CABECERA MODAL (FLECHA 1 Y FLECHA 2)
   ========================================================================== */
.modal-banner {
  text-align: center;
  margin-bottom: 0.9rem;
  padding-top: 0.2rem;
}

/* Flecha 2: Título Profesional con Gradiente / Resaltado */
.modal-banner h2 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 0.2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: -0.3px;
}

/* Ícono decorativo del título */
.modal-banner h2 .title-icon {
  color: #0284c7;
  font-size: 1.3rem;
}

/* Texto destacado con degradado dinámico */
.modal-banner h2 .highlight-text {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-banner p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
  line-height: 1.25;
}

/* Formulario Compacto */
.cotizacion-form .form-group {
  margin-bottom: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cotizacion-form label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cotizacion-form label i {
  color: #0284c7;
  font-size: 0.75rem;
}

.cotizacion-form input,
.cotizacion-form select,
.cotizacion-form textarea {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #0f172a;
  background-color: #f8fafc;
  box-sizing: border-box;
  transition: border-color 0.2s, background-color 0.2s;
  font-family: inherit;
}

.cotizacion-form textarea {
  resize: none;
}

.cotizacion-form input:focus,
.cotizacion-form select:focus,
.cotizacion-form textarea:focus {
  outline: none;
  border-color: #0284c7;
  background-color: #ffffff;
}

.cotizacion-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Botón Verde */
.btn-send-quote {
  width: 100%;
  padding: 0.7rem;
  background-color: #22c55e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  transition: all 0.2s ease;
  margin-top: 0.3rem;
}

.btn-send-quote:hover {
  background-color: #16a34a;
  transform: translateY(-1px);
}

/* Muestra de Color en el Label */
.color-preview-square {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #94a3b8;
  margin-left: auto;
  transition: background-color 0.25 ease;
}

/* Tonos Específicos */
.color-negro { background-color: #000000; border-color: #000000; }
.color-blanco { background-color: #ffffff; border-color: #cbd5e1; }
.color-azul { background-color: #1e3a8a; border-color: #1e3a8a; }
.color-rojo { background-color: #dc2626; border-color: #dc2626; }
.color-plomo { background-color: #64748b; border-color: #64748b; }
.color-verde { background-color: #16a34a; border-color: #16a34a; }
.color-amarillo { background-color: #facc15; border-color: #eab308; }
.color-multi { 
  background: linear-gradient(135deg, #e11d48 0%, #2563eb 50%, #facc15 100%); 
  border-color: #cbd5e1; 
}

/* ==========================================================================
   SELECTOR DESPLEGABLE DE COLOR CON MUESTRAS (FLECHA 1 Y FLECHA 2)
   ========================================================================== */

/* Flecha 1: Contenedor para mostrar hasta 5 colores */
.selected-colors-container {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.color-preview-square {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Selector Personalizado */
.custom-color-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #0f172a;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 100;
  max-height: 160px;
  overflow-y: auto;
  margin-top: 2px;
}

.custom-select-options.show {
  display: block;
}

/* Flecha 2: Nombre a la izquierda y Muestra a la derecha */
.color-option {
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s;
}

.color-option:hover {
  background-color: #f1f5f9;
}

.color-option.active {
  background-color: #e0f2fe;
  font-weight: 800;
}

.color-box-right {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Indicador Check para los colores activos */
.color-option .check-icon {
  display: none;
  font-size: 0.75rem;
  color: #0284c7;
  margin-right: 0.3rem;
}

.color-option.active {
  background-color: #e0f2fe !important;
  font-weight: 800;
}

.color-option.active .check-icon {
  display: inline-block; /* Muestra el check cuando está seleccionado */
}

/* Cabecera del Label de Color */
.label-color-header {
  display: flex;
  flex-direction: column; /* Coloca las muestras justo debajo del texto Colores (Máx. 5) */
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.2rem;
}

/* Contenedor de cuadritos debajo del texto */
.selected-colors-container {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 14px; /* Mantiene la altura constante para que no salte la pantalla */
}

.color-preview-square {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Selector Trigger */
.custom-select-trigger {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #0f172a;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
}

.custom-select-trigger .select-arrow {
  font-size: 0.7rem;
  color: #64748b;
}

/* CSS TALLA DEL COTIZADOR*/
/* ==========================================================================
   SELECTOR DESPLEGABLE DE TALLAS MÚLTIPLES
   ========================================================================== */
.custom-talla-select-wrapper {
  position: relative;
  width: 100%;
}

.selected-tags-container {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 16px;
  flex-wrap: wrap;
}

/* Badge de Talla Seleccionada */
.talla-badge-tag {
  background-color: #0284c7;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  line-height: 1.2;
}

/* Opciones del menú de Talla */
.talla-option {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s;
}

.talla-option:hover {
  background-color: #f1f5f9;
}

.talla-option .check-icon {
  display: none;
  font-size: 0.75rem;
  color: #0284c7;
  margin-right: 0.3rem;
}

.talla-option.active {
  background-color: #e0f2fe !important;
  font-weight: 800;
}

.talla-option.active .check-icon {
  display: inline-block;
}

/* estilos de bloquedo de productos para talla y articulo*/
/* ==========================================================================
   ESTILOS PARA DESPLEGABLE DE TAZAS (11oz y 15oz)
   ========================================================================== */
.custom-articulo-select-wrapper {
  position: relative;
  width: 100%;
}

.articulo-option {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s;
}

.articulo-option:hover {
  background-color: #f1f5f9;
}

.articulo-option .check-icon {
  display: none;
  font-size: 0.75rem;
  color: #0284c7;
  margin-right: 0.3rem;
}

.articulo-option.active {
  background-color: #e0f2fe !important;
  font-weight: 800;
}

.articulo-option.active .check-icon {
  display: inline-block;
}

/* ==========================================================================
   BOTÓN DESTACADO Y LLAMATIVO "PERSONALIZA TÚ!"
   ========================================================================== */
.btn-header-personaliza {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35) !important;
  transition: all 0.25s ease !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.btn-header-personaliza:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.45) !important;
}