            /* Estilo sección médicos */
            .red-medicos {
                background-color: transparent; /* Fondo invisible */
                padding: 40px 20px; /* Espaciado interno */
                max-width: 1200px; /* Ancho más amplio */
                margin: 20px auto; /* Centrado automático */
                text-align: center; /* Centrar texto */
                font-family: 'Arial', sans-serif; /* Tipografía clara y legible */
            }
            
            /* Encabezado */
            .red-medicos h2 {
                font-size: 32px; /* Tamaño de fuente más grande */
                color: #003366; /* Azul oscuro para el encabezado */
                margin-bottom: 20px;
                font-weight: bold;
            }
            
            /* Párrafos */
            .red-medicos p {
                font-size: 18px; /* Texto ligeramente más grande */
                line-height: 1.8; /* Separación entre líneas */
                color: #00509E; /* Azul medio para el texto */
                margin: 10px 0;
            }
            
            /* Texto destacado en cursiva */
            .red-medicos p i {
                color: #007BFF; /* Azul brillante para el texto destacado */
                font-style: italic;
            }
            
            /* Botón */
            .red-medicos .bot button {
                background-color: #007BFF; /* Azul brillante */
                color: white; /* Texto blanco */
                border: none;
                padding: 12px 30px; /* Botón más grande */
                font-size: 16px;
                border-radius: 5px;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-top: 15px;
            }
            
            .red-medicos .bot button:hover {
                background-color: #0056B3; /* Azul más oscuro en hover */
            }
            
            /* Responsividad */
            @media (max-width: 768px) {
                .red-medicos {
                    padding: 20px 10px;
                }
            
                .red-medicos h2 {
                    font-size: 28px;
                }
            
                .red-medicos p {
                    font-size: 16px;
                }
            
                .red-medicos .bot button {
                    font-size: 14px;
                    padding: 10px 25px;
                }
            }
            
            /* Estilo sección artículos Haifu */
            #articulos {
                text-align: center; /* Centrar el contenido */
                padding: 40px 20px;
                font-family: 'Arial', sans-serif;
                background-color: #f9f9f9; /* Fondo claro */
            }
            
            /* Título de la sección */
            #articulos h2 {
                font-size: 28px;
                color: #003366; /* Azul oscuro */
                margin-bottom: 10px;
                position: relative; /* Necesario para posicionar la línea */
            }
            

            /* Contenedor de artículos */
            #articulos .container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Diseño adaptable */
                gap: 20px; /* Espaciado entre elementos */
                justify-items: center;
                padding-top: 20px;
            }
            
            /* Artículos (figuras) */
            #articulos figure {
                text-align: center; /* Centrar contenido */
                max-width: 300px;
                margin: 0;
            }
            
            /* Imágenes */
            #articulos .imagen {
                width: 280px;
                height: 280px;
                border-radius: 10px;
                transition: transform 0.3s ease;
            }
            
            #articulos .imagen:hover {
                transform: scale(1.05); /* Ampliar ligeramente al pasar el mouse */
            }
            
            /* Descripciones */
            #articulos .descripcion {
                font-size: 14px;
                color: #555;
                margin-top: 10px;
            }
            
            /* Enlaces de los artículos */
            #articulos .link {
                text-decoration: none;
                color: inherit;
            }
            
            #articulos .link:hover .descripcion {
                color: #007BFF;
            }


    .masterclass-section {
  padding: 40px 20px;
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
}

.masterclass-section h2 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 30px;
}

