/* ============================================================ */
/* TAILWIND UTILITY CLASSES (reemplazo local del CDN)           */
/* ============================================================ */

/* --- PREFLIGHT (Tailwind base reset) --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -moz-tab-size: 4; tab-size: 4; }

body { line-height: 1.5; -webkit-font-smoothing: antialiased; }

img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
p, h1, h2, h3, h4, h5, h6, blockquote { overflow-wrap: break-word; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

ol, ul { list-style: none; }
table { border-collapse: collapse; }

/* --- DISPLAY --- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

/* --- POSITION --- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* --- Z-INDEX --- */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[1\] { z-index: 1; }
.z-\[2\] { z-index: 2; }
.z-\[3\] { z-index: 3; }

/* --- FLEX --- */
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }

/* --- GAP --- */
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-20 { gap: 5rem; }

/* --- GRID --- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* --- WIDTH & HEIGHT --- */
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-xl { max-width: 36rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[900px\] { max-width: 900px; }
.min-h-\[180px\] { min-height: 180px; }
.min-h-\[350px\] { min-height: 350px; }
@media (min-width: 768px) {
  .md\:min-h-\[150px\] { min-height: 150px; }
}
.aspect-video { aspect-ratio: 16 / 9; }

/* --- MARGIN --- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }

/* --- PADDING --- */
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.pb-1 { padding-bottom: 0.25rem; }
.px-\[4vw\] { padding-left: 4vw; padding-right: 4vw; }
.px-\[8vw\] { padding-left: 8vw; padding-right: 8vw; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }
.py-56 { padding-top: 14rem; padding-bottom: 14rem; }
@media (min-width: 768px) {
  .md\:p-20 { padding: 5rem; }
}

/* --- TYPOGRAPHY --- */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
@media (min-width: 768px) {
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.break-words { overflow-wrap: break-word; }
.text-center { text-align: center; }
@media (min-width: 768px) {
  .md\:text-right { text-align: right; }
}

/* --- COLORS --- */
.text-white { color: #ffffff; }
.text-blue-400 { color: #60a5fa; }
.text-blue-300 { color: #93c5fd; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.bg-black { background-color: #000000; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-\[\#0f141b\] { background-color: #0f141b; }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }

/* --- BORDERS --- */
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-blue-400 { border-color: #60a5fa; }

/* --- ROUNDED --- */
.rounded-lg { border-radius: 0.5rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* --- SHADOWS --- */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06)); }

/* --- OVERFLOW & VISIBILITY --- */
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.opacity-0 { opacity: 0; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }

/* --- TRANSFORMS --- */
.transform { transform: translateX(0); }
.translate-y-4 { transform: translateY(1rem); }
.scale-110 { transform: scale(1.1); }

/* --- TRANSITIONS --- */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

/* --- GRADIENTS --- */
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops, transparent));
}
.from-black\/90 {
  --tw-gradient-from: rgba(0, 0, 0, 0.9);
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-black\/40 {
  --tw-gradient-to: rgba(0, 0, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.4), var(--tw-gradient-to);
}
.to-transparent {
  --tw-gradient-to: transparent;
}

/* --- GROUP HOVER --- */
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

/* --- HOVER STATES --- */
.hover\:text-blue-400:hover { color: #60a5fa; }
.hover\:text-blue-300:hover { color: #93c5fd; }


/* ============================================================ */
/* ESTILOS ORIGINALES (contenido exacto del <style> interno)    */
/* ============================================================ */

/* FUENTES Y BASE */
html {
  background-color: #06090d !important;
}

body {
  margin: 0;
  background-color: #06090d !important;
  color: #e5e7eb;
  overflow-x: hidden;
}

body,
p,
span,
a,
div,
button {
  font-family: 'Inter', sans-serif !important;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(59, 130, 246, .12), transparent 40%), radial-gradient(circle at 85% 70%, rgba(59, 130, 246, .08), transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* NAVBAR ESCRITORIO */
nav {
  width: 100%;
  left: 0;
  right: 0;
  position: fixed;
  top: 0;
  background: rgba(6, 9, 13, .75);
  backdrop-filter: blur(16px);
  box-sizing: border-box;
  z-index: 50;
}

.nav-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

nav img,
nav video {
  width: 180px !important;
  height: auto !important;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.nav-links a {
  transition: .2s;
}

.nav-links a:hover {
  color: white;
}

/* DROPDOWN DE IDIOMA */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  width: 28px;
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.dropdown-btn img {
  width: 100% !important;
  height: auto !important;
  border-radius: 2px;
}

.dropdown-content {
  display: block;
  position: absolute;
  right: 0;
  background: #0f141b;
  min-width: 140px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-content div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 14px;
  color: white;
}

.dropdown-content img {
  width: 24px !important;
  height: auto !important;
  border-radius: 4px;
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 110px;
  background: linear-gradient(rgba(5, 8, 12, .75), rgba(5, 8, 12, .92)), url("https://easyaligntech.com/images/fondo-principal.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* PANELES GENERALES */
.panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  transition: .4s;
}

.panel:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* AJUSTES RESPONSIVOS MULTILINGÜES */
section.py-32 .panel p {
  font-size: 1.25rem !important;
  line-height: 1.5 !important;
}

body[data-idioma="fr"] .hero h1,
body[data-idioma="ru"] .hero h1 {
  font-size: 2.5rem !important;
  line-height: 1.1 !important;
}

body[data-idioma="fr"] .hero p,
body[data-idioma="ru"] .hero p {
  font-size: 1rem !important;
}

body[data-idioma="fr"] section.py-32 .panel p,
body[data-idioma="ru"] section.py-32 .panel p {
  font-size: 1.15rem !important;
  line-height: 1.4 !important;
}

@media (min-width: 768px) {

  body[data-idioma="fr"] .hero h1,
  body[data-idioma="ru"] .hero h1 {
    font-size: 3.72rem !important;
  }
}

/* DIVISIONES */
#what-we-do .panel {
  background-color: #0f141b !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  max-height: 100%;
  outline: 1px solid transparent;
}

#what-we-do .panel h4 {
  height: 4.5rem;
  display: flex;
  align-items: flex-end;
  line-height: 1.2;
  margin-bottom: 0;
  overflow: hidden;
}

body[data-idioma="fr"] #what-we-do .panel h4 {
  font-size: 1.5rem !important;
}

body[data-idioma="en"] #what-we-do .panel h4,
body[data-idioma="ru"] #what-we-do .panel h4 {
  font-size: 1.25rem !important;
}

/* ======================================================= */
/* CONFIGURACIÓN MÓVIL (max-width: 768px)                  */
/* ======================================================= */
@media (max-width: 768px) {
  .nav-inner {
    height: 60px !important;
    padding: 0 4px !important;
  }

  nav img,
  nav video {
    width: 120px !important;
  }

  .nav-links {
    gap: 12px !important;
    font-size: 11px !important;
  }

  .hero .px-\[8vw\] {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }

  .hero h1 {
    font-size: 20px !important;
    line-height: 1.3 !important;
    min-height: auto !important;
    margin-bottom: 15px !important;
    text-wrap: balance !important;
  }

  .hero p {
    font-size: 14px !important;
    margin-bottom: 15px !important;
  }

  section.py-56 .panel {
    padding: 30px 16px !important;
  }

  section.py-56 blockquote {
    font-size: 22px !important;
    line-height: 1.45 !important;
    text-wrap: balance !important;
  }

  section.py-32 .panel {
    padding: 24px 18px !important;
  }

  section.py-32 .panel p {
    font-size: 15px !important;
    line-height: 1.4 !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
  }

  .hablemos h1,
  .section-contact h1,
  .contact-title,
  #contactTrigger {
    font-size: 32px !important;
  }

  .hablemos p,
  .section-contact p {
    font-size: 14px !important;
  }
}

/* ========================================= */
/* IMÁGENES ESPECÍFICAS POR ORIENTACIÓN      */
/* ========================================= */
@media (max-width: 768px) and (orientation: portrait) {
  .hero {
    background: linear-gradient(rgba(5, 8, 12, .75), rgba(5, 8, 12, .92)), url("https://easyaligntech.com/images/fondo-cel-vertical-1.png") !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  .hero h1 {
    font-size: 35px !important;
  }

  .hero p {
    font-size: 15px !important;
  }
}

@media (max-width: 950px) and (max-height: 600px) and (orientation: landscape) {
  .hero {
    background: linear-gradient(rgba(5, 8, 12, .75), rgba(5, 8, 12, .92)), url("https://easyaligntech.com/images/fondo-horizontal-2-scaled.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    min-height: 100vh !important;
    height: auto !important;
    padding-top: 60px !important;
  }

  .hero h1 {
    font-size: 60px !important;
  }

  .hero p {
    font-size: 16px !important;
  }

  .nav-inner {
    height: 50px !important;
  }

  nav img,
  nav video {
    width: 120px !important;
  }
}

/* ========================================= */
/* ACORDEÓN INDUSTRIA TRADICIONAL            */
/* ========================================= */
.industry-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .industry-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 950px) and (max-height: 600px) and (orientation: landscape) {
  .industry-container {
    grid-template-columns: 1fr !important;
  }
}

.industry-panel {
  cursor: pointer !important;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 280px;
}

.industry-panel:hover {
  transform: none;
}

.industry-panel p {
  transition: transform 0.4s ease, color 0.4s ease !important;
}

/* HOVER PARA PC */
@media (min-width: 1024px) {
  .industry-container {
    display: flex;
    flex-direction: row;
  }

  .industry-panel {
    flex: 1;
  }

  .industry-panel:hover {
    flex: 2.5;
    border-color: #3b82f6;
  }

  .industry-panel:hover p {
    transform: scale(1.05);
    transform-origin: left center;
    color: #ffffff;
  }

  .industry-panel:hover .panel-bg {
    opacity: 1 !important;
  }
}

/* CLICK PARA CELULAR */
@media (max-width: 1023px) {
  .industry-panel.mobile-active {
    border-color: #3b82f6 !important;
  }

  .industry-panel.mobile-active .panel-bg {
    opacity: 1 !important;
  }

  .industry-panel.mobile-active p {
    transform: scale(1.08) !important;
    color: #ffffff !important;
  }
}

.panel-bg {
  background-image: linear-gradient(rgba(5, 8, 12, .80), rgba(5, 8, 12, .95)), var(--bg-desk);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

@media (max-width: 768px) and (orientation: portrait) {
  .panel-bg {
    background-image: linear-gradient(rgba(5, 8, 12, .80), rgba(5, 8, 12, .95)), var(--bg-port);
  }
}

@media (max-width: 950px) and (max-height: 600px) and (orientation: landscape) {
  .panel-bg {
    background-image: linear-gradient(rgba(5, 8, 12, .80), rgba(5, 8, 12, .95)), var(--bg-land);
  }
}

/* ========================================= */
/* FIX: BOTÓN CORREO (HABLEMOS) DEFINITIVO   */
/* ========================================= */
.contact-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#contactFloatingBtn {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translate(-50%, 10px) scale(0.95);
  width: max-content;
  max-width: 90vw;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}

#contactFloatingBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

/* Ajustes específicos para celular (vertical) */
@media (max-width: 768px) {
  #contactTrigger {
    font-size: 46px !important;
    line-height: 1.2 !important;
  }

  #contactFloatingBtn {
    font-size: 12px !important;
    padding: 10px 16px !important;
  }
}

/* Ajustes específicos para PC (escritorio) */
@media (min-width: 768px) {
  .contact-wrapper {
    align-items: flex-end;
    width: auto;
    display: inline-flex;
  }

  #contactFloatingBtn {
    left: auto;
    right: 0;
    bottom: 120%;
    transform: translateY(10px) scale(0.95);
  }

  #contactFloatingBtn.show {
    transform: translateY(0) scale(1);
  }
}

