/* ==============================================
   Dr. Lino Pinto Casaverde - Estilos Principales
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
@import url('variables.css');

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

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

body {
  font-family: var(--font-body);
  color: var(--fg);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-light);
}

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

ul { list-style: none; }

/* ---- Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-4);
  color: var(--fg);
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  color: var(--fg-muted);
  max-width: 600px;
  margin: var(--space-4) auto var(--space-12);
  font-size: var(--text-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-base);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--on-primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--on-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--on-primary);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--on-accent);
}

.btn-accent:hover {
  background-color: #15803D;
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(8, 145, 178, 0.12);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-light);
  box-shadow: 0 2px 5px rgba(8, 145, 178, 0.15);
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav-brand-text h1 {
  font-size: var(--text-base);
  color: var(--fg);
  font-weight: 700;
}

.nav-brand-text span {
  font-size: var(--text-xs);
  color: var(--primary-light);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  color: var(--fg);
  font-weight: 500;
  font-size: var(--text-sm);
  position: relative;
  padding: var(--space-1) 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: var(--space-2) var(--space-5) !important;
  background: var(--primary) !important;
  color: var(--on-primary) !important;
  border-radius: var(--radius) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: all var(--transition);
}

/* ---- Hero Carousel (IMLA-style) ---- */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 850px;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  z-index: 2;
}

.carousel-slide.exit-left {
  opacity: 0;
  transform: scale(0.98) translateX(-3%);
  z-index: 1;
}

.carousel-slide.exit-right {
  opacity: 0;
  transform: scale(0.98) translateX(3%);
  z-index: 1;
}

.carousel-slide.enter-right {
  opacity: 0;
  transform: scale(1.03) translateX(3%);
  z-index: 3;
}

.carousel-slide.enter-left {
  opacity: 0;
  transform: scale(1.03) translateX(-3%);
  z-index: 3;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 15, 35, 0.80) 0%,
    rgba(10, 15, 35, 0.55) 50%,
    rgba(10, 15, 35, 0.15) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 80px;
  max-width: 680px;
  z-index: 5;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 145, 178, 0.85);
  backdrop-filter: blur(4px);
  color: white;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  width: fit-content;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.1s;
}

.carousel-slide.active .slide-tag { animation-name: slideUp; }

.slide-content h1 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.2s;
}

.carousel-slide.active .slide-content h1 { animation-name: slideUp; }

.slide-content h1 span {
  color: #06b6d4;
}

.slide-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.3s;
}

.carousel-slide.active .slide-content p { animation-name: slideUp; }

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideUp 0.7s ease both;
  animation-delay: 0.4s;
}

.carousel-slide.active .slide-actions { animation-name: slideUp; }

.btn-slide-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-slide-primary:hover {
  background: #1ebe5e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.btn-slide-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.btn-slide-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

.slide-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideUp 0.7s ease both;
  animation-delay: 0.5s;
}

.carousel-slide.active .slide-stats { animation-name: slideUp; }

.slide-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #06b6d4;
  font-family: var(--font-heading);
}

.slide-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-bottom: 50px;
}

.carousel-btn:hover {
  background: rgba(8, 145, 178, 0.7);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev { left: 20px; }
.carousel-btn-next { right: 20px; }

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 80px;
  left: 8%;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  width: 30px;
  border-radius: 5px;
  background: #06b6d4;
}

/* Carousel Contact Bar (IMLA-style) */
.carousel-contact-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 145, 178, 0.90);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 14px 24px;
  z-index: 10;
  flex-wrap: wrap;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-bar-item:hover {
  color: white;
  opacity: 0.85;
}

.contact-bar-wp {
  background: rgba(37, 211, 102, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(37, 211, 102, 0.5);
}

.contact-bar-wp:hover {
  background: rgba(37, 211, 102, 0.4);
  opacity: 1;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 104px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 997;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe5e;
  color: white;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float-label {
  white-space: nowrap;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ---- CTA Banner WhatsApp button ---- */
.cta-wa-btn {
  background: #25D366 !important;
  color: white !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.cta-wa-btn:hover {
  background: #1ebe5e !important;
  color: white !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ---- Especialidades Section ---- */
.especialidades {
  background: var(--bg-white);
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-6);
}

.especialidad-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition);
  cursor: default;
}

.especialidad-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
  background: #f0faff;
}

.especialidad-card .icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(8, 145, 178, 0.08));
  color: var(--primary-light);
}

.especialidad-card h4 {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
  color: var(--fg);
}

.especialidad-card p {
  color: var(--fg-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ---- About / Perfil Section ---- */
.about {
  background: linear-gradient(160deg, #0d1e2e 0%, #0a1628 50%, #061220 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  aspect-ratio: 4/3;
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: var(--space-8);
}

.about-content h2 {
  margin-bottom: var(--space-4);
  color: #ffffff;
}

.about-content > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-6);
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.credential .cred-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.15);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 2px;
}

.credential strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 2px;
  color: #ffffff;
}

.credential span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

/* ---- Servicios Section ---- */
.servicios {
  background: linear-gradient(160deg, #061220 0%, #0a1628 100%);
}

.servicios .section-title {
  color: #ffffff;
}

.servicios .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.servicio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition);
}

.servicio-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
  background: rgba(6, 182, 212, 0.06);
}

.servicio-card .icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-5);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.servicio-card h4 {
  margin-bottom: var(--space-3);
  color: #ffffff;
}

.servicio-card p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
}

/* ---- CTA / Agendar Cita Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #0e7490 100%);
  color: white;
  text-align: center;
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::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='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
}

/* ---- Testimonios ---- */
.testimonios {
  background: var(--bg);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}

.testimonio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition);
}

.testimonio-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.testimonio-stars {
  color: var(--badge-gold);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.testimonio-text {
  color: var(--fg);
  font-style: italic;
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonio-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-heading);
  box-shadow: 0 3px 10px rgba(6, 182, 212, 0.3);
}

.testimonio-author strong {
  display: block;
  font-size: var(--text-sm);
}

.testimonio-author span {
  font-size: var(--text-xs);
  color: var(--fg-muted);
}

/* ---- Footer ---- */
.footer {
  background: linear-gradient(160deg, #06111d 0%, #0a0f23 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 3px solid var(--primary-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer h4 {
  color: white;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  padding: var(--space-1) 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.footer-contact .icon {
  color: var(--primary-light);
  min-width: 20px;
  filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.4));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  text-align: center;
  font-size: var(--text-sm);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero-carousel {
    height: 85vh;
    min-height: 520px;
  }

  .slide-content {
    padding: 0 6% 90px;
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .carousel-contact-bar {
    gap: 20px;
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  h2 { font-size: var(--text-2xl); }

  .hero-carousel {
    height: 80vh;
    min-height: 480px;
  }

  .slide-content {
    padding: 0 5% 100px;
  }

  .slide-stats {
    gap: 20px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .carousel-contact-bar {
    gap: 12px;
    padding: 10px 16px;
  }

  .contact-bar-hours {
    display: none;
  }

  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: var(--space-12) 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .especialidades-grid,
  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .testimonios-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 75vh;
    min-height: 440px;
  }

  .slide-content {
    padding: 0 4% 110px;
  }

  .slide-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-slide-primary,
  .btn-slide-outline {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

