/* ==========================================================================
   JL Durlock & Steel Construcciones — Landing Page
   ========================================================================== */

:root {
  --navy: #0B2140;
  --navy-light: #12305e;
  --gold: #F2C230;
  --gold-dark: #d9a919;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-dark: #2E2E2E;
  --gray-mid: #6b7280;
  --border: #e5e7eb;

  --bg-black: #111113;
  --bg-surface: #18181b;
  --bg-surface-2: #212125;
  --bg-footer: #0b0b0d;
  --text-light: #EDEDEE;
  --text-muted: #9c9ca4;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-strong: rgba(255, 255, 255, 0.16);

  --font-title: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 33, 64, 0.12);
  --shadow-sm: 0 4px 14px rgba(11, 33, 64, 0.08);
  --glow-gold: 0 8px 24px rgba(242, 194, 48, 0.25);
  --glow-gold-lg: 0 16px 40px rgba(242, 194, 48, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--bg-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(242, 194, 48, 0.35); color: var(--navy); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text-light);
}

h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 16px; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(242, 194, 48, 0.14);
  border: 1px solid rgba(242, 194, 48, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
  flex-shrink: 0;
}

.section-tag-light {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.section-tag-light::before { background: var(--navy); }

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--glow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-lg);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.icon-wa { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 19, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(17, 17, 19, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.logo-link { display: flex; align-items: center; height: 100%; flex-shrink: 0; transition: opacity 0.2s ease; }
.logo-link:hover { opacity: 0.8; }

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: none;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover { color: var(--gold-dark); background: rgba(242, 194, 48, 0.1); }

.main-nav a.active { color: var(--gold-dark); }

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 860px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}

.main-nav.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(17, 17, 19, 0.98);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  gap: 18px;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-black);
  color: var(--white);
  padding: 76px 0 88px;
}

.hero::before {
  content: '';
  position: absolute;
  left: -12%;
  top: 10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-stripes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.stripe {
  position: absolute;
  display: block;
}

.stripe-navy {
  right: -10%;
  top: -20%;
  width: 60%;
  height: 160%;
  background: var(--navy);
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0% 100%);
}

.stripe-gold {
  right: -18%;
  top: -20%;
  width: 26%;
  height: 160%;
  background: var(--gold);
  opacity: 0.9;
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-heading {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 18px;
}

.eyebrow {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  margin-bottom: 0;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions { margin-bottom: 36px; }

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-highlights li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ==========================================================================
   Problema
   ========================================================================== */

.problema {
  position: relative;
  background: var(--bg-surface);
  padding: 56px 0;
  border-bottom: 1px solid var(--border-dark);
}

.problema::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
}

.problema-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--text-light);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ==========================================================================
   Servicios
   ========================================================================== */

.servicios { position: relative; overflow: hidden; padding: 88px 0; }

.servicios::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.12), transparent 70%);
  pointer-events: none;
}

.servicios .container { position: relative; z-index: 1; }

.servicios h2 {
  border-left: 4px solid var(--gold);
  padding-left: 22px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .servicios-grid { grid-template-columns: repeat(3, 1fr); }
}

.servicio-card {
  position: relative;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 40px 28px 28px;
  margin-top: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.servicio-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 194, 48, 0.4);
  transform: translateY(-6px);
  border-color: rgba(242, 194, 48, 0.4);
}

.servicio-icon {
  position: absolute;
  top: -22px;
  left: 24px;
  width: 52px;
  height: 52px;
  color: var(--gold);
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  box-shadow: 0 6px 16px rgba(242, 194, 48, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover .servicio-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 24px rgba(242, 194, 48, 0.5);
}

.servicio-icon svg { width: 100%; height: 100%; }

.servicio-card h3 { margin-bottom: 8px; }
.servicio-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   Nosotros
   ========================================================================== */

.nosotros {
  position: relative;
  background: var(--bg-black);
  color: var(--white);
  padding: 88px 0;
  overflow: hidden;
}

.nosotros-stripe {
  position: absolute;
  left: -15%;
  bottom: -40%;
  width: 50%;
  height: 140%;
  background: var(--navy);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0% 100%);
  opacity: 0.6;
  pointer-events: none;
}

.nosotros::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.1), transparent 70%);
  pointer-events: none;
}

.nosotros .container { position: relative; z-index: 1; }

