/* ===== VARIABLES ===== */
:root {
  --blue: #1B4F9C;
  --blue-dark: #143d7a;
  --blue-light: #e8f0fb;
  --red: #C0392B;
  --red-light: #fdecea;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --green-wa: #25D366;
  --green-wa-dark: #1da851;
  --instagram: #E1306C;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2.2rem; font-size: 1.1rem; }

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn-whatsapp:hover {
  background: var(--green-wa-dark);
  border-color: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,79,156,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-instagram {
  background: var(--instagram);
  color: var(--white);
  border-color: var(--instagram);
}
.btn-instagram:hover {
  background: #c1255a;
  border-color: #c1255a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225,48,108,0.3);
}

/* ===== LOGO ===== */
.logo-link { display: flex; align-items: center; }

.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-placeholder-sm .logo-sf { font-size: 1.4rem; }
.logo-placeholder-sm .logo-text .logo-name { font-size: 0.65rem; }
.logo-placeholder-sm .logo-text .logo-brand { font-size: 0.85rem; }

.logo-sf {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.logo-s { color: var(--red); }
.logo-f { color: var(--blue); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text .logo-name {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo-text .logo-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-img { height: 48px; width: auto; }
.logo-img-footer { height: 40px; filter: brightness(0) invert(1); }

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, #064e3b 0%, #065f46 40%, #047857 60%, #064e3b 100%);
  background-size: 200% 100%;
  animation: shimmer-bar 4s linear infinite;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: 2px solid #34d399;
}
@keyframes shimmer-bar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.top-bar-dot {
  width: 10px; height: 10px; min-width: 10px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: ping 1.5s ease-in-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
.top-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}
.top-bar p {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
}
.top-bar p strong {
  color: #6ee7b7;
  font-size: 1rem;
  font-weight: 800;
}
.top-bar-line2 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.02em;
}
.top-bar-line2 i { color: #34d399; margin-right: 0.3rem; }
.top-bar-line2 strong {
  color: #ff3b3b !important;
  font-size: 1.3rem !important;
  font-weight: 900 !important;
  text-shadow: 0 0 12px rgba(255,59,59,0.6);
}
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25D366;
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 0 16px rgba(37,211,102,0.5);
  animation: glow-btn 2s ease-in-out infinite;
}
@keyframes glow-btn {
  0%, 100% { box-shadow: 0 0 10px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 22px rgba(37,211,102,0.8); }
}
.top-bar a:hover {
  background: #1da851;
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(37,211,102,0.9);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 48px;
  left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

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

.nav { display: flex; align-items: center; gap: 0.5rem; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: var(--blue-light);
}

.header-wa { margin-left: 0.75rem; padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.header-wa i { font-size: 1.1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #2563a8 100%);
  display: flex;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,57,43,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 1.25rem;
  z-index: 1;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.hero-info span { display: flex; align-items: center; gap: 0.4rem; }
.hero-info i { color: rgba(255,255,255,0.6); }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-image-frame {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 30px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-icon-display {
  font-size: 8rem;
  color: rgba(255,255,255,0.15);
  z-index: 1;
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}
.hero-card-float i { font-size: 1.1rem; }
.card-1 { top: 20px; left: -20px; animation-delay: 0s; }
.card-1 i { color: var(--blue); }
.card-2 { bottom: 40px; left: -30px; animation-delay: 1s; }
.card-2 i { color: var(--gray-600); }
.card-3 { top: 60px; right: -20px; animation-delay: 2s; }
.card-3 i { color: var(--green-wa); }
.card-4 { bottom: 20px; right: -10px; animation-delay: 1.5s; background: #064e3b; color: #fff; border: 1px solid #34d399; }
.card-4 i { color: #34d399; }
.card-4 span:not(.card-dot-live) { color: #fff; }

.card-dot-live {
  width: 8px; height: 8px; min-width: 8px;
  background: #34d399;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: ping 1.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===== BANNER 24HS ===== */
.banner-24 {
  background: linear-gradient(135deg, #064e3b, #065f46);
  padding: 1.75rem 0;
}

.banner-24-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-24-left { flex: 1; min-width: 260px; }

.badge-urgente {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  color: #6ee7b7;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-urgente i {
  font-size: 0.5rem;
  color: #34d399;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.banner-24-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.banner-24-left h2 strong { color: #34d399; }

.banner-24-left p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 480px;
}

.btn-urgente {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #25D366;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 16px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-urgente:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.btn-urgente i {
  font-size: 2rem;
  flex-shrink: 0;
}
.btn-urgente div { display: flex; flex-direction: column; }
.btn-urgente-title { font-size: 1rem; font-weight: 700; line-height: 1.2; }
.btn-urgente-sub { font-size: 0.78rem; color: rgba(255,255,255,0.8); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.stat-item:hover { background: var(--gray-50); }

.stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.stat-item div {
  display: flex;
  flex-direction: column;
}
.stat-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
}
.stat-item span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ===== SECTION BASE ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.section-desc {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-icon.blue { background: var(--blue-light); color: var(--blue); }
.service-icon.red { background: var(--red-light); color: var(--red); }

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== LENSES GRID ===== */
.lenses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.lens-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}
.lens-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.lens-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: var(--blue);
}
.lens-header i { font-size: 1.1rem; }
.lens-header h3 { font-size: 0.9rem; font-weight: 700; color: var(--gray-900); }

.lens-card p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

.lenses-callout {
  display: flex;
  justify-content: center;
}

.callout-box {
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 620px;
  width: 100%;
}
.callout-box i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.callout-box p {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--gray-900), var(--blue-dark));
  padding: 4.5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.location-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.location-detail div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.location-detail strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
}
.location-detail span {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.map-container { border-radius: var(--radius-lg); overflow: hidden; }
.map-container iframe { width: 100%; height: 380px; border: none; display: block; }

.map-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray-400);
  text-align: center;
  padding: 2rem;
}
.map-placeholder i { font-size: 3rem; color: var(--blue); opacity: 0.4; }
.map-placeholder p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }
.map-link {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition);
}
.map-link:hover { color: var(--blue-dark); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  color: var(--white);
}

.whatsapp-card .contact-icon { background: var(--green-wa); }
.instagram-card .contact-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.location-card .contact-icon { background: var(--blue); }

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}
.contact-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}
.contact-sub {
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  color: var(--gray-500) !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.5;
}

.contact-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}
.contact-hours i { color: var(--blue); }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-text .logo-name,
.footer-brand .logo-text .logo-brand { color: var(--white); }
.footer-brand .logo-text .logo-name { color: rgba(255,255,255,0.6); }

.footer-slogan {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--white); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact ul li i {
  color: var(--blue);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  min-width: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: background var(--transition);
}
.faq-btn:hover { background: var(--gray-50); }
.faq-btn i {
  font-size: 0.8rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-btn i { transform: rotate(180deg); }
.faq-item.open .faq-btn { background: var(--blue-light); color: var(--blue); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
}
.faq-answer p { padding-top: 1rem; }
.faq-item.open .faq-answer { display: block; }

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--green-wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: var(--green-wa-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ===== DROPDOWN NAV ===== */
.nav-dropdown { position: relative; }

.nav-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-more-btn i { font-size: 0.7rem; transition: transform var(--transition); }
.nav-dropdown.open .nav-more-btn i { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 210px;
  padding: 0.5rem;
  z-index: 200;
}
.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.dropdown-menu li a i { font-size: 0.9rem; color: var(--blue); width: 16px; text-align: center; }

/* ===== QUICK ACCESS ===== */
.quick-access { background: var(--gray-50); }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.quick-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quick-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.quick-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.quick-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}
.quick-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
}
.quick-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  transition: gap var(--transition);
}
.quick-card:hover .quick-link { gap: 0.6rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .lenses-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .banner-24-inner { flex-direction: column; text-align: center; }
  .banner-24-left p { margin: 0 auto; }
  .btn-urgente { width: 100%; justify-content: center; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-info { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 0.25rem;
  }
  .nav.open { display: flex; }

  .nav-list { flex-direction: column; gap: 0; }
  .nav-link { display: block; padding: 0.75rem 1rem; border-radius: 8px; }

  .header-wa {
    margin: 0.5rem 0 0;
    width: 100%;
    justify-content: center;
  }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .lenses-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .dropdown-menu { left: auto; right: 0; transform: none; }

  .hero-content { padding: 3rem 1.25rem; }
  .section { padding: 3.5rem 0; }
  .cta-section { padding: 3rem 0; }

  .map-container iframe,
  .map-placeholder { height: 280px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-xl { width: 100%; justify-content: center; }
}
