/*
Theme Name: Kadence Child Kbrera
Theme URI: https://nuevo.tiendaderadiadores.com
Description: Tema hijo para la personalización de Radiadores Kbrera sin page builders
Author: Claude Code
Template: kadence
Version: 1.0.0
*/

:root {
  --color-primary: #0d2b5e;
  --color-accent: #3399ff; /* Azul brillante original del Hero viejo */
  --color-highlight: #ff6600;
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #ffffff;
  --color-border: #e5e7eb;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;

  --border-radius: 8px;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
}

/* ==========================================================================
   RESET DE MÁRGENES Y PADDINGS DE KADENCE (HOME)
   ========================================================================== */
.home.page-template-default #masthead,
.home.page-template-default #colophon,
.home.page-template-default .entry-header,
.home.page-template-default .entry-content-sidebar-wrapper,
.home.page-template-default .site-hero {
  display: none !important;
}

.home.page-template-default #wrapper,
.home.page-template-default #inner-wrap,
.home.page-template-default .site-container,
.home.page-template-default .content-container,
.home.page-template-default .content-area,
.home.page-template-default .content-single,
.home.page-template-default article,
.home.page-template-default .entry-content-wrap,
.home.page-template-default .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

.home-visual-container {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  box-sizing: border-box;
}

.home-visual-container *,
.home-custom-header *,
.home-custom-footer * {
  box-sizing: border-box;
}

.home-visual-container .container,
.home-custom-header .container,
.home-custom-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   CABECERA PERSONALIZADA (HEADER COMPACTO)
   ========================================================================== */
.home-custom-header {
  background-color: var(--color-primary);
  padding: 8px 0 10px 0; /* Header súper compacto */
  position: relative;
  z-index: 1000;
  width: 100%;
}

.header-top-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 8px;
}

/* Caja del Logo (Contenedor Blanco) */
.logo-box {
  background-color: #ffffff;
  padding: 5px 14px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 140px; /* Logo más compacto en móvil para mejor proporción */
}

@media (min-width: 769px) {
  .logo-box {
    max-width: 170px; /* Logo en escritorio con proporción idéntica al original */
    padding: 6px 18px;
  }
}

.logo-box a {
  display: flex;
  align-items: center;
}

.logo-box img {
  max-height: 30px !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  border: none !important;
}

@media (min-width: 769px) {
  .logo-box img {
    max-height: 38px !important;
  }
}

/* Gatillo de Menú Móvil */
.mobile-menu-trigger {
  position: absolute;
  right: var(--spacing-sm);
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light) !important;
  padding: 6px;
  outline: none;
}

.trigger-text {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.trigger-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
}

.trigger-icon .bar {
  display: block;
  width: 16px;
  height: 2px;
  background-color: var(--color-text-light);
  transition: all 0.3s ease;
}

/* Hamburguesa interactiva */
.mobile-menu-trigger.active .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.mobile-menu-trigger.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-trigger.active .bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Fila de Navegación */
.header-nav-row {
  margin-bottom: 8px;
  width: 100%;
}

.custom-nav-menu {
  display: none;
  width: 100%;
}

.custom-nav-menu.active {
  display: block;
}

