/* Variables */
:root{
  --main-colorPrincipal: #EB7D10;
  --main-colSecundari  : #fad0b6;
}

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
}

/* FONDO GENERAL */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f4f4f4, #e9e9e9);
    color: #333;
}

/* CONTENEDOR PRINCIPAL */
.sectionPrincipal {
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

/* NÚMERO 404 */
.sectionPrincipal #title {
    font-size: 120px;
    font-weight: 700;
    color: #EB7D10;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* TITULO */
.sectionPrincipal #info h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* TEXTO */
.sectionPrincipal #info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* BOTÓN */
.sectionPrincipal #button  a button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #EB7D10;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    border: none;
}


/* ICONO OPCIONAL */
.error-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #EB7D10;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .sectionPrincipal #title {
        font-size: 80px;
    }

    .sectionPrincipal #info h2 {
        font-size: 22px;
    }

    .sectionPrincipal #info p {
        font-size: 14px;
    }
}