/* ==========================================================================
   ELECTRIK SOLUCIONES - ESTILOS PRINCIPALES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
/* --------------------------------------------------------------------------
   1. VARIABLES Y CONFIGURACIÓN GLOBAL
   -------------------------------------------------------------------------- */
:root {
  /* Colores del Logo */
  --primary-color: #0A436C;       /* Azul "electrik" */
  --primary-dark: #052033;        /* Azul Oscuro industrial */
  --accent-color: #007A78;        /* Verde Teal "soluciones" */
  --accent-bright: #00A896;       /* Verde brillante para hovers y botones */
  
  /* Tonos Neutros y Fondos */
  --bg-dark: #051A29;
  --bg-light: #F4F7F9;
  --text-main: #1C2D37;
  --text-muted: #526874;
  --white: #ffffff;
  
  /* Sombras Modernas Ajustadas */
  --shadow-sm: 0 4px 6px -1px rgba(10, 67, 108, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(10, 67, 108, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(5, 32, 51, 0.15);
  --shadow-glow: 0 0 20px rgba(0, 168, 150, 0.4);

  /* Esquinas Suaves */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transiciones */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'poppins', sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  background: linear-gradient(45deg, #02487c 0%, #017d70 100%);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   2. TIPOGRAFÍA Y ENCABEZADOS DE SECCIÓN
   -------------------------------------------------------------------------- */
.section-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 0 auto 50px auto;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   3. BOTONES MODERNOS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
background: linear-gradient(135deg, var(--accent-color), var(--accent-bright));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. NAVBAR
   -------------------------------------------------------------------------- */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar-header.scrolled {
  background-color: rgba(11, 37, 69, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 0.9; /* Interlineado compacto */
  align-items: flex-start;
}
.brand-line {
  font-family: 'source sans 3', sans-serif;
  font-weight: 800; /* Peso extra bold */
  letter-spacing: 0px;
  text-transform: lowercase; /* Forzar minúsculas exactas */
  
  /* Gradiente de texto de azul a verde teal */
  background: linear-gradient(90deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Tamaño de "electrik" */
.brand-electrik {
  font-size: 1.1rem;
}

/* Tamaño de "soluciones" */
.brand-soluciones {
  font-size: 1.1rem;
}

.logo-img {
  height: 42px;
  width: auto;
}

.brand-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-name span {
  color: var(--accent-color);
}


.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (VIDEO Y OVERLAY)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Gradiente puro de respaldo o fondo principal */
  background: linear-gradient(45deg, #02487c 0%, #017d70 33%, #02487c 66%, #017d70 100%);
  background-size: 400% 400%;
  position: relative;
  animation: animate 6s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes animate{
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Capa semitransparente con el gradiente idéntico a tu imagen */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 850px;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12); /* Fondo translúcido elegante */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Borde fino luminoso */
  border-radius: var(--radius-full);
  
  /* Color de texto corregido para alto contraste */
  color: #ffffff !important; 
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  
  /* Efecto de desenfoque de fondo y sombra suave */
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(90deg, #ffffff, var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* --------------------------------------------------------------------------
   6. TARJETAS DE SERVICIOS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
  background: var(--accent-color);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 20px;
}

.card-link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card:hover .card-link {
  gap: 10px;
}

/* --------------------------------------------------------------------------
   7. SECCIÓN PROYECTOS
   -------------------------------------------------------------------------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--white);
  position: relative;
}

.project-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 17, 30, 0.95) 0%, rgba(8, 17, 30, 0.3) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition-fast);
}

.tech-tag {
  background-color: var(--accent-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 8px;
}

.project-overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.project-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   8. CARRUSEL DE CLIENTES
   -------------------------------------------------------------------------- */
.clients-section {
  padding: 60px 0;
  overflow: hidden;
  background-color: var(--white);
}

.client-slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.client-track {
  display: inline-flex;
  gap: 50px;
  animation: scrollTrack 20s linear infinite;
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.client-logo:hover {
  opacity: 1;
  color: var(--primary-color);
}

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. NOSOTROS Y CONTADORES
   -------------------------------------------------------------------------- */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 30px;
}

.about-description {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 4px;
}

.value-item h4 {
  color: var(--primary-color);
  font-size: 1.05rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background-color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-color);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. FORMULARIO DE CONTACTO
   -------------------------------------------------------------------------- */
   #contacto {
    background-color: var(--white);
   }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.info-card h4 {
  color: var(--primary-color);
  font-size: 0.95rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.whatsapp-btn {
  background-color: #25d366;
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  margin-top: 10px;
}

.whatsapp-btn:hover {
  background-color: #1ebc57;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE (CELULARES Y TABLETS)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-title { font-size: 2.75rem; }
  .brand-hero-title { font-size: 2.75rem; }
  .about-wrapper, .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-xl);
  }
  .nav-menu.active { right: 0; }
  .nav-actions .btn { display: none; }
  .hero-title { font-size: 2.2rem; }
  .brand-hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .footer-content { flex-direction: column; gap: 15px; text-align: center; }
}
/* --------------------------------------------------------------------------
   BOTÓN FLOTANTE DE WHATSAPP CON PULSO Y TOOLTIP
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulseGlow 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #ffffff;
}

/* Tooltip informativo al pasar el mouse */
.float-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Animación de resplandor sutil */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Ajuste para pantallas pequeñas / móviles */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
  .float-tooltip {
    display: none; /* Se oculta el texto en móviles para no obstruir pantalla */
  }
}
/* --------------------------------------------------------------------------
   ESTILOS PARA REDES SOCIALES (FACEBOOK)
   -------------------------------------------------------------------------- */
.facebook-btn {
  background-color: #1877f2;
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
  margin-top: 10px;
  transition: var(--transition-fast);
}

.facebook-btn:hover {
  background-color: #166fe5;
  transform: translateY(-2px);
  color: var(--white);
}

/* Iconos de Redes Sociales en Footer */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: #1877f2; /* Color oficial de Facebook */
  transform: translateY(-3px);
  color: var(--white);
}
/* BANNER LOGO FINAL - CENTRADO OBLIGATORIO */
.brand-hero-section {
  position: relative !important;
  /* Fondo base con degradado suave */
  
  background: linear-gradient(45deg, #02487c 0%, #017d70 100%);
  background-image: url('../img/fondo.svg');
  background-size: cover;
  padding: 100px 20px !important;
  text-align: center !important;
  overflow: hidden !important;
  border-top: 2px solid #00a88f !important;
  border-bottom: 1px solid #cce8e5 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}


/* Contenedor principal del contenido */
.brand-hero-container {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

/* Envoltorio del Logo */
.brand-hero-logo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 auto 10px auto !important;
}

/* Imagen del logo centrada de raíz */
.brand-hero-logo img {
  max-width: 520px !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 50px;
  margin-bottom: 50px;
  cursor: pointer !important;
  
  /* Optimizaciones de fluidez */
  will-change: transform;
  transition: transform 0.3s ease, filter 0.3s ease !important;
}

/* ANIMACIÓN DE PULSO / LATIDO AL PASAR EL MOUSE */
.brand-hero-logo img:hover {
  /* Activa la animación de latido en bucle mientras el cursor esté encima */
  animation: logoPulse 1.2s ease-in-out infinite !important;
}

/* DEFINICIÓN DEL LATIDO (HEARTBEAT) */
@keyframes logoPulse {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.18); /* Primer golpe (grande) */
  }
  28% {
    transform: scale(1.08); /* Retorno parcial */
  }
  42% {
    transform: scale(1.22); /* Segundo golpe (un poco más grande) */
  }
  70% {
    transform: scale(1);    /* Pausa / reposo del latido */
  }
  100% {
    transform: scale(1);
  }
}

/* Textos y botones alineados al eje central */
.brand-hero-title {
  font-size: 3.5rem;
  font-weight: 800 !important;
  margin-bottom: 15px !important;
  text-align: center !important;
}

.brand-hero-text {
  color: #fff !important;
  font-size: 1.15rem !important;
  margin-bottom: 35px !important;
  text-align: center !important;
}

.brand-hero-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}

/* Ajuste al botón de WhatsApp */
.brand-hero-actions .btn-whatsapp {
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
}

.brand-hero-actions .btn-whatsapp:hover {
  background: #25d366 !important;
  color: #ffffff !important;
  border-color: #25d366 !important;
}