
html, body {
  overflow-x: hidden;
  width: 100%;
}
/* ===== VARIABLES Y ESTILOS BASE ===== */
:root {
    --color-primary: #FFA630; /* Naranja vibrante */
    --color-primary-dark: #E67E22;
    --color-secondary: #1A2A3A; /* Azul oscuro */
    --color-dark: #121212; /* Fondo principal */
    --color-light: #E0E0E0; /* Texto claro */
    --color-gray: #1E1E1E; /* Gris oscuro */
    --color-text: #E0E0E0; /* Texto principal */
    --color-text-secondary: #AAAAAA; /* Texto secundario */
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-dark);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section {
    padding: 80px 0;
    background-color: var(--color-dark);
  }
  
/* ===== NAVEGACIÓN ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--color-gray);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  /* Añade este padding general para mover todo a la izquierda */
  padding-left: 15px; /* Ajusta este valor según necesites */
  box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 0; /* Elimina el padding izquierdo aquí */
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 15px); /* Compensa el padding del nav */
}

.logo {
  height: 50px;
  display: flex;
  align-items: center;
}

.logo a {
  display: flex; /* Cambiado a flex */
  height: 100%;
  align-items: center; /* Añadido */
}

.logo img {
  height: 150%; /* Reducido para mejor balance */
  width: auto;
  max-width: 180px;
  transition: opacity 0.3s ease;
  object-fit: contain;
  display: block; /* Añadido */
}

.nav-links {
  display: flex;
  gap: 30px;
  height: 100%; /* Añadido */ 
  margin-right: 150px;
}

.nav-links li {
  display: flex;
  align-items: center; /* Centrado vertical en cada item */
  height: 100%;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-light);
  font-weight: 600;
  transition: color 0.3s;
  padding: 0 5px; /* Ajustado padding */
  display: flex;
  align-items: center; /* Centrado vertical del texto */
  height: 100%;
  position: relative;
  top: 1px; /* Ajuste fino de alineación óptica */
}

.nav-links a:hover {
  color: var(--color-primary);
}

  /* ===== SECCIÓN HERO (INICIO) ===== */
.hero {
  position: relative;
  height: calc(100vh - 70px - 100px); /* Restamos 100px a la altura */
  min-height: 600px; /* Reducimos también la min-height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-light);
  overflow: hidden;
  margin-bottom: -50px; /* Esto "superpone" la siguiente sección */
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
  margin-top: 70px;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
  width: 100%; /* Asegura ancho completo */
  margin: 0 auto; /* Centrado horizontal */
}
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--color-text-secondary);
  }
  
/* ===== SECCIÓN CLASES ===== */
#clases.section {
  background: 
    linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.7)), 
    url('img/sala.jpg') center/cover no-repeat local;
  padding: 80px 0;
  position: relative;
  color: var(--color-text);
  image-rendering: crisp-edges;
  background-blend-mode: multiply;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.section-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.section-logo:hover {
  transform: scale(1.05);
}

#clases .container {
  position: relative;
  z-index: 2;
}

#clases .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-header h2 {
  display: flex;
  flex-direction: column;
  line-height: 1.0;
}

.title-part-1,
.title-part-2 {
  display: block;
  width: 100%;
  text-transform: uppercase;
}

.title-part-1 {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.title-part-2 {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 2.3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Lista de características */
#clases .feature-list {
  margin: 2rem 0;
  list-style: none;
}

#clases .feature-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--color-text);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

#clases .feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Carrusel de videos */
.video-carousel-container {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.video-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.video-container {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container.active {
  opacity: 1;
  z-index: 2;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
}

/* Controles del carrusel */
.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.carousel-arrow {
  width: 2.8rem;
  height: 2.8rem;
  background-color: var(--color-primary);
  color: var(--color-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.carousel-arrow:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.15);
}

.carousel-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.3));
}

.carousel-indicators {
  display: flex;
  gap: 0.8rem;
}

.carousel-indicator {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 200ms ease;
}

.carousel-indicator.active {
  background-color: var(--color-primary);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 166, 48, 0.6);
}

  

/* ===== SECCIÓN ESTUDIO ===== */
#estudio.section {
  background: 
    linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.7)), 
    url('img/control.jpg') center/cover no-repeat local;
  padding: 10px 0;
  position: relative;
  color: var(--color-text);
  background-attachment: scroll;
  background-blend-mode: multiply;
  overflow: hidden;
}

.section-logo {
  margin-top: -10px;
}

#estudio .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

#estudio .title-part-1 {
  font-weight: 600;
  color: var(--color-text);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

#estudio .title-part-2 {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 2.3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Lista de características */
#estudio .feature-list {
  margin: 2rem 0;
  list-style: none;
}

#estudio .feature-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--color-text);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

#estudio .feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

#estudio .feature-list li strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Grid layout */
#estudio .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

