.elementor-13 .elementor-element.elementor-element-ccfd188{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-13 .elementor-element.elementor-element-cf4e4ee{--display:grid;--e-con-grid-template-columns:repeat(2, 1fr);--e-con-grid-template-rows:repeat(3, 1fr);--gap:30px 30px;--row-gap:30px;--column-gap:30px;--grid-auto-flow:row;--align-items:start;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0em;--padding-bottom:0em;--padding-left:0em;--padding-right:0em;}.elementor-13 .elementor-element.elementor-element-19b05c5{padding:0em 0em 0em 0em;}.elementor-13 .elementor-element.elementor-element-8fe468c{padding:4em 0em 0em 0em;}.elementor-13 .elementor-element.elementor-element-98c09ed{padding:4em 0em 0em 0em;}@media(max-width:1024px){.elementor-13 .elementor-element.elementor-element-cf4e4ee{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-13 .elementor-element.elementor-element-cf4e4ee{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}.elementor-13 .elementor-element.elementor-element-8fe468c{padding:0em 0em 0em 0em;}.elementor-13 .elementor-element.elementor-element-98c09ed{margin:-10em 0em calc(var(--kit-widget-spacing, 0px) + 0em) 0em;padding:0em 0em 0em 0em;}}/* Start custom CSS for container, class: .elementor-element-ccfd188 *//* COPIAR Y PEGAR EN TU HOJA DE ESTILOS O PERSONALIZADOR 
   Asegurate de que el contenedor principal tenga la clase: levels-wrapper
*/

/* --- ESTILOS GENERALES --- */
.levels-wrapper {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    padding: 60px 20px;
    color: #333;
}

.levels-header {
    text-align: center;
    margin-bottom: 60px;
}

.levels-header p {
    font-family: 'Georgia', serif;
    font-size: 22px;
    color: #242B4D; /* Azul Navy */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* --- GRILLA DE TARJETAS --- */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto; 
}

/* --- DISEÑO DE LA TARJETA --- */
.level-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    
    /* FLEXBOX: Para controlar la distribución interna */
    display: flex;
    flex-direction: column;
}

/* REGLA DE ORO: Altura mínima en PC para igualar tarjetas */
@media (min-width: 768px) {
    .level-card {
        height: 100%;      /* Intenta llenar el contenedor */
        min-height: 750px; /* Fuerza una altura igual para todas (ajustar si es necesario) */
    }
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #C5B080; 
}

/* Imagen */
.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0; /* Que la imagen no se achique nunca */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.level-card:hover .card-image img {
    transform: scale(1.05);
}

/* Badge de Edad */
.age-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #C5B080; 
    color: #242B4D;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Contenido (Flexible) */
.card-content {
    padding: 30px;
    /* Ocupa todo el espacio disponible hasta el final de la tarjeta */
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.card-content h2 {
    font-family: 'Georgia', serif;
    color: #242B4D;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.level-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* --- HORARIOS --- */
.schedules-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.location-block {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #242B4D;
}

.location-block.fisherton {
    border-left-color: #C5B080;
}

.location-title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #242B4D;
}

.location-title svg {
    width: 16px;
    height: 16px;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    font-size: 13px;
    color: #555;
    padding: 4px 0;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    justify-content: space-between;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list li strong {
    color: #333;
    margin-right: 5px;
}

/* Botón (Empujado al fondo) */
.card-action {
    text-align: center;
    /* MAGIA: Esto empuja el botón al final absoluto de la tarjeta */
    margin-top: auto; 
    padding-top: 20px;
}

.btn-card {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: white;
    border: 1px solid #242B4D;
    color: #242B4D;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-card:hover {
    background-color: #242B4D;
    color: white;
}

/* --- UNIFORMES --- */
.uniforms-section {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid #e6d5a8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    position: relative;
}
 
.uniforms-section::before {
    content: 'PREVENTA EXCLUSIVA';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #982B35;
    color: white;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.uniforms-icon {
    width: 50px;
    height: 50px;
    background-color: #f9f4e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #C5B080;
}

.uniforms-title {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: #242B4D;
    margin: 0 0 15px 0;
}

.uniforms-text {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.uniforms-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-uniform {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #242B4D;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 4px 15px rgba(36, 43, 77, 0.3);
}

.btn-uniform:hover {
    background-color: #982B35;
    transform: translateY(-2px);
    color: white;
}

.btn-uniform.babys {
    background-color: #C5B080;
    color: #242B4D;
    box-shadow: 0 4px 15px rgba(197, 176, 128, 0.4);
}

.btn-uniform.babys:hover {
    background-color: #b09b6a;
    color: white;
}

@media (max-width: 768px) {
    .levels-grid { grid-template-columns: 1fr; }
    .levels-header p { font-size: 18px; }
    .uniforms-actions { flex-direction: column; width: 100%; }
    .btn-uniform { width: 100%; justify-content: center; }
}/* End custom CSS */