/* ========================================
   Servicios Page Styles
   ======================================== */

/* Hero Servicios */
.services-hero {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    padding: 0 20px;
    position: relative;
}

.s-hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.s-eyebrow {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.s-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--jz-white);
    font-weight: 900;
    line-height: 1.1;
    margin: 15px 0 25px;
}

.s-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Servicios Detalle Section */
.services-detail-section {
    padding: 100px 20px;
    background: transparent;
}

.s-container {
    max-width: 1200px;
    margin: 0 auto;
}

.s-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.s-row.reverse {
    flex-direction: row-reverse;
}

.s-text-content {
    flex: 1;
}

.s-number {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.s-service-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--jz-white);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.s-service-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.s-feature-list {
    list-style: none;
    padding: 0;
}

.s-feature-list li {
    color: var(--jz-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1rem;
}

.s-feature-list span {
    color: var(--jz-lime);
    font-weight: 900;
    font-size: 1.2rem;
}

.s-visual-content {
    flex: 1;
}

.s-image-box {
    width: 100%;
    height: 450px;
    background: var(--jz-glass);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.s-image-box:hover {
    transform: scale(1.02);
}

.border-lime:hover {
    border-color: var(--jz-lime);
    box-shadow: 0 0 30px rgba(221, 255, 25, 0.1);
}

.border-teal:hover {
    border-color: var(--jz-teal);
    box-shadow: 0 0 30px rgba(3, 180, 178, 0.1);
}

.s-placeholder-img {
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.05);
}

/* Metodología Section */
.methodology-section {
    padding: 100px 20px;
    background: transparent;
}

.m-container {
    max-width: 1200px;
    margin: 0 auto;
}

.m-header {
    text-align: center;
    margin-bottom: 70px;
}

.m-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 13px;
}

.m-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--jz-white);
    font-weight: 900;
    margin-top: 15px;
    line-height: 1.1;
}

.m-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.m-step-card {
    background: var(--jz-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 32px;
    position: relative;
    transition: all 0.4s ease;
}

.m-step-card:hover {
    background: var(--jz-glass-light);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.m-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.m-step-card h3 {
    color: var(--jz-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.m-step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.m-step-line {
    position: absolute;
    top: 70px;
    right: -40px;
    width: 50px;
    height: 2px;
    opacity: 0.2;
    z-index: 1;
}

/* FAQ Section */
.faq-section-jzds {
    padding: 100px 20px;
    background: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 13px;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--jz-white);
    font-weight: 900;
    margin-top: 15px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--jz-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--jz-teal);
    background: rgba(3, 180, 178, 0.02);
}

.highlight-faq {
    border-color: rgba(221, 255, 25, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--jz-white);
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    color: var(--jz-lime);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 20px;
    opacity: 1;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.faq-footer {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.faq-footer a {
    text-decoration: none;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .s-row, .s-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
        text-align: center;
    }

    .s-feature-list li {
        justify-content: center;
    }

    .s-image-box {
        height: 300px;
    }

    .m-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .m-step-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .m-steps-grid {
        grid-template-columns: 1fr;
    }
}

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