.elementor-53125 .elementor-element.elementor-element-88e1328{--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;}.elementor-53125 .elementor-element.elementor-element-d61a968{--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;}.elementor-53125 .elementor-element.elementor-element-dbdce8a{--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;}/* Start of your custom CSS rules for html, class: .elementor-element-baa37f2 */ :root {
    --primary-color: #1a2b3c; /* Azul Marino Profundo */
    --accent-color: #f39c12;  /* Naranja de Liderazgo */
    --bg-light: #f4f7f6;
    --text-main: #333;
    --text-muted: #555;
    --white: #ffffff;
}

.fucae-pla-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

/* --- HERO CON IMAGEN DE FONDO --- */
.pla-hero {
    background-color: var(--primary-color); /* Color de respaldo */
    position: relative; /* Para la capa de superposición */
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: 50px;
    overflow: hidden;
}

.pla-hero h1{
    color: white;
}

.pla-hero.has-bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Capa para oscurecer la imagen y asegurar legibilidad */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 43, 60, 0.7); /* Azul Marino al 70% de opacidad */
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2; /* Por encima de la capa overlay */
}

.pla-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 15px 0;
    letter-spacing: -1px;
}

.badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* --- SECCIONES GENERALES --- */
.pla-section { padding: 40px 20px; }

.mission-box {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* ESTILO PARA LOS ÍCONOS DE MISIÓN */
.mission-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.mission-icon {
    flex: 0 0 40px; /* Ancho fijo para el ícono */
}

.mission-icon img {
    width: 100%;
    height: auto;
}

.mission-text {
    font-size: 0.95rem;
}

/* --- CTA SESIÓN --- */
.pla-cta { text-align: center; padding: 70px 20px; }

.cta-card {
    background: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.cta-card h3{
    color: white;
}

.btn-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    margin-top: 25px;
    transition: all 0.2s ease;
}

.btn-cta:hover { 
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

/* --- ROLES GRID CON ICONOS --- */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.role-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.role-card:hover { 
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.card-head {
    color: white;
    padding: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.role-icon {
    flex: 0 0 50px; /* Ícono de rol más grande */
}

.role-icon img {
    width: 100%;
    height: auto;
}

.card-head h3 { margin: 0; font-size: 1.15rem; }

.price {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 5px;
}

.card-body { padding: 30px; }

.card-body h4 {
    margin-top: 20px;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    color: var(--primary-color);
}

.card-body ul {
    padding-left: 18px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.pla-final-footer {
    text-align: center;
    padding: 80px 20px;
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .pla-hero h1 { font-size: 2.2rem; }
    .mission-box { padding: 30px; }
    .card-head { flex-direction: column; text-align: center; gap: 10px; }
} /* End of your custom CSS rules */
/* Start of your custom CSS rules for html, class: .elementor-element-0f72750 */ /* Reutilizamos las variables del diseño anterior */

.info-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.text-content { flex: 1; min-width: 300px; }

.highlight-box {
    flex: 1;
    min-width: 300px;
    background: var(--primary-color);
    color: white;
    padding: 35px;
    border-radius: 20px;
}

.highlight-box ul { list-style: none; padding: 0; margin-top: 15px; }
.highlight-box li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.highlight-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}
.highlight-box h3{
    color: white;
}

.requirements-grid-bg { background-color: var(--bg-light); border-radius: 40px; }

/* Estilo de Pasos de Aplicación (Igual a las Role Cards) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
}

.step-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.step-body { padding: 20px; font-size: 0.9rem; }

/* Fechas y Cierre */
.dates-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.dates-list span {
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--accent-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
}

.final-text { margin-top: 40px; }
.final-text h2 { color: white; margin-bottom: 10px; }

/* Ajuste Responsivo */
@media (max-width: 768px) {
    .info-container { flex-direction: column; }
    .dates-list { flex-direction: column; align-items: center; }
}

/* Requisitos */
.req-card { text-align: center; }
.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.req-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.req-item span {
    display: block;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 800;
} /* End of your custom CSS rules */