/* ===================================
   SERVICIOS DE TALLER - CLAF GOLDSMITH
   =================================== */

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 51, 71, 0.85) 0%, rgba(212, 165, 160, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: var(--weight-regular);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: var(--weight-light);
    color: var(--color-white);
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* INTRO SECTION */
.intro-section {
    background-color: var(--color-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* SERVICES SECTION */
.services-section {
    background-color: var(--color-beige);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.service-card {
    background: var(--color-white);
    border: var(--border-thin) solid rgba(10, 51, 71, 0.1);
    overflow: hidden;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 80px 1fr 400px;
    gap: var(--spacing-md);
    align-items: start;
    padding: var(--spacing-lg);
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: var(--weight-regular);
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--color-rose);
    font-size: 0.85rem;
}

.service-details {
    background: var(--color-beige);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.service-details p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.service-details p:last-child {
    margin-bottom: 0;
}

.service-details strong {
    color: var(--color-navy);
    font-weight: var(--weight-medium);
}

.service-image {
    width: 400px;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/* PROCESS SECTION */
.process-section {
    background-color: var(--color-white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-md);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + var(--spacing-lg));
    background: linear-gradient(to bottom, var(--color-rose), rgba(212, 165, 160, 0.3));
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-navy-dark) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--weight-medium);
    box-shadow: 0 4px 12px rgba(212, 165, 160, 0.4);
    flex-shrink: 0;
}

.step-content {
    background: var(--color-beige);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--color-rose);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: var(--weight-medium);
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #D4A5A0 0%, #0a3347 100%);
    padding: var(--spacing-xl) 0;
}

.cta-content {
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: var(--weight-regular);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.2rem;
    font-weight: var(--weight-light);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
    padding: 1rem 2.5rem;
}

.cta-buttons .btn:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

/* ===================================
   RESPONSIVE - SERVICIOS TALLER
   =================================== */

@media (max-width: 1024px) {
    .service-card {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        grid-row: 1;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-content {
        grid-column: 2;
        grid-row: 1;
    }
    
    .service-image {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        height: 300px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .intro-content {
        padding: 0 1rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .service-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .service-details {
        padding: 1rem;
    }
    
    .service-image {
        height: 250px;
        margin-top: 1rem;
    }
    
    .process-timeline {
        padding: 0;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 30px;
        top: 60px;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-step {
        grid-template-columns: 50px 1fr;
    }
    
    .process-step:not(:last-child)::after {
        left: 25px;
    }
}
