/* =========================================================
   FOCUS WEB - ESTILOS INSPIRADOS EN FOCUSPARAGUAY.COM
   ========================================================= */

:root {
  /* PALETA CORPORATIVA FOCUS */
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --primary-navy: #0f2537;
  --primary-blue: #2563eb;
  --accent-cyan: #0284c7;
  --accent-light: #e0f2fe;
  --gold: #d97706;

  --whatsapp: #25d366;
  --whatsapp-hover: #1eb956;
  
  --border-color: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.1);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);

  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-cyan); }
.text-green { color: var(--whatsapp); }

/* 1. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-focus { color: var(--primary-navy); }
.logo-web { color: var(--accent-cyan); }

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.nav-link:hover { color: var(--accent-cyan); }

.btn-nav-cta {
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.btn-nav-cta:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* 2. HERO SECTION */
.hero {
  padding: 8.5rem 0 4.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-light);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
}

.highlight-navy { color: var(--accent-cyan); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary-focus {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.btn-primary-focus:hover {
  background-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-secondary-focus {
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn-secondary-focus:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.hero-trust-bar {
  display: flex;
  gap: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  flex-wrap: wrap;
}

.hero-card-preview {
  background-color: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-dark-card);
}

.preview-header {
  background-color: #1e293b;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview-header span[class^="dot-"] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.preview-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}

.preview-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-metric {
  background-color: var(--bg-dark-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-dark);
}

.preview-metric i { font-size: 1.4rem; }

.preview-metric strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
}

.preview-metric small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* 3. DEMOS Y PLANES EN CARRUSEL */
section { padding: 5rem 0; }

.section-header {
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 0.4rem;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ESTRUCTURA GENERAL DE SLIDERS (DEMOS Y PRECIOS) */
.demo-slider-wrapper,
.pricing-slider-wrapper {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.demo-slider-container,
.pricing-slider-container {
  width: 100%;
  overflow: hidden;
  padding: 1.25rem 0;
}

.demo-track,
.pricing-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.demo-slide {
  flex: 0 0 100%;
  padding: 0 0.6rem;
}

@media (min-width: 768px) {
  .demo-slide { flex: 0 0 50%; }
}

/* TARJETAS DE DEMOS */
.demo-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-cyan);
}

.demo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-navy);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.demo-badge.gold { background-color: var(--gold); }

.demo-img-wrapper {
  height: 190px;
  overflow: hidden;
}

.demo-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.demo-card:hover .demo-img-wrapper img { transform: scale(1.06); }

.demo-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.demo-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--primary-navy);
}

.demo-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.demo-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.demo-features li {
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-demo-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--accent-light);
  color: var(--accent-cyan);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-demo-link:hover {
  background-color: var(--accent-cyan);
  color: #ffffff;
}

.btn-demo-link.gold-btn {
  background-color: #fef3c7;
  color: var(--gold);
}

.btn-demo-link.gold-btn:hover {
  background-color: var(--gold);
  color: #ffffff;
}

/* SLIDER DE PLANES Y TARIFAS */
.pricing-slide {
  flex: 0 0 100%;
  padding: 0 0.6rem;
}

@media (min-width: 640px) {
  .pricing-slide { flex: 0 0 50%; }
}

@media (min-width: 992px) {
  .pricing-slide { flex: 0 0 33.333%; }
}

.pricing-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.pricing-card.popular {
  border: 2px solid var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-cyan);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-full);
}

.service-plan-card {
  border-color: rgba(15, 37, 55, 0.3);
}

.service-plan-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-light);
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.ecommerce-card {
  border-color: rgba(217, 119, 6, 0.4);
}

.ecommerce-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #fef3c7;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
}

.plan-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.plan-price-cotizar {
  color: var(--gold);
  font-size: 1.75rem;
}

.no-hosting-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #dc2626;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.no-hosting-badge.gold {
  color: var(--gold);
  background-color: #fffbe3;
  border-color: #fef08a;
}

