/* Reset y Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #dc2626;
  --color-primary-hover: #b91c1c;
  --color-primary-light: #fee2e2;
  --color-text-dark: #1f2937;
  --color-text-gray: #6b7280;
  --color-text-light: #9ca3af;
  --color-border: #e5e7eb;
  --color-background: #f9fafb;
  --color-white: #ffffff;
  --color-green: #22c55e;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-background);
  color: var(--color-text-dark);
  line-height: 1.5;
}

/* ==================== NAVBAR ==================== */
.navbar {
  background-color: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Agregando estilos para el contenedor del logo y nombre de empresa */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

/* Agregando estilos para la imagen del logo */
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Nuevo estilo para el nombre de la empresa en el navbar */
.navbar-company-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.btn-cotizacion {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.btn-cotizacion:hover {
  background-color: var(--color-primary-hover);
}



/* ==================== HERO SECTION ==================== */
.hero {
  background-color: var(--color-white);
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero-tag {
  display: inline-block;
    border: 2px solid rgba(230, 57, 70, 0.8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;

    margin-top: -1.5rem;   
    margin-bottom: 1rem;  

    backdrop-filter: blur(10px);
    background: rgba(230, 57, 70, 0.2);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== CONTENEDOR DE PLANES ==================== */
.planes-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.planes-card {
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

/* Cabecera del Contenedor */
.planes-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.wifi-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.planes-header-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.planes-header-text p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
}

/* ==================== GRID DE PRECIOS ==================== */
.precios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Tarjeta de Precio */
.precio-card {
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  /* Agregando transición para el efecto hover */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover con borde rojo para Plan Básico */
.precio-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.precio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.precio-info {
  display: flex;
  flex-direction: column;
}

.precio-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.velocidad {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.precio-valor {
  text-align: right;
}

.precio {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.precio-periodo {
  font-size: 0.85rem;
  color: var(--color-text-gray);
}

/* Divisor */
.divisor {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1rem 0;
}

/* Lista de Costos */
.costos-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.costos-lista li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-gray);
}

.check-icon {
  color: var(--color-green);
  flex-shrink: 0;
}

.costos-lista li span {
  flex-grow: 1;
}

.costos-lista li strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* Botón Contratar */
.btn-contratar {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-contratar:hover {
  background-color: var(--color-primary-hover);
}

/* ==================== PLAN PREMIUM ==================== */
/* Estilos para la sección Plan Premium */
.planes-card-premium {
  margin-top: 2rem;
  border-left: 4px solid var(--color-primary);
}

.planes-header-premium {
  position: relative;
}

.premium-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.badge-popular {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Grid Premium - 3 columnas */
.precios-grid-premium {
  grid-template-columns: repeat(3, 1fr);
}

/* Efecto hover con borde rojo para tarjetas Premium */
.planes-card-premium .precio-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.planes-card-premium .precio-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

/* Lista simple de costos */
.costos-lista-simple {
  min-height: auto;
}

/* Icono X */
.x-icon {
  color: var(--color-text-light);
  flex-shrink: 0;
}

/* Precio tachado */
.precio-tachado {
  /* Eliminando el subrayado del precio tachado en Premium */
  text-decoration: none;
  color: var(--color-text-light) !important;
  font-weight: 500 !important;
}

/* Agregando degradado rosa suave a las tarjetas Premium */
.precio-card-premium-gradient {
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.precio-card-premium-gradient:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
  transform: translateY(-4px);
}

/* Estilo para el icono de herramientas */
.tools-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  /* Navbar Mobile */
  .nav-links {
    display: none;
  }

  .btn-cotizacion {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Ocultar nombre de empresa en móvil */
  .navbar-company-name {
    display: none;
  }

  /* Ajustando tamaño del logo en móvil */
  .logo-img {
    height: 40px;
  }

  /* Hero Mobile */
  .hero {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Grid Mobile - 1 columna */
  .precios-grid {
    grid-template-columns: 1fr;
  }

  .planes-card {
    padding: 1.5rem;
  }

  /* Tarjetas Mobile */
  .precio-top {
    flex-direction: column;
    gap: 0.5rem;
  }

  .precio-valor {
    text-align: left;
  }

  .velocidad {
    font-size: 1.5rem;
  }

  .costos-lista li {
    flex-wrap: wrap;
  }

  .costos-lista li span {
    flex-basis: calc(100% - 30px);
  }

  .costos-lista li strong {
    margin-left: 30px;
  }
}

/* ==================== RESPONSIVE PREMIUM ==================== */
@media (max-width: 900px) {
  .precios-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .precios-grid-premium {
    grid-template-columns: 1fr;
  }

  .badge-popular {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .planes-header-premium {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 1rem;
  }

  .planes-container {
    padding: 1rem;
  }

  .planes-card {
    padding: 1rem;
    border-radius: 0.75rem;
  }

  .planes-header {
    flex-direction: column;
    text-align: center;
  }

  .wifi-icon {
    width: 48px;
    height: 48px;
  }
}

/* ==================== PLAN MAS CONNECT (VERDE) ==================== */
.planes-card-connect {
  margin-top: 2rem;
  border-left: 4px solid #16a34a;
}

.planes-header-connect {
  position: relative;
}

.connect-icon {
  background-color: #dcfce7;
  color: #16a34a;
}

.connect-subtitle {
  color: var(--color-primary) !important;
}

.badge-connect {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #16a34a;
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.velocidad-connect {
  color: #16a34a;
}

/* Degradado verde suave para tarjetas Connect */
.precio-card-connect {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.precio-card-connect:hover {
  border-color: #16a34a;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
  transform: translateY(-4px);
}

.gift-icon {
  color: #16a34a;
  flex-shrink: 0;
}

.instalacion-label {
  font-size: 0.85rem;
  color: var(--color-text-gray);
}

.instalacion-gratis {
  color: #16a34a !important;
  font-weight: 600 !important;
}

.btn-contratar-connect {
  background-color: #16a34a;
}

.btn-contratar-connect:hover {
  background-color: #15803d;
}

/* ==================== SECCIÓN CTA ==================== */
/* Agregado wrapper para separar CTA del footer */
.cta-wrapper {
  background-color: #f1f5f9;
  padding: 3rem 1.5rem;
}

.cta-section {
  background-color: #f51d2f;
  padding: 4rem 1.5rem;
  /* Removido margin-top y agregado border-radius */
  border-radius: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-asesor {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-asesor:hover {
  background-color: #f9fafb;
  transform: translateY(-2px);
}

/* ==================== RESPONSIVE CONNECT Y CTA ==================== */
@media (max-width: 768px) {
  .badge-connect {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .planes-header-connect {
    flex-wrap: wrap;
  }

  /* Ajustes responsivos para el wrapper del CTA */
  .cta-wrapper {
    padding: 2rem 1rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: #f51d2f;
        /* rojo más elegante */
        color: white;
        padding: 2.5rem 1.5rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

/* Logo del Footer */
.footer-logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

/* Agregando estilo para la imagen del logo en el footer */
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  font-style: italic;
}

.footer-logo-slogan {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Columnas del Footer */
.footer-columns {
  display: flex;
  gap: 4rem;
  flex: 1;
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* Barra inferior del Footer */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Redes Sociales */
.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background-color 0.2s ease;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.footer-powered {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== RESPONSIVE FOOTER ==================== */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-columns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .footer-column {
    min-width: 150px;
  }
}

@media (max-width: 600px) {
  .footer-columns {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-copyright {
    order: 2;
  }

  .footer-social {
    order: 1;
  }

  .footer-powered {
    order: 3;
  }
}


/* WhatsApp Flotante */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s ease;
}

.whatsapp-widget:hover .whatsapp-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    background: #25d366;
    color: white;
    padding: 1rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-popup-body {
    padding: 1.5rem;
    background: #f0f0f0;
}

.whatsapp-greeting {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.whatsapp-message {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.whatsapp-question {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.whatsapp-popup-footer {
    padding: 1rem;
    background: white;
    border-radius: 0 0 16px 16px;
}

.whatsapp-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.whatsapp-chat-btn:hover {
    background: #128c7e;
    transform: translateX(3px);
}

.whatsapp-chat-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .logo img {
        height: 40px;
    }

    .hero {
        padding: 4rem 1.5rem;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .plans-header h2 {
        font-size: 1.8rem;
    }

    .plans-header p {
        font-size: 1rem;
    }

    .plans-container {
        grid-template-columns: 1fr;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-popup {
        width: 280px;
        bottom: 70px;
    }

    .tech-card,
    .tech-card-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-image {
        max-height: 300px;
    }

    .tech-features-grid {
        grid-template-columns: 1fr;
    }

    .tech-title {
        font-size: 1.6rem;
    }

    .plan-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.6rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .plans-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-container {
        gap: 4rem;
    }

    .tech-title {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
}
/* Botón flotante de WhatsApp - Soporte Técnico */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
    color: #25d366;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.support-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.support-number {
    font-size: 1.1rem;
    font-weight: 700;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive para botón flotante */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.7rem 1.2rem;
        gap: 0.8rem;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }

    .support-label {
        font-size: 0.7rem;
    }

    .support-number {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 0.6rem 1rem;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        margin: 0;
    }

    .whatsapp-float {
        border-radius: 50%;
        padding: 0.8rem;
    }
}
/* Botón flotante de WhatsApp - Soporte Técnico */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
    color: #25d366;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.support-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.support-number {
    font-size: 1.1rem;
    font-weight: 700;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive para botón flotante */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 0.7rem 1.2rem;
        gap: 0.8rem;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }

    .support-label {
        font-size: 0.7rem;
    }

    .support-number {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 0.6rem 1rem;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        margin: 0;
    }

    .whatsapp-float {
        border-radius: 50%;
        padding: 0.8rem;
    }
}