/* Estilos Generales */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f0f8ff, #e6e9f0);
    color: #333;
    margin: 0;
    padding: 0;
}


.skalata_mb{
    margin-bottom: 40px;
}

h1, h2 {
    text-align: center;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 20px;
}

p {
    line-height: 1.8;
    text-align: center;
    color: #555;
    margin-bottom: 15px;
}

/* Secciones */
section {
    padding: 50px 20px;
    margin-bottom: 70px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Botones */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #1e90ff;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ff5733;
    color: #fff;
}

.btn-secondary:hover {
    background: #cc441b;
    transform: translateY(-2px);
}

/* Iconos y Animaciones */
.ul_skalata {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    margin-left: 0px;
}

.ul_skalata .li_skalata {
    position: relative;
    margin: 15px 0;
    padding-left: 40px;
    font-size: 18px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ul_skalata .li_skalata:before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 5px;
    color: #1e90ff;
    font-size: 24px;
    animation: pulse 1s infinite;
}

/* Animaciones */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* FAQ Section */
.bg-gray-100 {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bg-gray-100 p {
    text-align: left;
    font-size: 16px;
}

.font-bold {
    color: #ff5733;
}

/* Video Tutorial */
iframe {
    border: 5px solid #1e90ff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

iframe:hover {
    transform: scale(1.05);
}

/* Navegación entre secciones */
.section-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.section-nav a {
    text-decoration: none;
    color: #1e90ff;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.section-nav a:hover {
    color: #0056b3;
    border-color: #0056b3;
}
