:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --primary: #2ABF60;
  --primary-hover: #7edc89;
  --text-primary: #f0f6fc;
  --text-secondary: #9dabc0;
  --text-muted: #6b7d99;
  --success: #10b981;
  --error: #ef4444;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-full: 100px;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Liquid Glass tokens — Apple iOS 26 style (.regular variant) */
  --glass-bg: rgba(255, 255, 255, 0.10);
  --glass-bg-strong: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-strong: rgba(255, 255, 255, 0.22);
  --glass-highlight: inset 0 1px 1px rgba(255, 255, 255, 0.25);
  --glass-highlight-heavy: inset 0 1.5px 1.5px rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  --glass-shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.3);
  --glass-blur: blur(40px) saturate(1.6);
  --glass-blur-strong: blur(50px);

  /* iOS safe area tokens */
  --sat: env(safe-area-inset-top, 0px);
  --sar: env(safe-area-inset-right, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left, 0px);
}

/* ---------- Reduced Transparency ---------- */
@media (prefers-reduced-transparency: reduce) {
  :root {
    --glass-bg: rgba(28, 35, 51, 0.95);
    --glass-bg-strong: rgba(36, 45, 61, 0.95);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: none;
    --glass-blur-strong: none;
    --glass-highlight: none;
    --glass-highlight-heavy: none;
  }
  .card::before,
  .card::after,
  .hero-content::before,
  .hero-content::after,
  .contact-form::before,
  .contact-form::after,
  .contact-info::before,
  .contact-info::after,
  .stat::before,
  .btn-primary::before,
  .btn-primary::after,
  .btn-outline::before,
  .hero-badge::before,
  .section-tag::before,
  .card-badge::before {
    display: none !important;
  }
}

/* ---------- SVG Filters ---------- */
.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

/* iOS momentum scrolling for scrollable areas */
.scrollable {
  -webkit-overflow-scrolling: touch;
}

::selection {
  background: var(--primary);
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  touch-action: manipulation;
}

input,
textarea,
select {
  font-size: 16px;
}

/* ---------- Header ---------- */
/* --- Top Header (logo + nav + icons in one row) --- */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
}

.top-header-inner {
  display: flex;
  align-items: center;
  height: 80px;
  padding-right: var(--sar);
  padding-left: var(--sal);
  position: relative;
}

.top-header-logo {
  flex: 0 0 800px;
  display: flex;
  align-items: center;
  height: 100%;
}
.top-header-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.top-header-logo img:first-child {
  margin-right: 2px;
  margin-left: 8px;
}
.top-header-logo img:last-child {
  height: 44px;
}

.top-header-icons {
  flex: 0 0 560px;
  height: 100%;
  margin-left: auto;
}
.top-header-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}

/* --- Nav centered in header row --- */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  z-index: 10;
}

.top-nav .menu-toggle {
  display: none;
}

.top-nav .nav-list {
  display: flex;
  gap: 32px;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link.active {
  color: var(--primary);
}
.nav-link.active::after {
  width: 100%;
}

@media (hover: hover) {
  .nav-link:hover {
    color: var(--primary);
  }
  .nav-link:hover::after {
    width: 100%;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(80px + var(--sat));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0d1117;
  pointer-events: none;
}

/* (hero-social removed) */

/* --- Liquid Glass Hero Panel --- */
.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight-heavy), var(--glass-shadow);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--transition);
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.008); }
}

/* Specular highlight overlay — Apple Liquid Glass style */
.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    /* Top rim light — edge highlight */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 30%
    ),
    /* Top specular sheen */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 25%,
      transparent 65%
    ),
    /* Bottom ambient reflection */
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 35%
    );
  pointer-events: none;
  border-radius: inherit;
}

/* Secondary edge shine */
.hero-content::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  right: 6px;
  height: 18%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 100%
  );
  filter: blur(2px);
  pointer-events: none;
  border-radius: inherit;
}