.masterclass-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.video-card {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.video-info {
  text-align: left;
  width: 100%;
}

.video-info h3 {
  font-size: 18px;
  color: #003366;
  margin-bottom: 5px;
}

.video-info p {
  font-size: 16px;
  color: #00509E;
  line-height: 1.5;
}

/* Responsive 2 columnas en tablet */
@media screen and (max-width: 992px) {
  .video-card {
    max-width: 48%;
  }
}

/* Responsive 1 columna en celular */
@media screen and (max-width: 600px) {
  .video-card {
    max-width: 100%;
  }

  .video-card iframe {
    height: 200px;
  }

  .video-info h3 {
    font-size: 16px;
  }

  .video-info p {
    font-size: 14px;
  }
}



    /* ====== ESTILOS GENERALES ====== */
    body {
        font-family: 'Titillium Web', sans-serif;
        color: #4A306D;
        margin: 0;
        padding: 0;
        background-color: #fff;
    }
    
    /* ====== SECCIÓN PRINCIPAL ====== */
    .elementor-section {
        padding: 60px 4%; /* Menos padding lateral */
        max-width: 1600px;
        margin: 0 auto;
    }
    
    /* ====== TÍTULOS ====== */
    h1, h2, h3 {
        font-weight: 700;
        text-align: center;
        color: #4A306D;
        line-height: 1.3;
        margin-top: 0;
    }
    
    h1 {
        font-size: 44px;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    /* ====== PÁRRAFOS ====== */
    p {
        font-size: 20px;
        line-height: 1.7;
        color: #333;
        margin-bottom: 16px;
    }
    
    /* ====== CONTENEDORES FLEX ====== */
    .elementor-container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px; /* Menor separación entre columnas */
        max-width: 1300px;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    
    /* ====== COLUMNAS ====== */
    .elementor-col-50 {
        width: 48%;
        padding: 20px;
    }
    
    .elementor-col-50 img {
        width: 100%;
        max-width: 550px;
        display: block;
        margin: 0 auto;
    }
    
    /* ====== SUBTÍTULOS VERDES ====== */
    .elementor-widget-heading p {
        color: #3CB371;
        font-weight: 700;
        font-size: 24px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    /* ====== SECCIÓN DE EFECTOS ====== */
    #efectos {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: left;
        max-width: 1300px;
        margin: 0 auto;
        gap: 30px;
    }
    
    #efectos .elementor-col-50 {
        width: 48%;
        text-align: left;
    }
    
    /* ====== RESPONSIVE DESIGN ====== */
    @media screen and (max-width: 1200px) {
        .elementor-container,
        #efectos {
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
    
        .elementor-col-50 {
            width: 95%;
            text-align: center;
            padding: 15px;
        }
    
        .elementor-col-50 img {
            max-width: 90%;
        }
    }
    
    
    
    
    
    /* ==== DISTRIBUCIÓN EN ESCRITORIO ==== */
    .elementor-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: nowrap;
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .elementor-col-50 {
      width: 50%;
      padding: 20px;
    }
    
    .elementor-col-50 img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0;
      border-radius: 8px;
    }
    
    /* ==== AJUSTES EN MÓVILES ==== */
    @media screen and (max-width: 768px) {
      .elementor-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 5%;
      }
    
      .elementor-col-50 {
        width: 100%;
        padding: 10px 0;
        text-align: left;
      }
    
      .elementor-col-50 img {
        width: 100% !important;
        max-width: 100% !important;
        margin: 10px 0 !important;
      }
    
      h2, h3, p {
        text-align: left;
        padding: 0 4px;
      }
    }
    
    
    
    
    @media screen and (max-width: 768px) {
      /* TÍTULOS MÁS GRANDES */
      h1 {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: left;
      }
    
      h2 {
        font-size: 30px;
        margin-bottom: 18px;
        text-align: left;
      }
    
      h3 {
        font-size: 24px;
        margin-bottom: 14px;
        text-align: left;
      }
    
      /* PÁRRAFOS MÁS GRANDES Y ALINEADOS A LA IZQUIERDA */
      p {
        font-size: 19px;
        line-height: 1.75;
        padding: 0 10px;
        margin-bottom: 16px;
        text-align: left;
      }
    
      /* CONTENEDOR PRINCIPAL CON ESPACIO */
      .elementor-section {
        padding: 40px 6%;
      }
    
      /* COLUMNAS AJUSTADAS */
      .elementor-container,
      #efectos {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
      }
    
      .elementor-col-50 {
        width: 100%;
        padding: 10px 8px;
        text-align: left;
      }
    
      .elementor-widget-container {
        padding: 0 10px;
        text-align: left;
      }
    
    /* IMÁGENES MÁS GRANDES Y AJUSTADAS EN CELULAR */
    .elementor-col-50 img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 8px 0; /* Reduce espacio arriba y abajo */
      padding: 0;
      border-radius: 8px; /* Opcional: bordes suaves */
    }
    }

