/* <!-- ================== ESTILOS ================== --> */

:root {
  --bg-main: #020617;
  --bg-card: #020617;
  --border-soft: #6d6f74;
  --primary: #0ea5e9;
  --primary-soft: #38bdf8;
  --accent: #f97316;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --success: #22c55e;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.75);
  --max-width: 1150px;
  --transition-fast: 0.18s ease-out;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% -20%, #0f172a 0, transparent 45%),
    radial-gradient(circle at 100% 120%, #0b1120 0, #020617 55%);
  color: var(--text-main);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; }

.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== NAVBAR ========== */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.85), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #38bdf8, #0f172a 65%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
  font-size: 0.85rem;
}

.nav-logo-text-main { font-size: 0.95rem; }

.nav-logo-text-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-link {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--text-muted);
  position: relative;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--primary-soft));
  transform: translateX(-50%);
  transition: width var(--transition-fast);
}

.nav-link:hover { color: var(--text-main); }

.nav-link.active {
  color: var(--primary-soft);
  font-weight: 600;
}

.nav-link.active::after { width: 60%; }

.nav-cta { display: flex; gap: 0.5rem; align-items: center; }

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary-soft);
  color: var(--primary-soft);
  background: rgba(15, 23, 42, 0.7);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #0b1120;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.5);
}

.btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-0.5px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.55);
}

.mobile-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--text-main);
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-menu, .nav-cta { display: none; }
  .mobile-toggle { display: block; }

  .nav-menu.mobile-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #020617;
    border-bottom: 1px solid rgba(30, 64, 175, 0.5);
    padding: 0.75rem 1.25rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.95);
  }

  .nav-cta.mobile-open {
    display: flex;
    justify-content: flex-start;
    padding: 0 1.25rem 0.75rem;
  }
}

/* ========== SECCIONES BASE ========== */
main { padding-bottom: 4rem; }

section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

section:last-of-type { border-bottom: none; }

.section-header { margin-bottom: 2rem; }

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 620px;
}

/* ========== HERO ========== */
#inicio { padding-top: 4rem; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-highlight {
  background: linear-gradient(to right, var(--primary-soft), #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  align-items: center;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
  display: inline-block;
}

.hero-card {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 50%),
    radial-gradient(circle at bottom right, rgba(248, 113, 113, 0.1), transparent 55%),
    #020617;
  border: 1px solid rgba(30, 64, 175, 0.4);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.hero-card-title { font-size: 0.9rem; font-weight: 600; }

.hero-chip {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-muted);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  font-size: 0.75rem;
}

.hero-metric {
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 64, 175, 0.65);
  background: radial-gradient(circle at top, rgba(15, 118, 110, 0.3), transparent 70%);
}

.hero-metric-label { color: var(--text-muted); margin-bottom: 0.15rem; }

.hero-metric-value {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary-soft);
}

.hero-note { margin-top: 0.75rem; font-size: 0.75rem; color: var(--text-muted); }

.hero-banner-strip {
  margin-top: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: radial-gradient(circle at left, rgba(56, 189, 248, 0.12), transparent 55%);
  padding: 0.7rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-banner-pill {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.6);
  color: var(--primary-soft);
  font-size: 0.75rem;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  #inicio { padding-top: 3rem; }
}

/* ========== CARDS / GRIDS GENERALES ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 660px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.card {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.85);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.card:hover {
  border-color: rgba(56, 189, 248, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.95);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--primary-soft), #0f172a 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.card-title { font-size: 0.98rem; margin-bottom: 0.35rem; }

.card-text { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.6rem; }

.card-list {
  list-style: none;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
}

.card-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.55rem;
  color: var(--primary-soft);
  transform: translateY(0.21rem);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.card-link {
  font-size: 0.78rem;
  color: var(--primary-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* ========== PROYECTOS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
@media (max-width: 880px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ========== PLANES ========== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 660px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plan-card {
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.plan-card.highlight {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 18px 50px rgba(56, 189, 248, 0.45);
}

.plan-card.highlight::before {
  content: "Recomendado";
  position: absolute;
  top: 0.75rem;
  right: -2.6rem;
  transform: rotate(35deg);
  background: linear-gradient(135deg, var(--primary), #22c55e);
  color: #020617;
  font-size: 0.65rem;
  padding: 0.2rem 2.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.plan-name { font-size: 0.95rem; margin-bottom: 0.25rem; }

.plan-price { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.15rem; }

.plan-price span { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

.plan-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.7rem; }

.plan-features {
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.plan-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.3rem;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 0.75rem;
  transform: translateY(-1px);
}

/* ========== CLIENTES ========== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 960px) {
  .clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 660px) {
  .clients-grid { grid-template-columns: 1fr; }
}

.client-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  padding: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.client-name {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.client-tag {
  font-size: 0.7rem;
  color: var(--primary-soft);
  margin-bottom: 0.4rem;
}

/* ========== NOSOTROS / TIMELINE ========== */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 880px) {
  .about-layout { grid-template-columns: 1fr; }
}