/* SVG displacement refraction overlay on glass ::before layers */
.card::before,
.contact-form::before,
.contact-info::before {
  filter: url(#liquid-glass);
}

/* ---------- Hero Badge (Liquid Glass) ---------- */
.hero-badge {
  display: inline-block;
  background: rgba(60, 65, 75, 0.35);
  padding: 8px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 0;
}

.hero-logo {
  display: block;
  height: 187px;
  width: 187px;
  object-fit: contain;
  border-radius: var(--radius-full);
  position: relative;
  z-index: 1;
}

/* ---------- Hero Text ---------- */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons (Liquid Glass) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  line-height: 1.2;
  font-family: inherit;
  position: relative;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.10);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.3),
     0 2px 8px rgba(42, 191, 96, 0.12);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-full);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 1px, transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.03);
  box-shadow:
    inset 0 1.5px 1.5px rgba(255, 255, 255, 0.3),
    0 6px 24px rgba(0, 0, 0, 0.35),
     0 2px 12px rgba(42, 191, 96, 0.2);
}

.btn-primary:active {
  transform: scale(0.97);
  background: rgba(255, 255, 255, 0.07);
}

/* Outline button with glass */
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #b5e035;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 1px, transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #b5e035;
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    inset 0 1.5px 1.5px rgba(255, 255, 255, 0.28),
    0 6px 24px rgba(0, 0, 0, 0.35);
}

.btn-full {
  width: 100%;
  border-radius: var(--radius);
}

/* ---------- Sections ---------- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* --- Section Tag (Liquid Glass) --- */
.section-tag {
  display: inline-block;
  background: rgba(42, 191, 96, 0.08);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-highlight), 0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  filter: url(#glass-glow);
  transition: var(--transition);
}

.section-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.03) 1px, transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.section-tag:hover {
  background: rgba(42, 191, 96, 0.12);
  transform: scale(1.03);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
.cards-grid .card-link {
  flex: 0 0 300px;
  max-width: 300px;
}

/* --- Liquid Glass Card --- */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-link:hover {
  color: inherit;
}

.card {
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-highlight), 0 4px 12px rgba(0, 0, 0, 0.25);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

/* Specular highlight - top shine */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 35%
    ),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 20%,
      transparent 60%
    ),
    linear-gradient(0deg,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 35%
    );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.card-link:hover .card {
  transform: translateY(-2px) scale(1.01);
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
  box-shadow: var(--glass-highlight-heavy), 0 6px 16px rgba(0, 0, 0, 0.3);
}

.card-body {
  padding: 28px 32px 28px;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-featured {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(42, 191, 96, 0.15), var(--glass-highlight), var(--glass-shadow);
}

.card-link:hover .card-featured {
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: 0 0 0 1px rgba(42, 191, 96, 0.2), var(--glass-highlight-heavy), var(--glass-shadow-hover);
}

/* Card Badge (Liquid Glass) */
.card-badge {
  display: inline-block;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  background: rgba(13, 17, 23, 0.65);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: var(--transition);
}

.card-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  right: 4px;
  height: 45%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 100%);
  pointer-events: none;
}

.card-badge:hover {
  background: rgba(13, 17, 23, 0.75);
  transform: scale(1.03);
}

/* Card Icon */
.card-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px 0;
  flex-shrink: 0;
  line-height: 0;
  font-size: 0;
}
.card-icon img {
  width: 96px;
  height: 96px;
  display: block;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

.card-desc {
  font-size: 0.85rem;
  color: #8b8fa3;
  text-align: center;
  line-height: 1.5;
  max-width: 280px;
  margin: 0;
}

/* Card Bottom Green Graphic */
.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url('../assets/graf-4.png') no-repeat bottom center / cover;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 20px rgba(42, 191, 96, 0.2));
}

.cards-row-center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.card-center {
  max-width: 380px;
  width: 100%;
}