.pricing-card.popular .plan-price { color: var(--accent-cyan); }

.plan-list {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.plan-list li {
  font-size: 0.83rem;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-navy);
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-plan:hover {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.btn-plan.primary {
  background-color: var(--accent-cyan);
  color: #ffffff;
  border-color: var(--accent-cyan);
}

.btn-plan.primary:hover { background-color: #0369a1; }

.btn-plan.navy {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.btn-plan.navy:hover { background-color: var(--accent-cyan); }

.btn-plan.gold {
  background-color: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}

/* FLECHAS Y DOTS FLOTANTES */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: var(--bg-card);
  color: var(--primary-navy);
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.slider-arrow.prev-btn { left: -16px; }
.slider-arrow.next-btn { right: -16px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--accent-cyan);
  width: 26px;
  border-radius: 10px;
}

/* 4. SECCIÓN PÁGINAS WEB HECHAS / CASOS DE ÉXITO */
.section-real-projects {
  background-color: #ffffff;
}

.real-projects-grid {
  max-width: 950px;
  margin: 0 auto;
}

.real-project-card {
  background-color: var(--bg-page);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .real-project-card {
    grid-template-columns: 1fr 1.1fr;
  }
}

.real-project-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.real-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.real-project-card:hover .real-project-media img { transform: scale(1.05); }

.live-status-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(15, 37, 55, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
}

.real-project-details {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.real-project-details h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.project-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.project-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.btn-visit-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}

.btn-visit-site:hover {
  background-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* 5. SECCIÓN ATENCIÓN AL DETALLE */
.section-focus-details {
  background-color: var(--bg-page);
}

.focus-box {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
}

.focus-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.85rem;
}

.focus-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.focus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: var(--bg-page);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.focus-item i {
  font-size: 1.4rem;
  margin-top: 2px;
}

.focus-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.2rem;
}

.focus-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* 7. FAQ ACCORDION */
.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* 8. BANNER CTA */
.section-cta {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.section-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.section-cta p {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-cta-large:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
}

/* FOOTER */
.main-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-card);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 450px;
  margin-top: 0.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 9. COMPONENTE FLOTANTE Y DROPDOWN DE REDES SOCIALES */
.social-float-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 2000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}

.social-float-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--primary-navy);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.social-float-toggle:hover {
  background-color: var(--accent-cyan);
  transform: scale(1.06);
}

.social-float-toggle .icon-close { display: none; }

.social-float-wrapper.active .social-float-toggle {
  background-color: var(--primary-navy);
  transform: rotate(90deg);
}

.social-float-wrapper.active .social-float-toggle .icon-open { display: none; }
.social-float-wrapper.active .social-float-toggle .icon-close { display: block; }

.social-float-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  pointer-events: none;
}

.social-float-wrapper.active .social-float-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.social-float-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.social-float-item:hover {
  transform: scale(1.12);
}

.social-float-item.whatsapp {
  background-color: var(--whatsapp);
}

.social-float-item.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-float-tooltip {
  position: absolute;
  right: 58px;
  background-color: var(--primary-navy);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-float-item:hover .social-float-tooltip {
  opacity: 1;
}

/* ANIMACIONES */
.animate-fade-down { animation: fade-down 0.8s ease forwards; }
.animate-fade-up { animation: fade-up 0.8s ease forwards; }
.animate-fade-up-delayed { animation: fade-up 0.8s ease 0.2s forwards; opacity: 0; }
.animate-fade-up-delayed-2 { animation: fade-up 0.8s ease 0.4s forwards; opacity: 0; }
.animate-fade-up-delayed-3 { animation: fade-up 0.8s ease 0.6s forwards; opacity: 0; }

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-menu.active { left: 0; }
  .hero-title { font-size: 2.2rem; }
  .slider-arrow.prev-btn { left: 4px; }
  .slider-arrow.next-btn { right: 4px; }
}