.timeline {
  border-left: 1px solid var(--border-soft);
  padding-left: 1.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.timeline-item { margin-bottom: 1.1rem; position: relative; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.32rem;
  top: 0.1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-soft);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.9);
}

.timeline-year {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-soft);
  letter-spacing: 0.15em;
  margin-bottom: 0.15rem;
}

.timeline-title { color: var(--text-main); margin-bottom: 0.1rem; }

/* ========== SOPORTE / FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  padding: 0.75rem 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.82rem;
}

.faq-question span { flex: 1; padding-right: 0.85rem; }

.faq-toggle { font-size: 1.1rem; color: var(--primary-soft); }

.faq-answer {
  padding: 0 0.85rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* ========== CONTACTO + MAPA ========== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}
@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-form {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  padding: 1.1rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.95);
  font-size: 0.85rem;
}

.field-group { margin-bottom: 0.75rem; }

.field-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.field-input,
.field-textarea,
.field-select {
  width: 100%;
  padding: 0.6rem 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid #040111da;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}

.field-textarea { min-height: 120px; resize: vertical; }

.contact-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-meta-item {
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
}

.contact-meta-item strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text-main);
  font-size: 0.82rem;
}

.map-shell {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  margin-top: 0.6rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.map-shell iframe { display: block; width: 100%; height: 200px; border: 0; }

.small-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.4rem; }

.status-msg { font-size: 0.8rem; margin-top: 0.4rem; display: none; }
.status-msg.show { display: block; }
.status-success { color: var(--success); }

/* ========== NOVEDADES: CARRUSEL + FACEBOOK ========== */
#novedades {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.08), transparent 60%);
}

.novedades-layout { display: block; }
@media (max-width: 980px) { .novedades-layout { display: block; } }

/* ---- CARRUSEL ---- */
.img-carousel-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: #020617;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.img-carousel-header {
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img-carousel-track { display: flex; transition: transform 0.5s ease-in-out; width: 100%; }

.img-carousel-slide {
  min-width: 100%;
  height: 260px;
  display: flex;
  align-items: stretch;
  background: #020617;
}

.img-carousel-media { flex: 1.4; overflow: hidden; }

.img-carousel-media img { width: 100%; height: 100%; object-fit: cover; }

.img-carousel-info {
  flex: 1;
  padding: 1rem 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
}

.img-carousel-info h3 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.img-carousel-info p { margin-bottom: 0.45rem; }

.img-carousel-info ul { list-style: none; padding-left: 0; margin: 0.4rem 0 0; }

.img-carousel-info li {
  padding-left: 0.9rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.img-carousel-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-soft);
}

@media (max-width: 900px) {
  .img-carousel-slide { flex-direction: column; height: auto; }
  .img-carousel-media { flex: none; height: 190px; }
  .img-carousel-info { flex: none; }
}

.img-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  padding: 0.18rem 0.6rem;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
}

.img-carousel-btn.left { left: 8px; }
.img-carousel-btn.right { right: 8px; }

/* ---- FACEBOOK ---- */
.fb-shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: #020617;
  box-shadow: var(--shadow-soft);
  padding: 0.65rem 0.9rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fb-shell-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid rgba(16, 245, 16, 0.95);
  background: #050404;
  padding: 1.5rem 0 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand { max-width: 280px; }

.footer-brand-title {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--text-main);
}

.footer-brand-sub { font-size: 0.75rem; }

.footer-column-title {
  font-size: 0.8rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.footer-links, .footer-legal, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-link { cursor: pointer; }
.footer-link:hover { color: var(--primary-soft); }

.footer-social-row { display: flex; gap: 0.4rem; margin-top: 0.3rem; }

.social-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.social-btn:hover {
  border-color: var(--primary-soft);
  color: var(--primary-soft);
}

@media (max-width: 700px) {
  .footer-layout { flex-direction: column; }
}

/* ========== BOTÓN WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

@media (max-width: 700px) {
  .whatsapp-float {
    bottom: 90px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}