/* ---------- About ---------- */
.about-centered {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.about-centered .section-title {
  margin-bottom: 20px;
}
.about-centered .section-desc {
  margin-bottom: 40px;
}

/* --- Stats (Liquid Glass) --- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  background: var(--glass-bg);
  padding: 28px 20px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight), var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-highlight-heavy), var(--glass-shadow-hover);
  background: var(--glass-bg-strong);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

/* Contact Form (Liquid Glass) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight), var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.03) 1px, transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 20%, transparent 60%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, transparent 35%);
  pointer-events: none;
  border-radius: inherit;
}

.contact-form::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  mask: linear-gradient(180deg, #000 0%, #000 30%, transparent 70%);
  -webkit-mask: linear-gradient(180deg, #000 0%, #000 30%, transparent 70%);
  pointer-events: none;
}

.contact-form:hover {
  box-shadow: var(--glass-highlight-heavy), var(--glass-shadow-hover);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  resize: none;
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.10);
  color: var(--text-primary);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

#nombre {
  background: rgba(255, 255, 255, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), var(--glass-highlight-heavy);
}

#email:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(13, 17, 23, 0.95) inset !important;
  -webkit-text-fill-color: var(--text-primary) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Character counter */
.char-counter {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.char-counter.full {
  color: var(--primary);
}

/* Contact Info (Liquid Glass) */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding: 24px 36px;
  background: var(--glass-bg);
  align-items: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight), var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.03) 1px, transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 20%, transparent 60%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, transparent 35%);
  pointer-events: none;
  border-radius: inherit;
}

.contact-info:hover {
  box-shadow: var(--glass-highlight-heavy), var(--glass-shadow-hover);
  background: var(--glass-bg-strong);
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-align: center;
  z-index: 1;
}

.contact-link {
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.contact-link:hover {
  color: var(--primary);
}
.contact-link:hover h4 {
  color: var(--primary);
}
.contact-link:hover p {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.contact-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-phone {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.contact-instagram {
  font-weight: 500;
  transition: var(--transition);
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-link:hover .contact-instagram {
  text-decoration: underline;
  filter: none;
}
.contact-link:hover .contact-phone {
  text-decoration: underline;
}



/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border-light, var(--border));
  padding: 64px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-dpsoltec {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border-light, var(--border));
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  text-align: center;
  color: var(--text-muted);
}

/* ---------- Footer Full Image ---------- */
/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 24px;
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(37, 211, 102, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 20px rgba(37, 211, 102, 0.25);
  transform: translateY(120px);
  opacity: 0;
  transition: var(--transition);
  z-index: 2000;
  overflow: hidden;
}

.toast::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}

.toast.error {
  background: rgba(239, 68, 68, 0.18);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 20px rgba(239, 68, 68, 0.25);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Responsive ---------- */

@media (max-width: 1366px) {
  .hero-content {
    padding: 48px 32px;
    max-width: 620px;
  }
  .hero-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
  }
  .hero-description {
    font-size: 0.92rem;
  }
  .section {
    padding: 72px 0;
  }
  .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }
  .card-body {
    padding: 28px 24px 16px;
  }
  .stats {
    gap: 14px;
  }
  .stat {
    padding: 22px 16px;
  }
  .contact-form {
    padding: 28px;
  }
  .contact-info {
    padding: 28px;
  }
  .footer-container {
    gap: 32px;
  }
}

