/* 🔥 ELIMINAR TODOS LOS BORDES BLANCOS DE LA PÁGINA */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background: #000; /* o tu fondo principal */
    overflow-x: hidden; /* evita línea blanca por desplazamiento horizontal */
}


/* ===============================
   HERO — ESTILO MINIMAL PREMIUM
================================ */

.hero-soft {
    background: #000;
    padding: 140px 40px;
    color: #fff;
    display: flex;
    justify-content: center;
}

.hero-soft-container {
    max-width: 1450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* TEXTOS */
.hero-soft-text h1 {
    font-size: 52px;
    font-weight: 600;
    max-width: 700px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-family: "Raleway", sans-serif;
}

.hero-soft-text p {
    font-size: 18px;
    opacity: .75;
    max-width: 520px;
    line-height: 1.55;
    margin-bottom: 36px;
    font-family: "Raleway", sans-serif;
}

/* BOTONES */
.hero-soft-btns {
    display: flex;
    gap: 18px;
    font-family: "Raleway", sans-serif;
}

.soft-btn-primary {
    background: #01bebe;
    padding: 12px 28px;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .25s ease;
}

.soft-btn-primary:hover {
    background: #00ffff;
}

.soft-btn-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 12px 28px;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: .25s ease;
}

.soft-btn-secondary:hover {
    background: rgba(255,255,255,0.16);
}

/* ===============================
   CARDS MINIMALISTAS (Opción A)
================================ */

.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 350px;
    font-family: "Raleway", sans-serif;
}

.minicard {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 26px 28px;
    border-radius: 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.3s ease;
    cursor: pointer;
}

.minicard:hover {
    border-color: rgba(0, 225, 255, 0.18);
    background: rgba(4, 205, 255, 0.26);
    transform: translateY(-4px);
}

.minicard h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}

.minicard p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.45;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1120px) {
    .hero-soft-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
    }

    .cards-wrapper {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 720px) {
    .hero-soft-text h1 {
        font-size: 38px;
    }

    .hero-soft-text p {
        font-size: 16px;
    }

    .cards-wrapper {
        gap: 18px;
    }
}

/* ================================
   SECCIÓN 2 — PROCESO DE TRABAJO
================================ */

.soft-process {
    background: #000;
    padding: 120px 40px;
    display: flex;
    justify-content: center;
}

.soft-process-container {
    max-width: 1450px;
    width: 100%;
    text-align: left;
}

.soft-process h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 14px;
}

.process-sub {
    font-size: 18px;
    opacity: 0.7;
    max-width: 600px;
    margin-bottom: 60px;
}

/* GRID DE CARDS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.process-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 34px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.process-card:hover {
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

/* NUMERO */
.step-number {
    font-size: 28px;
    font-weight: 600;
    color: #00eeff;
    opacity: 0.9;
    display: inline-block;
    margin-bottom: 16px;
    font-family: "Raleway", sans-serif;
}

/* TÍTULO DE CARD */
.process-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Raleway", sans-serif;
}

/* TEXTO */
.process-card p {
    font-size: 15px;
    font-weight: 200;
    opacity: 0.7;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1020px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .soft-process h2 {
        font-size: 32px;
    }

    .process-sub {
        font-size: 16px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CORRECCIÓN: TEXTO EN BLANCO
================================ */

.soft-process h2,
.process-sub,
.process-card h3,
.process-card p,
.step-number {
    color: #ffffff !important;
    font-family: "Raleway", sans-serif;
}

/* Ajuste de opacidad para mantener minimalismo */
.process-sub,
.process-card p {
    opacity: 0.85;
}

.step-number {
    color: #00ffc8 !important; /* mantiene el acento naranja */
}




:root {
    /* GRADIENTE HERO */
    --hero-g1: #00ffdd;
    --hero-g2: #00fff2;
    --hero-g3: #00b395;

    --hero-size: 800px;
    --hero-blur: 240px;
    --hero-opacity: 0.35;

    --hero-x: 30%;
    --hero-y: -15%;

    --hero-speed: 2s;
    --hero-scale-min: 1;
    --hero-scale-max: 1.22;
}

/* =====================================================
   GRADIENTE ANIMADO PARA LA SECCIÓN HERO
===================================================== */

.hero-soft {
    position: relative;
    overflow: hidden;
}

.hero-soft::before {
    content: "";
    position: absolute;
    top: var(--hero-y);
    left: var(--hero-x);

    width: var(--hero-size);
    height: var(--hero-size);

    background: radial-gradient(circle,
        var(--hero-g1),
        var(--hero-g2) 40%,
        var(--hero-g3) 80%,
        transparent 100%
    );

    filter: blur(var(--hero-blur));
    opacity: var(--hero-opacity);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;

    animation: heroMove var(--hero-speed) ease-in-out infinite alternate;
}

/* Asegura que el contenido quede arriba */
.hero-soft * {
    position: relative;
    z-index: 2;
}

@keyframes heroMove {
    0% {
        transform: translate(-50%, -50%) scale(var(--hero-scale-min));
    }
    100% {
        transform: translate(-45%, -55%) scale(var(--hero-scale-max));
    }
}


:root {
    /* 🎨 Colores del gradiente de la Sección 2 */
    --proc-g1: #ff7a00;
    --proc-g2: #ff4d00;
    --proc-g3: #b30000;

    /* 🔥 Tamaño y forma del gradiente */
    --proc-size: 850px;
    --proc-blur: 220px;
    --proc-opacity: 0.35;

    /* 📍 Posición */
    --proc-x: 65%;
    --proc-y: 90%;

    /* 🎞 Animación */
    --proc-speed: 4s;
    --proc-scale-min: 1;
    --proc-scale-max: 1.22;
}
/* ==========================================
   GRADIENTE DE FONDO PARA LA SECCIÓN 2
========================================== */

.soft-process {
    position: relative;
    overflow: hidden;
}

.soft-process::before {
    content: "";
    position: absolute;
    top: var(--proc-y);
    left: var(--proc-x);
    width: var(--proc-size);
    height: var(--proc-size);

    background: radial-gradient(circle,
        var(--hero-g1),
        var(--hero-g2) 40%,
        var(--hero-g3) 80%,
        transparent 100%
    );

    filter: blur(var(--proc-blur));
    opacity: var(--proc-opacity);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;

    animation: procMove var(--proc-speed) ease-in-out infinite alternate;
}

/* Asegura que el contenido quede encima */
.soft-process * {
    position: relative;
    z-index: 2;
}

/* Animación del gradiente */
@keyframes procMove {
    0% {
        transform: translate(-50%, -50%) scale(var(--proc-scale-min));
    }
    100% {
        transform: translate(-45%, -55%) scale(var(--proc-scale-max));
    }
}
