/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* ENCABEZADO */
.contenedor {
    position: sticky;
    top: 0;
    z-index: 30;
}

.encabezado {
    min-width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    color: #f4f4f2;
    border-bottom: 1px solid #1ceb25;
    z-index: 50;
}

.encabezado__titulo {
    font-size: 2rem;
    margin: 0 20px;
}

.encabezado__contorno {
    color: #1ceb25;
    text-shadow: 0 0 10px #1ceb25;
}

.encabezado__botones {
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    color: #f4f4f2;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.encabezado__botones:hover {
    background-color: #243a69;
    color: #1ceb25;
    box-shadow: 0 0 15px #1ceb25;
}

.boton--inicio {
    background-color: #1ceb25;
    color: #000;
    font-weight: bold;
}

/* HERO */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://bogota.gov.co/sites/default/files/styles/1050px/public/2023-09/diseno-sin-titulo-22.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: 1;
}

.hero__texto {
    position: relative;
    z-index: 2;
    color: #1ceb25;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: floatText 3s ease-in-out infinite;
}

.hero__texto h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #1ceb25;
}

.hero__texto p {
    font-size: 1.2rem;
    color: #fff;
}

/* ANIMACIÓN DE TEXTO */
@keyframes floatText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* CONTENIDO COACH */
.contenido-coach {
    padding: 50px 20px;
    background-color: #0a0d0e;
    color: #fff;
}

.descripcion {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.descripcion h2 {
    font-size: 2.5rem;
    color: #1ceb25;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #1ceb25;
}

.descripcion p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.imagen-coach {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 0 20px #1ceb25;
}

/* PIE DE PÁGINA */
.pie {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.final {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.final--copi {
    margin-top: 10px;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .hero {
        height: 400px;
    }
    .hero__texto h2 {
        font-size: 2rem;
    }
    .hero__texto p {
        font-size: 1rem;
    }
    .encabezado__titulo {
        font-size: 1.5rem;
    }
    .descripcion h2 {
        font-size: 2rem;
    }
}
