/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/section.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Overlay oscuro más opaco */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* más opaco */
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* Logo */
.logo {
    width: 180px;
    margin-bottom: 40px;
}

/* Título llamativo */
h1 {
    color: #ff6600; /* Naranja Hormac */
    font-size: 4rem;
    font-weight: 900; /* muy gruesa */
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.8); /* sombra más marcada */
}

/* Texto descriptivo */
p {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.7); /* sombra más visible */
}

@media(max-width:768px){
    h1 { font-size: 3rem; }
    p { font-size: 1.2rem; }
    .logo { width: 150px; }
}

@media(max-width:480px){
    h1 { font-size: 2.2rem; }
    p { font-size: 1rem; }
    .logo { width: 120px; }
}
