.diseno-web-section {
    position: relative;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    /* Asegúrate de que la ruta de la imagen sea correcta */
    background-image: url('/img/background-diseno-web.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Esto hace la imagen fija (paralaje) */
    background-repeat: no-repeat;
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.badge {
    color: #4D57FF;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-box h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: #1A1A1A;
}

.content-box p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #4D57FF;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: #1A1A1A;
    border: 1px solid #1A1A1A;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.info-servicio-section { padding: 80px 0; background: #0B0C10; color: #fff; }
.section-title-center { text-align: center; margin-bottom: 50px; font-size: 2.2rem; color: white;}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-card { background: #16171A; padding: 30px; border-radius: 15px; border: 1px solid #222; }
.info-card h3 { color: #4D57FF; margin-bottom: 25px; }
.info-card ul { list-style: none; padding: 0; }
.info-card li { margin-bottom: 15px; color: #ccc; display: flex; align-items: center; }

.target-box { text-align: center; background: #16171A; padding: 40px; border-radius: 15px; }
.target-list { 
    display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; 
    margin: 30px 0; font-size: 1.1rem; color: #fff;
}
.target-list span { background: #222; padding: 10px 20px; border-radius: 50px; }

.cta-bottom { margin-top: 40px; border-top: 1px solid #333; padding-top: 30px; }
.cta-bottom p { font-size: 1.5rem; font-style: italic; margin-bottom: 25px; }
.features-parallax-section {
    padding: 100px 0;
    background-image: url('/img/background-abstract-tech.jpeg'); /* Pon aquí tu imagen de fondo */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Efecto de oscuridad sobre la imagen */
.features-parallax-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 12, 16, 0.85); /* Tono oscuro profundo */
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: 0.4s;
}

.feature-glass-card:hover {
    background: rgba(77, 87, 255, 0.1);
    border-color: #4D57FF;
    box-shadow: 0 0 30px rgba(77, 87, 255, 0.3);
}

.feature-glass-card h3 { color: #fff; margin: 20px 0; }
.feature-glass-card p { color: #A0A5B5; line-height: 1.6; }
.icon { font-size: 3rem; margin-bottom: 10px; }

.cta-container { text-align: center; margin-top: 50px; position: relative; z-index: 1; }

.btn-primary-glow {
    background: #4D57FF;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(77, 87, 255, 0.5);
}