/* Listas dentro del body alineadas a la izquierda */
/* Lista principal con viñetas normales */
.custom-list {
  list-style-type: square;   /* Usa viñeta cuadrada como en la primera imagen */
  padding-left: 20px;
  text-align: left;
}

/* Sublista */
.sub-list {
  list-style: none;          /* Quitamos viñetas normales */
  padding-left: 25px;
  margin-top: 8px;
}

/* ✔ como viñetas alineadas */
.sub-list li.check {
  position: relative;
  padding-left: 25px;        /* espacio para el ✔ */
}

.sub-list li.check::before {
  content: "✔";              /* Palomita */
  color: black;              /* Igual que en la primera imagen */
  font-weight: bold;
  position: absolute;
  left: 0;
}







/* ESTILOS ADICIONALES */

/* ================================ */
/*   TIPOGRAFÍA SOLO EN SECCIONES   */
/* ================================ */

.red-medicos *, 
.elementor-section *, 
.about-area *, 
#masterclass *, 
#articulos * {
  font-family: 'Titillium Web', Arial, sans-serif !important;
  line-height: 1.6 !important;
  color: inherit !important;
  margin: 0;
  padding: 0;
}

/* 🔹 Celulares pequeños (hasta 480px) */
@media screen and (max-width: 480px) {
  .red-medicos *, 
  .elementor-section *, 
  .about-area *, 
  #masterclass *, 
  #articulos * {
    font-size: 14px !important;
  }
  .red-medicos h1, .elementor-section h1, .about-area h1, #masterclass h1, #articulos h1 { font-size: 22px !important; }
  .red-medicos h2, .elementor-section h2, .about-area h2, #masterclass h2, #articulos h2 { font-size: 20px !important; }
  .red-medicos h3, .elementor-section h3, .about-area h3, #masterclass h3, #articulos h3 { font-size: 18px !important; }
}

/* 🔹 Tablets (481px a 1024px) */
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .red-medicos *, 
  .elementor-section *, 
  .about-area *, 
  #masterclass *, 
  #articulos * {
    font-size: 16px !important;
  }
  .red-medicos h1, .elementor-section h1, .about-area h1, #masterclass h1, #articulos h1 { font-size: 28px !important; }
  .red-medicos h2, .elementor-section h2, .about-area h2, #masterclass h2, #articulos h2 { font-size: 24px !important; }
  .red-medicos h3, .elementor-section h3, .about-area h3, #masterclass h3, #articulos h3 { font-size: 20px !important; }
}

/* 🔹 Escritorio normal (1025px a 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .red-medicos *, 
  .elementor-section *, 
  .about-area *, 
  #masterclass *, 
  #articulos * {
    font-size: 18px !important;
  }
  .red-medicos h1, .elementor-section h1, .about-area h1, #masterclass h1, #articulos h1 { font-size: 34px !important; }
  .red-medicos h2, .elementor-section h2, .about-area h2, #masterclass h2, #articulos h2 { font-size: 28px !important; }
  .red-medicos h3, .elementor-section h3, .about-area h3, #masterclass h3, #articulos h3 { font-size: 22px !important; }
}

/* 🔹 Pantallas grandes (1441px a 2000px) */
@media screen and (min-width: 1441px) and (max-width: 2000px) {
  .red-medicos *, 
  .elementor-section *, 
  .about-area *, 
  #masterclass *, 
  #articulos * {
    font-size: 20px !important;
  }
  .red-medicos h1, .elementor-section h1, .about-area h1, #masterclass h1, #articulos h1 { font-size: 40px !important; }
  .red-medicos h2, .elementor-section h2, .about-area h2, #masterclass h2, #articulos h2 { font-size: 34px !important; }
  .red-medicos h3, .elementor-section h3, .about-area h3, #masterclass h3, #articulos h3 { font-size: 28px !important; }
}

/* 🔹 Ultra pantallas (más de 2000px) */
@media screen and (min-width: 2001px) {
  .red-medicos *, 
  .elementor-section *, 
  .about-area *, 
  #masterclass *, 
  #articulos * {
    font-size: 22px !important;
  }
  .red-medicos h1, .elementor-section h1, .about-area h1, #masterclass h1, #articulos h1 { font-size: 48px !important; }
  .red-medicos h2, .elementor-section h2, .about-area h2, #masterclass h2, #articulos h2 { font-size: 40px !important; }
  .red-medicos h3, .elementor-section h3, .about-area h3, #masterclass h3, #articulos h3 { font-size: 32px !important; }
}