/* ========================================= */
/* EFECTO PANEL DE INNOVACIÓN                */
/* ========================================= */
.philosophy-panel {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Comportamiento en Escritorio (Hover) */
@media (min-width: 1024px) {
  .philosophy-panel:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .philosophy-panel:hover .panel-bg {
    opacity: 1 !important;
  }

  .philosophy-panel:hover blockquote {
    transform: scale(1.05);
    color: #ffffff;
  }
}

/* ========================================= */
/* ANIMACIONES SUAVES PARA PANEL INNOVACIÓN  */
/* ========================================= */
.philosophy-panel {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.philosophy-panel .panel-bg {
  transition: opacity 0.6s ease !important;
}

.philosophy-panel blockquote {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease !important;
}

/* Control exacto de la imagen de fondo */
.philosophy-panel .panel-bg {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* ========================================= */
/* CONTROL DE OPACIDAD (SOMBRA) DEL PANEL    */
/* ========================================= */
.philosophy-panel .panel-bg {
  background-image: linear-gradient(rgba(5, 8, 12, 0.6), rgba(5, 8, 12, 0.8)), var(--bg-desk) !important;
}

/* Ajuste para celular vertical */
@media (max-width: 768px) and (orientation: portrait) {
  .philosophy-panel .panel-bg {
    background-image: linear-gradient(rgba(5, 8, 12, 0.4), rgba(5, 8, 12, 0.6)), var(--bg-port) !important;
  }
}

/* Ajuste para celular horizontal */
@media (max-width: 950px) and (max-height: 600px) and (orientation: landscape) {
  .philosophy-panel .panel-bg {
    background-image: linear-gradient(rgba(5, 8, 12, 0.4), rgba(5, 8, 12, 0.6)), var(--bg-land) !important;
  }
}

/* Comportamiento en Celular (Clic) */
@media (max-width: 1023px) {
  .philosophy-panel.mobile-active {
    transform: scale(1.02);
    border-color: #3b82f6 !important;
  }

  .philosophy-panel.mobile-active .panel-bg {
    opacity: 1 !important;
  }

  .philosophy-panel.mobile-active blockquote {
    transform: scale(1.05);
    color: #ffffff;
  }
}

/* ========================================= */
/* EFECTOS TEXTO FINAL Y HABLEMOS (PC)       */
/* ========================================= */

/* Efecto de brillo tecnológico para el texto de la izquierda */
.contact-slogan {
  background: linear-gradient(90deg, #9ca3af, #ffffff, #3b82f6, #9ca3af);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 4s linear infinite;
  line-height: 1.2;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Aumento gigante de la palabra "Hablemos" solo en PC */
@media (min-width: 768px) {
  #contactTrigger {
    font-size: 85px !important;
  }
}

/* ========================================= */
/* EFECTO RESPLANDOR PARA BOTÓN "HABLEMOS"   */
/* ========================================= */

/* Clase que aplicaremos en celular con el clic */
.hablemos-glow {
  background: linear-gradient(90deg, #60a5fa, #ffffff, #60a5fa, #ffffff) !important;
  background-size: 200% auto !important;
  color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  animation: shine 3s linear infinite !important;
}

/* En PC, el efecto se activa solo al pasar el cursor (hover) */
@media (min-width: 768px) {
  #contactTrigger:hover {
    background: linear-gradient(90deg, #60a5fa, #ffffff, #60a5fa, #ffffff) !important;
    background-size: 200% auto !important;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    animation: shine 3s linear infinite !important;
  }
}