#estudio .reverse {
  direction: rtl;
}

#estudio .reverse > * {
  direction: ltr;
}

/* ===== CARRUSEL ESTUDIO CORREGIDO ===== */
#estudio .image-carousel-container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

#estudio .image-carousel {
  height: 0;
  padding-bottom: 75%; /* 806/1080 = ~75% (para relación 4:3) */
  position: relative;
  border-radius: 8px; /* Igual que el video-carousel */
  overflow: hidden; /* Asegura que las imágenes respeten el border-radius */
}

#estudio .image-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}

#estudio .image-item.active {
  opacity: 1;
}

#estudio .image-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px; /* Opcional: también puedes redondear las imágenes directamente */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); /* Añade sombra similar a los videos */
}

/* Controles - Igual que sección clases */
#estudio .carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

#estudio .carousel-arrow {
  width: 2.8rem;
  height: 2.8rem;
  background-color: var(--color-primary);
  color: var(--color-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#estudio .carousel-arrow:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.15);
}

#estudio .carousel-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.3));
}

#estudio .carousel-indicators {
  display: flex;
  gap: 0.8rem;
}

#estudio .carousel-indicator {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 200ms ease;
}

#estudio .carousel-indicator.active {
  background-color: var(--color-primary);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 166, 48, 0.6);
}

  
/* ===== SECCIÓN CONTACTO - VERSIÓN OPTIMIZADA ===== */
/* ===== SECCIÓN CONTACTO - VERSIÓN SIN ENLACES ===== */
.contact-section {
  padding: 40px 0;
  background: var(--color-dark);
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.contact-section .section-title {
  font-size: 2rem;
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  color: var(--color-primary);
}

.contact-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 0 auto;
}

.contact-section .top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Contenedores principales */
.contact-section .contact-info,
.contact-section .map-container {
  flex: 1;
  min-width: 300px;
}

.contact-section .contact-info {
  max-width: 500px;
}

/* Tarjeta de contacto */
.contact-section .contact-card {
  background: var(--color-gray);
  padding: 25px;
  border-radius: 8px;
  height: 100%;
  text-align: left;
}

.contact-section .contact-card h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* Items de contacto (versión sin enlaces) */
.contact-section .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-section .contact-item span:not(.icon) {
  color: var(--color-light);
  font-size: 0.95rem;
}

.contact-section .contact-item .icon {
  color: var(--color-primary);
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}

/* Mapa */
.contact-section .map-container {
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive (opcional) */
@media (max-width: 768px) {
  .contact-section .top-row {
    flex-direction: column;
  }
  
  .contact-section .map-container {
    min-height: 250px;
  }
}


/* Botón flotante de WhatsApp - Versión final pulida */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: attractive-animation 3s infinite ease-in-out;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

@keyframes attractive-animation {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 
                0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 
                0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 
                0 0 0 0 rgba(37, 211, 102, 0.4);
  }
}


  
  /* ===== ESTILOS COMPARTIDOS ===== */
  .section-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    border: 1px solid #333;
  }
  
  .section-image:hover {
    transform: scale(1.02);
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-primary);
    color: #121212;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    transition: all 0.3s;
  }
  
  .btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--color-primary);
  }
  
  .btn-outline:hover {
    background-color: var(--color-primary);
    color: #121212;
  }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
  }
  
  h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--color-primary);
  }
  
  .section.dark h2::after,
  .section.contact h2::after {
    background-color: var(--color-light);
  }

  /* ===== RESPONSIVE ===== */

/* ===== NAV ===== */
@media (max-width: 768px) {
  nav {
    height: 60px;
    overflow-x: auto; /* Permite scroll horizontal */
    -webkit-overflow-scrolling: touch; /* Scroll suave en iOS */
    background-color: var(--color-gray);
    position: fixed; /* Mantiene posición fixed */
    z-index: 1000;
  }

  .nav-container {
    padding: 10px 15px;
    justify-content: flex-start;
    align-items: center;
    min-width: fit-content; /* Evita compresión */
    height: 100%;
    box-shadow: -15px 0 0 var(--color-gray); /* Extensión visual derecha */
  }

  .logo {
    margin-right: 20px;
    position: sticky;
    left: 15px; /* Fija posición durante scroll */
    background: var(--color-gray);
    z-index: 2;
    padding-right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .logo img {
    max-width: 150px;
    height: auto;
    max-height: 40px; /* Control de altura */
  }

  .nav-links {
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 5px;
    min-width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 15px; /* Espacio de seguridad */
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 3px 0;
    white-space: nowrap;
    position: relative;
  }

  /* Oculta scrollbar pero mantiene funcionalidad */
  nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 554px) {
  .nav-container {
    padding-right: 20px; /* Extra padding para último elemento */
  }

  .nav-links a:last-child {
    margin-right: 5px; /* Asegura visibilidad */
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 10px 15px 10px 10px;
  }

  .logo {
    margin-right: 15px;
    left: 10px; /* Ajuste posición sticky */
  }

  .logo img {
    max-width: 130px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }
}


/* ===== HERO RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    min-height: 600px; /* Altura mínima reducida */
  }
  
  .hero h1 {
    font-size: 3rem; /* Tamaño de fuente reducido */
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto; /* Altura automática para contenido */
    min-height: 500px;
    padding: 100px 0 60px; /* Espacio arriba para nav y abajo */
  }
  
  .hero-image {
    margin-top: 60px; /* Ajuste a la altura del nav mobile */
  }
  
  .hero-content {
    padding: 0 25px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column; /* Botones en columna */
    gap: 15px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 450px;
    padding: 80px 0 50px;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
}

