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

/* HEADER */
.contenedor {
    position: sticky;
    top: 0;
    z-index: 100;
}

.encabezado {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.85);
    height: 70px;
    border-bottom: 1px solid #29ffc9;
    color: #f4f4f2;
    position: relative;
}

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

.encabezado__contorno {
    color: #1ceb25;
}

.encabezado__botones {
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 18px;
    color: #f4f4f2;
    border-radius: 15px;
    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;
    text-transform: uppercase;
}

.boton--inicio:hover {
    outline: 2px solid #f4f4f2;
}

/* HERO POST */
.hero-post {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('https://image.slidesdocs.com/responsive-images/background/wall-natural-stone-city-texture-powerpoint-background_9a6baa7cec__960_540.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-post__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
}

.hero-post__texto {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffe900;
    padding: 20px;
}

.hero-post__texto h1 {
    font-size: 4rem;
    text-shadow: 0 0 15px #1ceb25;
    margin-bottom: 15px;
}

.hero-post__texto p {
    font-size: 1.5rem;
    text-shadow: 0 0 8px #000;
}

/* CONTENIDO DEL BLOG */
.blog-content {
    background-color: #eee9;
    padding: 50px 20px;
    width: 80%;
    margin: -100px auto 50px auto;
    box-shadow: 0 0 40px #1ceb25;
    border-radius: 15px;
}

.contenedor1__titulo {
    font-size: 35px;
    text-align: center;
    color: red;
    margin-bottom: 20px;
}

.contenedor1__titulo2 {
    font-size: 28px;
    color: red;
    margin-top: 25px;
    margin-bottom: 15px;
}

.contenedor1__texto {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contenedor1__final1 {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    color: #243a69;
    text-shadow: 0 0 5px #1ceb25;
    margin-top: 40px;
}

/* FOOTER */
.pie {
    background-color: #000;
    padding: 20px 0;
}

.final {
    display: flex;
    justify-content: center;
    gap: 50px;
    color: white;
    flex-wrap: wrap;
}

.final--1 {
    border-top: 1px solid white;
    padding-top: 10px;
    text-align: center;
}

.final--copi {
    text-transform: uppercase;
    color: white;
}
