/* ==========================
   IMPORTACIÓN DE FUENTES Y ICONOS
=========================== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

/* ==========================
   ESTILOS GENERALES
=========================== */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding: 0;
    margin: 0;
}

/* ==========================
   HEADER Y FOOTER
=========================== */
.header-placeholder {
    height: 70px; /* Espacio reservado para el header */
    width: 100%;
}

.footer {
    height: 40px; /* Espacio reservado para el footer */
    width: 100%;
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
    line-height: 40px;
    position: absolute;
    bottom: 0;
}

/* ==========================
   CONTENEDOR PRINCIPAL DEL WIZARD
=========================== */
.wizard-container {
    max-width: 750px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    margin-top: 5vh; /* NO ESTÁ TOTALMENTE CENTRADO */
}

/* ==========================
   ESTILOS PARA LOS PASOS DEL WIZARD
=========================== */
.wizard-step {
    display: none;
}
.wizard-step.active {
    display: block;
}

/* ==========================
   BOTONES DE NAVEGACIÓN
=========================== */
.btn-container {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.btn {
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: #ff7e5f;
    border: none;
    color: #fff;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

/* ==========================
   LISTADO DE CARACTERÍSTICAS Y CASOS DE USO
=========================== */
.features, .use-cases {
    text-align: left;
    list-style: none;
    padding: 0;
}

.features li, .use-cases li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 8px;
}

.features li i, .use-cases li i {
    margin-right: 10px;
    color: #ff7e5f;
    font-size: 1.2rem;
}

/* ==========================
   SECCIÓN 5 - COMPARACIÓN ENTRE MÉTODOS
=========================== */
.comparison-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    align-items: start;
}

/* Contenedores de ventajas y desventajas */
.advantages, .disadvantages {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    backdrop-filter: blur(8px);
}

.advantages h3, .disadvantages h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 10px;
}

.feature-list li i {
    margin-right: 8px;
    font-size: 1.3rem;
}

/* Estilos específicos para cada bloque */
.advantages {
    border: 2px solid #28a745;
}

.advantages i {
    color: #28a745;
}

.disadvantages {
    border: 2px solid #dc3545;
}

.disadvantages i {
    color: #dc3545;
}

/* ==========================
   RESPONSIVIDAD PARA MÓVILES
=========================== */
@media (max-width: 768px) {
    body {
        padding-top: 8vh;
    }

    .header-placeholder {
        height: 50px;
    }

    .wizard-container {
        width: 95%;
        padding: 25px;
        margin-top: 5vh;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 15px;
        width: 100%;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer {
        height: 30px;
        font-size: 0.8rem;
        line-height: 30px;
    }
}