.light-title {
  color: var(--white);
  border-left: 4px solid var(--gold);
  padding-left: 22px;
}

.nosotros-text {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 44px;
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 860px) {
  .mvv-grid { grid-template-columns: repeat(3, 1fr); }
}

.mvv-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 194, 48, 0.5);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25), 0 0 20px rgba(242, 194, 48, 0.12);
}

.mvv-card h3 { color: var(--gold); margin-bottom: 12px; }
.mvv-card p { color: rgba(255, 255, 255, 0.8); margin: 0; font-size: 0.95rem; }

.mvv-card-values ul { display: flex; flex-direction: column; gap: 10px; }

.mvv-card-values li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.mvv-card-values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ==========================================================================
   Capacidad operativa
   ========================================================================== */

.capacidad {
  padding: 64px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-dark);
}

.capacidad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 760px) {
  .capacidad-grid { grid-template-columns: repeat(3, 1fr); }
}

.capacidad-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--gold);
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 6px 16px rgba(242, 194, 48, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capacidad-icon svg { width: 100%; height: 100%; }

.capacidad-item:hover .capacidad-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 22px rgba(242, 194, 48, 0.4);
}

.capacidad-item h3 { margin-bottom: 6px; }
.capacidad-item p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   Trabajos realizados
   ========================================================================== */

.trabajos { padding: 88px 0; }

.trabajos-carousel-wrap {
  position: relative;
}

.trabajos-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trabajos-carousel::-webkit-scrollbar { display: none; }

.trabajos-fade {
  position: absolute;
  top: 0;
  bottom: 12px;
  width: 90px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.trabajos-carousel-wrap:hover .trabajos-fade { opacity: 1; }

.trabajos-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-black), transparent);
}

.trabajos-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-black), transparent);
}

.trabajos-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  font-family: inherit;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trabajos-arrow:hover {
  background: rgba(242, 194, 48, 0.16);
  border-color: rgba(242, 194, 48, 0.4);
  box-shadow: var(--glow-gold);
}

.trabajos-arrow-prev { left: -8px; }
.trabajos-arrow-next { right: -8px; }

@media (min-width: 640px) {
  .trabajos-arrow-prev { left: -22px; }
  .trabajos-arrow-next { right: -22px; }
}

.trabajos-item {
  display: block;
  padding: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
  cursor: pointer;
  flex: 0 0 auto;
  width: 78%;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 560px) {
  .trabajos-item { width: 340px; }
}

.trabajos-item:hover,
.trabajos-item:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
  border-color: rgba(242, 194, 48, 0.4);
}

.trabajos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.18); }

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ==========================================================================
   Instagram
   ========================================================================== */

.instagram-feed { padding: 88px 0; }

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
}

@media (min-width: 900px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

.instagram-embed {
  width: 100%;
  max-width: 360px;
  height: 430px;
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 10px;
  overflow: hidden;
}

.instagram-embed .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.instagram-embed iframe {
  width: 100% !important;
}

/* ==========================================================================
   Contacto
   ========================================================================== */

.contacto { padding: 88px 0; }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 560px;
  margin: 0 auto;
}

.contacto-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(242, 194, 48, 0.25);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
  .contacto-cta {
    padding: 28px 20px;
    gap: 24px;
  }

  .contacto-cta .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.92rem;
    gap: 8px;
  }
}

.contacto-cta::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.15), transparent 70%);
  pointer-events: none;
}

.contacto-datos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.contacto-datos li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

.contacto-datos svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }

.contacto-datos a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-footer);
  color: rgba(255, 255, 255, 0.6);
  padding: 24px 0;
  border-top: 1px solid rgba(242, 194, 48, 0.2);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
}

.footer-credit {
  margin: 0;
  font-size: 0.85rem;
}

.footer-credit a {
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 200;
  transition: transform 0.2s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.whatsapp-float.wa-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-icon {
  transform: scale(1.08);
  animation-play-state: paused;
}

.whatsapp-float-text {
  background: var(--bg-surface-2);
  color: var(--white);
  border: 1px solid var(--border-dark-strong);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.whatsapp-float-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(37, 211, 102, 0); }
}

.whatsapp-float-icon svg { width: 30px; height: 30px; }

@media (max-width: 360px) {
  .whatsapp-float-text { display: none; }
}