/* Haifu Tragnin */
/* Lista alineada a la izquierda */
.training-list {
  list-style: none;          /* Quitamos viñetas normales */
  padding-left: 0;
  margin: 20px 0;
  text-align: left;
}

.training-list li {
  position: relative;
  padding-left: 25px;        /* Espacio para la palomita */
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Palomita en verde */
.training-list li::before {
  content: "✔";              /* Palomita */
  position: absolute;
  left: 0;
  top: 0;
  color: green;              /* Color verde visible */
  font-weight: bold;
  font-size: 18px;
}

/* Botón normal */
.normal-btn {
  display: inline-block !important;
  background-color: #0064ce !important; 
  color: #fff !important;
  padding: 8px 25px !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: bold !important;
  text-align: center !important;
  transition: background 0.3s ease !important;
  margin-top: 15px !important;
}

.normal-btn:hover {
  background-color: #0056b3 !important;
}





/* =========================== */
/*   REDIMENCION DE IMAGENES   */
/* =========================== */
/* Reducir todas las imágenes un 12% */
body img {
  transform: scale(0.88) !important;   /* 100% - 12% = 88% */
  transform-origin: center center;     /* reduce desde el centro */
  display: block;
  margin: 0 auto;                      /* mantiene centradas */
  transition: transform 0.3s ease-in-out; /* animación suave opcional */
}




/* =================================== */
/*   SECCIONES ADICIONALES ULTIMAS 3   */
/* =================================== */
/* Extender secciones a todo el ancho */
.about-area,
#masterclass,
#articulos {
  width: 100% !important;        /* ocupa toda la ventana */
  max-width: 100% !important;
  padding: 60px 5%;              /* padding lateral para que no pegue al borde */
  box-sizing: border-box;
  text-align: center;
  margin: 0 auto;
  font-family: 'Titillium Web', Arial, sans-serif !important;
}

/* Forzar que los .container dentro también ocupen ancho completo */
.about-area .container,
#masterclass .container,
#articulos .container {
  width: 100% !important;
  max-width: 1400px;             /* límite de ancho para pantallas muy grandes */
  margin: 0 auto;                /* mantiene el centrado */
}

/* Textos */
.about-area p,
#masterclass p,
#articulos p {
  max-width: 900px;              /* no permitir que el texto se haga demasiado largo */
  margin: 0 auto 20px auto;
  line-height: 1.7;
  font-size: 18px;
  text-align: center;
}

/* Responsividad */
@media screen and (max-width: 1024px) {
  .about-area p,
  #masterclass p,
  #articulos p {
    max-width: 100%;
    font-size: 16px;
  }
}

/* Sección Master Class centrada */
#masterclass {
  width: 100% !important;
  max-width: 1400px;        /* límite en pantallas muy grandes */
  margin: 0 auto;           /* centra el contenedor */
  padding: 50px 20px;
  text-align: center;
  font-family: 'Titillium Web', Arial, sans-serif !important;
}

/* Título */
#masterclass h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #003366;
  font-weight: 700;
}

/* Grid de videos */
#masterclass .masterclass-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* centra las tarjetas en la fila */
  gap: 30px;                 /* espacio entre videos */
  max-width: 1200px;
  margin: 0 auto;
}

/* Tarjetas de video */
#masterclass .video-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  max-width: 360px;          /* ancho fijo de cada tarjeta */
  flex: 1 1 300px;           /* adaptables en filas */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Ajustar iframe */
#masterclass .video-card iframe {
  width: 100%;
  border-radius: 8px;
}

/* Info de cada video */
#masterclass .video-info {
  margin-top: 12px;
}

#masterclass .video-info h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 8px;
}

#masterclass .video-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsividad */
@media screen and (max-width: 768px) {
  #masterclass h2 {
    font-size: 2rem;
  }
  #masterclass .video-card {
    max-width: 100%;
  }
  #masterclass .video-info h3 {
    font-size: 1rem;
  }
  #masterclass .video-info p {
    font-size: 0.9rem;
  }
}
