/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000; /* Color de respaldo */
}

/* Contenedor principal con imagen de fondo */
.hero-section {
    background-image: url('../img/softspcontrol.jpg'); /* Cambia por tu imagen local si prefieres */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

/* Capa oscura para dar contraste al texto */
.overlay {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.title {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Tamaño fluido */
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.message {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Resaltado de la marca */
.brand {
    color: #00b4d8; /* Azul tecnológico */
    font-weight: 600;
}

/* Animación de entrada */
.fade-in {
    animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}