@media (max-width: 968px) {
  .top-header-inner {
    height: 80px;
  }
  .top-header-logo {
    flex: 0 0 550px;
    margin-left: -8px;
  }
  .top-header-icons {
    display: none;
  }

  .top-nav {
    position: absolute;
    right: 12px;
    margin-left: 0;
    justify-content: flex-end;
    transform: none;
  }
  .top-nav .nav-list {
    display: none;
  }
  .top-nav .menu-toggle {
    display: flex;
  }

  .top-nav .nav-list {
    position: fixed;
    top: calc(80px + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    background: rgba(13, 17, 23, 0.70);
    backdrop-filter: blur(50px) saturate(1.8);
    -webkit-backdrop-filter: blur(50px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 10px 20px;
    padding-bottom: calc(10px + var(--sab));
    max-width: calc(100vw - 32px);
    opacity: 0;
    transition: var(--transition);
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    z-index: 999;
    display: flex;
    pointer-events: none;
  }

  .top-header.open .top-nav .nav-list {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 6px;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-block;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    white-space: nowrap;
  }

  .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--primary);
  }

  @media (hover: hover) {
    .nav-link:hover {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-color: rgba(255, 255, 255, 0.06);
      color: var(--primary);
  }
}

/* Lightbox */
.lb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  animation: lbPop 0.3s ease;
}
@keyframes lbPop {
  from { transform: translate(-50%, -50%) scale(0.9); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.lb-x {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10000;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}
.lb-x:hover {
  opacity: 1;
}

  .nav-link::after {
    display: none;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 10;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  .top-header-inner {
    height: 72px;
  }
  .top-header-logo {
    flex: 0 0 440px;
  }
  .top-header-logo img {
    height: 44px;
  }

  .top-nav .nav-list {
    top: calc(72px + 14px);
  }

  .hero {
    min-height: 70vh;
    min-height: 70dvh;
    padding-top: 0;
  }

  .hero-content {
    max-width: 320px;
    padding: 24px 28px;
    border-radius: 28px;
  }
  .hero-logo {
    height: 90px;
  }
  .hero-badge {
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    margin-bottom: 10px;
  }
  .hero-description {
    font-size: 0.75rem;
    max-width: 260px;
    margin-bottom: 16px;
    display: block;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    font-size: 0.75rem;
    padding: 8px 18px;
    min-height: 36px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .cards-grid {
    gap: 16px;
  }

  .card-body {
    padding: 24px 20px 16px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-list {
    font-size: 0.85rem;
  }

  .about-content {
    padding: 0;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
  }

  .stat {
    padding: 16px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .contact-info {
    padding: 24px 20px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .top-header-inner {
    height: 64px;
  }
  .top-header-logo {
    flex: 0 0 340px;
  }
  .top-header-logo img {
    height: 38px;
  }
  .top-header-icons {
    flex: 0 0 140px;
  }
  .top-nav .nav-list {
    top: calc(64px + 7px);
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 0;
  }

  .hero-content {
    max-width: 280px;
    padding: 20px 24px;
    border-radius: 24px;
  }
  .hero-logo {
    height: 75px;
  }
  .hero-badge {
    padding: 4px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
  }

  .hero-description {
    font-size: 0.82rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn {
    text-align: center;
    font-size: 0.8rem;
    padding: 10px 20px;
    min-height: 40px;
  }

  .section {
    padding: 36px 0;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .section-title {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  .section-desc {
    font-size: 0.82rem;
  }

  .cards-grid {
    gap: 12px;
  }

  .card-body {
    padding: 20px 16px 12px;
  }

  .about-content {
    margin: 0;
    padding: 0;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat {
    padding: 8px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

    .contact-grid {
      grid-template-columns: 1fr;
      max-width: 640px;
      gap: 16px;
    }

  .contact-form {
    padding: 20px 16px;
    gap: 14px;
  }

  .contact-form label {
    font-size: 0.82rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 13px 16px;
    min-height: 48px;
  }

  .contact-info {
    padding: 20px 16px;
    gap: 16px;
  }

  .contact-item {
    gap: 4px;
  }

  .contact-item h4 {
    font-size: 0.82rem;
  }

  .contact-item p,
  .contact-phone {
    font-size: 0.82rem;
  }

  .footer {
    padding: 32px 0 0;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .footer-links h4 {
    font-size: 0.82rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 20px;
    font-size: 0.82rem;
    border-radius: 12px;
  }
}

@media (max-width: 360px) {
  .top-header-inner {
    height: 56px;
  }
  .top-header-logo {
    flex: 0 0 280px;
  }
  .top-header-logo img {
    height: 32px;
  }
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
    padding-top: 0;
  }
  .hero-content {
    max-width: 250px;
    padding: 18px 22px;
    border-radius: 20px;
  }
  .hero-logo {
    height: 65px;
  }
  .hero-badge {
    padding: 3px;
    margin-bottom: 8px;
  }
  .top-nav .nav-list {
    top: calc(56px + 20px);
    gap: 1px;
  }
  .nav-link {
    font-size: 0.72rem;
    padding: 4px 5px;
  }

  .hero-title {
    font-size: clamp(1.1rem, 7vw, 1.4rem);
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .card-body {
    padding: 16px 12px 10px;
  }
}

/* Subpage Styles */
.page-header {
  padding: 100px 0 40px;
}
.page-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header .btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  align-self: flex-start;
}
.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.page-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}
.page-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.page-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.subcard {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  box-shadow: var(--glass-highlight), 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.subcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.03) 1px, transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 20%, transparent 60%),
    linear-gradient(0deg, rgba(255,255,255,0.03) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.subcard-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.subcard-desc {
  font-size: 0.88rem;
  color: #8b8fa3;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 2;
}
.subcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  position: relative;
  box-shadow: var(--glass-highlight), 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-2px) scale(1.01);
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-highlight-heavy), 0 6px 16px rgba(0, 0, 0, 0.3);
  }
}
.gallery-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
@media (hover: hover) {
  .gallery-image-wrap:hover::after {
    opacity: 1;
  }
  .gallery-image-wrap:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.12);
    pointer-events: none;
    z-index: 1;
  }
}
.gallery-image-wrap::after {
  content: '⤢';
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 2;
}
.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-label {
  padding: 8px 14px;
  text-align: center;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
}
.gallery-item:first-child .gallery-label,
.gallery-item:nth-child(3) .gallery-label {
  color: var(--primary);
}
.gallery-item:nth-child(2) .gallery-label {
  color: #b5e035;
}

/* --- Floating WhatsApp Button (Liquid Glass) --- */
.wa-wrapper {
  position: fixed;
  bottom: calc(24px + var(--sab));
  right: calc(24px + var(--sar));
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.wa-bubble {
  background: rgba(16, 17, 23, 0.7);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  color: #e0e0e0;
  padding: 12px 20px;
  border-radius: 20px 20px 4px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  animation: waBubbleIn 0.4s ease-out;
}

.wa-bubble-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-close {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, color 0.2s;
  border-radius: 50%;
  flex-shrink: 0;
}
.wa-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.wa-bubble-row.closed {
  display: none;
}

.wa-bot-icon {
  vertical-align: middle;
  margin-right: 6px;
  margin-top: 2px;
  color: var(--primary);
}

.wa-bot-eye-r {
  animation: waBotWink 4s ease-in-out infinite;
  transform-origin: center;
}

.wa-bot-zap {
  opacity: 0;
  transform-origin: center;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.wa-wrapper:has(.wa-float:hover) .wa-bot-zap {
  opacity: 1;
}

@keyframes waBotWink {
  0%, 90%, 100% { transform: scaleY(1); opacity: 1; }
  92% { transform: scaleY(0.1); opacity: 0.3; }
  96% { transform: scaleY(1); opacity: 1; }
}

@keyframes waBubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-float {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
  border-radius: 50%;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(37, 211, 102, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 20px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.wa-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
}

.wa-float:hover {
  transform: scale(1.1);
  background: rgba(37, 211, 102, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 6px 28px rgba(37, 211, 102, 0.4);
  color: #4ade80;
}

@media (max-width: 768px) {
  .wa-wrapper {
    bottom: 16px;
    right: 16px;
  }
  .wa-float {
    width: 48px;
    height: 48px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
  .wa-bubble {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}