.custom-nav-menu ul,
.custom-nav-menu ul li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.custom-nav-menu ul {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-nav-menu ul li a {
  display: block;
  padding: 10px var(--spacing-sm);
  color: var(--color-text-light) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-nav-menu ul li:last-child a {
  border-bottom: none;
}

.custom-nav-menu ul li a:hover {
  background-color: rgba(30, 144, 255, 0.2);
  color: var(--color-accent) !important;
}

@media (min-width: 769px) {
  .mobile-menu-trigger {
    display: none;
  }
  
  .custom-nav-menu {
    display: block !important;
  }
  
  .custom-nav-menu ul {
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-md);
    background: transparent;
    margin-top: 0 !important;
    border: none;
  }
  
  .custom-nav-menu ul li a {
    padding: 6px 14px;
    border-bottom: none;
    border-radius: 4px;
  }
  
  .custom-nav-menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/* Fila de Buscador (Centrado y elegante) */
.header-search-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.custom-search-form {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 0 16px;
  width: 100%;
  max-width: 460px; /* Más compacto y centrado */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
  color: #777;
  flex-shrink: 0;
}

.search-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.custom-search-field {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  padding: 8px 0 !important;
  width: 100% !important;
  font-size: 0.85rem !important;
  color: var(--color-text) !important;
  box-shadow: none !important;
}

.custom-search-field::placeholder {
  color: #777777;
}

@media (min-width: 769px) {
  .custom-search-field {
    font-size: 0.9rem !important;
  }
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.home-hero {
  position: relative;
  background-image: url('/wp-content/uploads/2026/06/hero-fondo-movil.png');
  background-size: contain; /* Carga la imagen móvil completa sin recortarla */
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 1478 / 1064; /* Relación de aspecto exacta de la imagen móvil para mostrarla completa */
  padding: 24px 0; /* Padding adaptado para móvil */
  color: var(--color-text-light);
  min-height: auto; /* Desactiva altura fija para respetar la proporción */
  display: flex;
  align-items: center;
}

@media (min-width: 769px) {
  .home-hero {
    background-image: url('/wp-content/uploads/2026/06/hero-fondo-desktop.webp');
    background-size: cover; /* Vuelve a cover en escritorio */
    background-position: center;
    aspect-ratio: auto; /* Anula relación de aspecto en escritorio */
    padding: 60px 0 70px 0; /* Padding original de escritorio para centrar contenido */
    min-height: 500px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent; /* Sin overlay en celular */
  z-index: 1;
}

@media (min-width: 769px) {
  .hero-overlay {
    background-color: rgba(13, 43, 94, 0.55); /* Capa azul marino translúcida en escritorio */
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Separación reducida en celular para encajar en el alto proporcional */
  width: 100%;
}

@media (min-width: 769px) {
  .hero-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg); /* Separación original en escritorio */
  }
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 50% !important;
  max-width: 50% !important; /* Ancho ideal del 50% en celular para no chocar con el radiador */
}

@media (min-width: 769px) {
  .hero-left-col {
    width: 100% !important;
    max-width: min(55%, 640px) !important; /* Ancho máximo original de la columna izquierda */
  }
}

.hero-title {
  color: #ffffff !important;
  font-size: 1.5rem !important; /* Aumentado 20% a petición del usuario */
  line-height: 1.15 !important;
  font-weight: 700 !important;
  margin: 0 0 8px 0 !important; /* Separación compacta */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important; /* Sombra sutil para mejorar el contraste sin overlay */
}

@media (min-width: 769px) {
  .hero-title {
    font-size: clamp(28px, 4.5vw, 86px) !important; /* Escala de tamaño H1 idéntica al Hero original */
    text-shadow: none !important;
  }
}

.hero-title .highlight {
  color: #f0772a !important; /* Color naranja original (#f0772a) */
}

.hero-subtitle {
  color: #dddddd !important;
  font-size: 0.62rem !important; /* Reducido a petición del usuario */
  margin: 0 0 8px 0 !important;
  line-height: 1.2 !important; /* Interlineado más apretado */
  max-width: 85% !important; /* Sangría de ancho más estrecha para evitar el radiador */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

@media (min-width: 769px) {
  .hero-subtitle {
    font-size: clamp(13px, 1.6vw, 24px) !important; /* Escala del subtítulo idéntica al Hero original */
    line-height: 1.6 !important;
    text-shadow: none !important;
  }
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Botón de Cotizar con Estilo Original */
.hero-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #3399ff !important; /* Azul original del Hero viejo */
  color: #ffffff !important;
  padding: 8px 16px !important; /* Relleno responsivo más compacto en móvil */
  font-size: 0.78rem !important; /* Tamaño de letra responsivo más compacto en móvil */
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 4px !important; /* Bordes compactos */
  box-shadow: 0 4px 12px rgba(51, 153, 255, 0.3) !important; /* Sombra original */
  transition: all 0.25s ease !important;
}

@media (min-width: 769px) {
  .hero-btn {
    padding: 14px 28px !important; /* Relleno original en escritorio */
    font-size: clamp(14px, 1.1vw, 19px) !important;
    border-radius: 6px !important;
  }
}

.hero-btn:hover {
  background-color: #1a8cff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(51, 153, 255, 0.45) !important;
}

.hero-right-col {
  display: none; /* Oculto en móvil */
}

@media (min-width: 769px) {
  .hero-right-col {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

/* Panel de Beneficios Original (Compacto y Oscuro) */
.original-benefits-panel {
  background: rgba(25, 27, 30, 0.85) !important; /* Fondo original */
  border-radius: 12px !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  width: clamp(240px, 22%, 320px) !important; /* Ancho original */
  flex-shrink: 0 !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.benefit-item {
  padding: 22px !important; /* Padding original */
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important; /* Separación original */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.benefit-item:last-child {
  border-bottom: none !important;
}

.benefit-icon {
  flex-shrink: 0 !important;
  padding-top: 2px !important;
}

.benefit-icon svg {
  width: 28px !important; /* Tamaño de iconos original */
  height: 28px !important;
}

.benefit-text strong {
  color: #ffffff !important;
  font-size: clamp(14px, 1.1vw, 16px) !important;
  font-weight: 600 !important;
  display: block !important;
}

.benefit-text p {
  color: #aaaaaa !important;
  font-size: clamp(12px, 0.9vw, 14px) !important;
  margin: 6px 0 0 0 !important;
  line-height: 1.4 !important;
}

/* ==========================================================================
   2. CATEGORIES SECTION
   ========================================================================== */
.home-categories {
  padding: var(--spacing-lg) 0;
}

@media (min-width: 769px) {
  .home-categories {
    padding: var(--spacing-xl) 0;
  }
}

.categories-header {
  margin-bottom: var(--spacing-lg);
}

.categories-tag {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: var(--spacing-xs);
}

.categories-title {
  color: var(--color-primary);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 var(--spacing-sm) 0;
}

@media (min-width: 769px) {
  .categories-title {
    font-size: 2.4rem;
  }
}

.categories-subtitle {
  color: #555555;
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto var(--spacing-sm) auto;
  line-height: 1.5;
}

.categories-decorator {
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas en móvil */
  gap: 8px;
}

@media (min-width: 769px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff !important;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  text-decoration: none !important;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(30, 144, 255, 0.3);
}

.category-image {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: #ffffff !important; /* Cambiado de gris claro a blanco puro */
}

@media (min-width: 769px) {
  .category-image {
    padding: var(--spacing-md);
  }
}

.category-image img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (min-width: 480px) {
  .category-image img {
    max-height: 80px;
  }
}

@media (min-width: 769px) {
  .category-image img {
    max-height: 120px;
  }
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-footer {
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  background-color: #ffffff !important; /* Forzado a blanco puro */
}

@media (min-width: 769px) {
  .category-footer {
    padding: 14px;
  }
}

.category-name {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.65rem; /* Ajustado para 3 columnas en móvil */
  line-height: 1.2;
}

@media (min-width: 480px) {
  .category-name {
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) {
  .category-name {
    font-size: 1.05rem;
  }
}

.category-arrow {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  line-height: 1;
}

@media (min-width: 769px) {
  .category-arrow {
    font-size: 1.1rem;
  }
}

.category-card:hover .category-arrow {
  transform: translateX(4px);
  color: var(--color-highlight); /* Flecha cambia a naranja en hover */
}

/* ==========================================================================
   3. DEYAC BANNER SECTION
   ========================================================================== */
.home-deyac-banner {
  position: relative;
  background-image: url('/wp-content/uploads/2026/06/banner-panchibb-full.jpg');
  background-size: cover;
  background-position: center;
  padding: var(--spacing-lg) 0;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

@media (min-width: 769px) {
  .home-deyac-banner {
    padding: var(--spacing-xl) 0;
    min-height: 240px;
  }
}

.deyac-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.deyac-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.deyac-title {
  color: var(--color-text-light) !important;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 var(--spacing-xs) 0;
  padding: 0 var(--spacing-xs);
}

@media (min-width: 769px) {
  .deyac-title {
    font-size: 2.1rem;
  }
}

.deyac-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 769px) {
  .deyac-subtitle {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   4. GOOGLE REVIEWS SECTION (RESERVADA)
   ========================================================================== */
.home-reviews {
  padding: var(--spacing-lg) 0;
}

@media (min-width: 769px) {
  .home-reviews {
    padding: var(--spacing-xl) 0;
  }
}

.reviews-title {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 var(--spacing-xs) 0;
}

@media (min-width: 769px) {
  .reviews-title {
    font-size: 2.1rem;
  }
}

.reviews-subtitle {
  color: #555555;
  font-size: 0.9rem;
  margin: 0 0 var(--spacing-md) 0;
}

@media (min-width: 769px) {
  .reviews-subtitle {
    font-size: 1.15rem;
  }
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  padding: 10px var(--spacing-md);
  border-radius: 50px;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-card);
}

.google-logo {
  display: flex;
  align-items: center;
}

.google-badge-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.google-badge-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  border-left: 1px solid var(--color-border);
  padding-left: var(--spacing-sm);
}

.rating-number {
  font-weight: 800;
  color: var(--color-primary);
}

.stars-text {
  font-size: 0.8rem;
  color: #666;
}

.stars-row {
  color: #ffcc00;
  font-size: 1rem;
  display: flex;
}

.reviews-placeholder-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.placeholder-box {
  background-color: #fafafa;
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg) var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.placeholder-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(13, 43, 94, 0.1);
  border-radius: 50%;
  border-top-color: var(--color-primary);
  animation: spin 1.5s linear infinite;
}

.placeholder-box p {
  margin: var(--spacing-xs) 0 0 0;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.placeholder-subtext {
  font-size: 0.75rem;
  color: #888888;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   PERSONALIZADO FOOTER A MEDIDA (FOOTER)
   ========================================================================== */
.home-custom-footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--spacing-lg) 0;
  border-top: 4px solid var(--color-accent);
}

@media (min-width: 769px) {
  .home-custom-footer {
    padding: var(--spacing-xl) 0;
  }
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 769px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-col-title {
  color: var(--color-text-light) !important;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 0 var(--spacing-xs) 0;
  text-transform: uppercase;
}

.footer-decorator {
  width: 45px;
  height: 3px;
  background-color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.footer-address {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 var(--spacing-md) 0;
}

.footer-location-btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-text-light) !important;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.footer-location-btn:hover {
  background-color: #0073e6;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.footer-map-link {
  color: var(--color-accent) !important;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-map-link:hover {
  color: var(--color-text-light) !important;
}

.footer-schedule-label {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 0.9rem;
  margin: 0 0 2px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-schedule-time {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 600;
}

.footer-schedule-time:last-of-type {
  margin-bottom: var(--spacing-md);
}

.footer-special-text {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.footer-contact-info {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.5;
}

.footer-contact-info a {
  color: var(--color-accent) !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--color-text-light) !important;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: var(--spacing-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--spacing-sm);
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP (HTML/CSS NATIVO)
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 2px 6px 15px rgba(0,0,0,0.4);
}

.whatsapp-float-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
