/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Contenedor centrado */
.width_wrap {
    width: 1000px;
    max-width: 92%;
    margin: 0 auto;
}

/* HEADER */
header {
    position: relative;
    background-image: url("../img/cabecera-web-hosting.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}

/* Overlay gris muy claro */
header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

/* Asegura contenido sobre overlay */
header > * {
    position: relative;
    z-index: 2;
}

/* Franja blanca full width */
.marca {
    width: 100vw;
    background-color: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5; /* línea gris sutil */
}

/* Contenido interno centrado */
.marca .width_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marca img {
    width: 64px;
    height: auto;
    margin-right: 15px;
}

.marca h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

/* Bloque azul central */
.bloque-azul {
    background-color: #0099cc;
    max-width: 700px;
    margin: 60px auto 0 auto;
    padding: 35px 30px;
    border-radius: 6px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;

    /* Animación */
    opacity: 0;
    transform: translateY(25px);
    animation: aparecerSuave 1.2s ease-out forwards;
}

.bloque-azul p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.bloque-azul p:last-child {
    margin-bottom: 0;
}


.bloque-azul p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.bloque-azul p:last-child {
    margin-bottom: 0;
}

/* Animación de entrada suave */
@keyframes aparecerSuave {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sombra sutil animada */
.bloque-azul:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}


/* Footer */
footer .pie {
    background-color: #000;
    padding: 35px 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {

    .marca .width_wrap {
        flex-direction: column;
    }

    .marca img {
        margin-bottom: 12px;
        margin-right: 0;
    }

    .marca h1 {
        font-size: 22px;
        text-align: center;
    }

    .bloque-azul {
        margin-top: 50px;
        padding: 30px 20px;
    }

    .bloque-azul p {
        font-size: 16px;
    }
}