/* Ajuste especial para pantallas muy altas y estrechas */
@media (max-width: 400px) and (max-height: 700px) {
  .hero {
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* ===== CLASES ===== */

/* Versión móvil (tablets pequeñas y celulares) */
@media (max-width: 768px) {
  #clases.section {
    padding: 60px 0;
  }
  
  .section-header {
    /* Mantenemos flex row para logo y título en línea */
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left; /* Alineación izquierda */
  }
  
  .section-logo {
    width: 150px; /* Reducimos un poco el tamaño */
    height: 150px;
  }
  
  #clases .content-grid {
    grid-template-columns: 1fr; /* Apilamos solo el contenido inferior */
    gap: 30px;
  }
  
  .title-part-1 {
    font-size: 3rem; /* Ajustamos tamaño */
    margin-bottom: 0.3rem;
  }
  
  .title-part-2 {
    font-size: 3.6rem;
  }
  
  /* Resto de estilos igual que antes */
  #clases .feature-list {
    margin: 1.5rem 0;
  }
  
  #clases .feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    font-size: 0.95rem;
  }
  
  .video-carousel-container {
    max-width: 100%;
  }
  
  .carousel-controls {
    margin-top: 1rem;
  }
  
  .carousel-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* Versión móvil extra pequeña (celulares pequeños) */
@media (max-width: 480px) {
  #clases.section {
    padding: 50px 15px; /* Añadimos padding lateral */
  }
  
  .section-header {
    gap: 10px; /* Reducimos espacio entre logo y título */
  }
  
  .section-logo {
    width: 100px;
    height: 100px;
  }
  
  .title-part-1 {
    font-size:2rem;
  }
  
  .title-part-2 {
    font-size: 2.5rem;
  }
  
  /* Ajustes para texto muy pequeño */
  #clases .feature-list li {
    font-size: 0.85rem;
    padding-left: 1.5rem;
  }
  
  .carousel-arrow {
    width: 2.2rem;
    height: 2.2rem;
  }
  
  .carousel-arrow svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  
  .carousel-indicator {
    width: 0.7rem;
    height: 0.7rem;
  }
}

/* ===== ESTUDIO ===== */

/* Versión móvil (tablets pequeñas y celulares) */
@media (max-width: 768px) {
  #estudio.section {
    padding: 60px 0;
  }
  
  #estudio .section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
  }
  
  #estudio .section-logo {
    width: 150px;
    height: 150px;
  }
  
  #estudio .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  
  #estudio .title-part-1 {
    font-size: 3rem;
    margin-bottom: 0.3rem;
  }
  
  #estudio .title-part-2 {
    font-size: 2.8rem;
  }
  
  #estudio .feature-list {
    margin: 1.5rem 0;
  }
  
  #estudio .feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    font-size: 0.95rem;
  }
  
  #estudio .carousel {
    aspect-ratio: 16/9; /* Más ancho para móviles */
  }
  
  #estudio .carousel-control {
    padding: 10px 12px;
    font-size: 1rem;
  }
}

/* Versión móvil extra pequeña (celulares pequeños) */
@media (max-width: 480px) {
  #estudio.section {
    padding: 50px 15px;
  }
  
  #estudio .section-header {
    gap: 10px;
  }
  
  #estudio .section-logo {
    width: 100px;
    height: 100px;
  }
  
  #estudio .title-part-1 {
    font-size: 2rem;
  }
  
  #estudio .title-part-2 {
    font-size: 1.9rem;
  }
  
  #estudio .feature-list li {
    font-size: 0.85rem;
    padding-left: 1.5rem;
  }
  
  #estudio .carousel-control {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  
  #estudio .carousel-indicators button {
    width: 10px;
    height: 10px;
  }
}

/* Ajuste especial para pantallas muy estrechas */
@media (max-width: 360px) {
  #estudio .title-part-1 {
    font-size: 1.8rem;
  }
  
  #estudio .title-part-2 {
    font-size: 2.2rem;
  }
  
  #estudio .section-logo {
    width: 80px;
    height: 80px;
  }
}

/* ===== CONTACTO ===== */

