/* =====================================================
   PÁGINA DE SERVICIOS: BREATHING MINIMALISM STYLE
   ===================================================== */

.velvz-services {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    z-index: 10;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.velvz-services__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

/* =====================================================
   HEADER DE SERVICIOS
   ===================================================== */

.velvz-services__header {
    text-align: center;
    margin-bottom: 4rem;
}

.velvz-services__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 51, 51, 0.05);
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.2s forwards;
}

.velvz-services__badge-dot {
    width: 6px;
    height: 6px;
    background: #4facfe; /* Azul celeste para servicios */
    border-radius: 50%;
    animation: velvzBadgePulse 2s ease-in-out infinite;
}

.velvz-services__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.4s forwards;
}

.velvz-services__subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 60ch;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.6s forwards;
}

/* =====================================================
   GRID DE SERVICIOS
   ===================================================== */

.velvz-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.8s forwards;
    width: 100%;
    box-sizing: border-box;
}

.velvz-services__card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    animation: velvzLandingBreathe 12s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    z-index: 1;
}

.velvz-services__card:nth-child(1) { animation-delay: 0s; }
.velvz-services__card:nth-child(2) { animation-delay: 3s; }
.velvz-services__card:nth-child(3) { animation-delay: 6s; }

.velvz-services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* TARJETA DESTACADA */
.velvz-services__card--featured {
    border: 2px solid rgba(102, 126, 234, 0.4);
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
}

.velvz-services__card--featured:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

/* TARJETAS PRÓXIMAMENTE */
.velvz-services__card--coming-soon {
    opacity: 0.85;
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.velvz-services__card--coming-soon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.velvz-services__card--coming-soon > * {
    position: relative;
    z-index: 2;
}

/* BADGES DE TARJETAS */
.velvz-services__card-badge {
    position: absolute;
    top: -8px;
    right: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.velvz-services__card-badge--soon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 16px rgba(240, 147, 251, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

/* HEADER DE TARJETA */
.velvz-services__card-header {
    margin-bottom: 2rem;
}

.velvz-services__card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.velvz-services__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.velvz-services__card-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* CARACTERÍSTICAS DE SERVICIOS */
.velvz-services__card-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.velvz-services__feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 12px;
}

.velvz-services__feature:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.velvz-services__feature--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.velvz-services__feature--disabled:hover {
    background: transparent;
    transform: none;
}

.velvz-services__feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.velvz-services__feature-content {
    flex: 1;
}

.velvz-services__feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.velvz-services__feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* ACCIONES DE TARJETA */
.velvz-services__card-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.velvz-services__cta {
    position: relative;
    border: none;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    text-decoration: none;
}

.velvz-services__cta--primary {
    background: #333;
    color: white;
}

.velvz-services__cta--primary:hover {
    background: #555;
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.2);
}

.velvz-services__cta--secondary {
    background: rgba(51, 51, 51, 0.05);
    color: #333;
    border: 1px solid rgba(51, 51, 51, 0.1);
}

.velvz-services__cta--secondary:hover {
    background: rgba(51, 51, 51, 0.1);
}

.velvz-services__cta--disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
}

.velvz-services__cta--disabled:hover {
    background: #ccc;
    box-shadow: none;
}

.velvz-services__cta-text {
    position: relative;
    z-index: 2;
}

.velvz-services__cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.velvz-services__cta--primary:hover .velvz-services__cta-shine {
    left: 100%;
}

.velvz-services__cta-icon {
    font-size: 0.9rem;
}

/* =====================================================
   SECCIÓN PROCESO
   ===================================================== */

.velvz-services__process {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 3rem;
    margin-bottom: 6rem;
    animation: velvzLandingBreathe 10s ease-in-out infinite;
    animation-delay: 5s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.4s forwards, velvzLandingBreathe 10s ease-in-out infinite;
}

.velvz-services__process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.velvz-services__process-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.velvz-services__process-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 50ch;
    margin: 0 auto;
}

