body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background-color: #06060c; /* Un negro más profundo */
}

/* Header / Hero Section */
#hero {
    width: 100%;
    height: 100vh;
    background: url('images/hero-bg.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* El Overlay ahora está por detrás del contenido (z-index: 1) */
#hero:before {
    content: "";
    background: rgba(6, 6, 12, 0.75); 
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

/* El contenedor de texto tiene z-index: 2 para estar al frente */
#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #a08aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

#hero h2 {
    color: #e0e0e0; /* Gris muy claro, casi blanco */
    font-size: 1.5rem;
    font-weight: 300;
}

.btn-get-started {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff !important;
    background: #6f42c1; /* Morado sólido */
    border: 2px solid #6f42c1;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 3; /* Asegura que sea clickable */
}

.btn-get-started:hover {
    background: transparent;
    color: #6f42c1 !important;
}

/* Applications Section */
.applications {
    padding: 80px 0;
    background-color: #06060c;
}

.section-title p {
    color: #d1d1d1 !important; /* Texto de descripción más claro */
    font-size: 1.1rem;
}

.dark-card {
    background-color: #12122b;
    border: 1px solid #2d2d5a;
    transition: all 0.3s ease;
}

.dark-card:hover {
    transform: translateY(-10px);
    border-color: #6f42c1;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}

.card-title {
    color: #ffffff !important;
    font-weight: 700;
}

/* Corregimos el text-muted para que se lea en negro */
.custom-muted {
    color: #b8b8c5 !important; 
}

.btn-outline-light {
    border-color: #6f42c1;
    color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

#footer {
    border-top: 1px solid #1a1936;
    padding: 20px 0;
}