.velvz-services__process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.velvz-services__step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: velvzStepAppear 0.6s ease-out forwards;
}

.velvz-services__step:nth-child(1) { animation-delay: 0.6s; }
.velvz-services__step:nth-child(2) { animation-delay: 0.7s; }
.velvz-services__step:nth-child(3) { animation-delay: 0.8s; }
.velvz-services__step:nth-child(4) { animation-delay: 0.9s; }

.velvz-services__step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.velvz-services__step-content {
    flex: 1;
}

.velvz-services__step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.velvz-services__step-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =====================================================
   CTA FINAL
   ===================================================== */

.velvz-services__final-cta {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    animation: velvzLandingBreathe 10s ease-in-out infinite;
    animation-delay: 8s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: velvzFadeInUp 0.8s ease-out 0.6s forwards, velvzLandingBreathe 10s ease-in-out infinite;
}

.velvz-services__final-cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.velvz-services__final-cta-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 50ch;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.velvz-services__final-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   AMBIENT ELEMENTS
   ===================================================== */

.velvz-services__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.velvz-services__ambient-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.015) 0%, transparent 70%);
    border-radius: 50%;
    animation: velvzLandingPulse 15s ease-in-out infinite;
}

.velvz-services__ambient-pulse:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.velvz-services__ambient-pulse:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.velvz-services__ambient-pulse:nth-child(3) {
    top: 60%;
    left: 70%;
    animation-delay: 10s;
}

.velvz-services__ambient-pulse:nth-child(4) {
    bottom: 50%;
    left: 20%;
    animation-delay: 7.5s;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .velvz-services__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .velvz-services__card {
        padding: 2rem;
        min-height: 400px;
    }

    .velvz-services__process {
        padding: 2.5rem;
    }

    .velvz-services__final-cta {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .velvz-services {
        padding: 6rem 0 3rem;
    }

    .velvz-services__container {
        padding: 0 1rem;
    }

    .velvz-services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .velvz-services__card {
        padding: 1.5rem;
        min-height: 400px;
        border-radius: 20px;
    }

    .velvz-services__card-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .velvz-services__process {
        padding: 2rem;
        border-radius: 20px;
    }

    .velvz-services__process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .velvz-services__process-title {
        font-size: 2rem;
    }

    .velvz-services__final-cta {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .velvz-services__final-cta-title {
        font-size: 2rem;
    }

    .velvz-services__final-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .velvz-services__final-cta-actions .velvz-services__cta {
        max-width: 300px;
        width: 100%;
    }

    .velvz-services__ambient-pulse {
        display: none;
    }
}

@media (max-width: 480px) {
    .velvz-services {
        padding: 4rem 0 2rem;
    }

    .velvz-services__container {
        padding: 0 0.5rem;
    }

    .velvz-services__card {
        padding: 1.25rem;
        min-height: 350px;
        border-radius: 18px;
    }

    .velvz-services__card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .velvz-services__card-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .velvz-services__card-description {
        font-size: 0.9rem;
    }

    .velvz-services__feature {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .velvz-services__feature-icon {
        font-size: 1.3rem;
    }

    .velvz-services__feature-content h4 {
        font-size: 0.9rem;
    }

    .velvz-services__feature-content p {
        font-size: 0.8rem;
    }

    .velvz-services__process {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .velvz-services__process-title {
        font-size: 1.8rem;
    }

    .velvz-services__step {
        gap: 1rem;
    }

    .velvz-services__step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .velvz-services__step-title {
        font-size: 1.1rem;
    }

    .velvz-services__step-description {
        font-size: 0.9rem;
    }

    .velvz-services__final-cta {
        padding: 2rem 1.25rem;
        border-radius: 18px;
    }

    .velvz-services__final-cta-title {
        font-size: 1.8rem;
    }

    .velvz-services__final-cta-description {
        font-size: 1rem;
    }

    .velvz-services__cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* =====================================================
   ANIMACIONES
   ===================================================== */

@keyframes velvzStepAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}