/* ============================================
   PROCESO - ESTILOS
   ============================================ */

/* HERO CON IMAGEN */
.hero-proceso {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* INTRO */
.intro-section {
    background: #1a1a1a;
    padding: 60px 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cdc3b3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* GRID DE PROCESO */
.process-grid {
    background: #1a1a1a;
    padding: 40px 0 80px;
}

.process-item {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 20px;
    border-bottom: 1px solid #333;
}

.process-item:last-child {
    border-bottom: none;
}

.process-num {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #5f7f7a;
    display: inline-block;
    margin-bottom: 15px;
}

.process-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #cdc3b3;
}

.process-item p {
    line-height: 1.7;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* CITA */
.cita-section {
    background: #2c2c2c;
    text-align: center;
    padding: 80px 20px;
}

.cita-section blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #cdc3b3;
    max-width: 700px;
    margin: 0 auto;
    quotes: none;
}

.molde-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.molde-gallery figure {
    margin: 0;
}

.molde-gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}

.molde-gallery img:hover {
    filter: grayscale(0%);
}

.molde-gallery figcaption {
    font-size: 0.82rem;
    opacity: 0.65;
    margin-top: 0.5rem;
    line-height: 1.4;
    font-style: italic;
}

@media (max-width: 640px) {
    .molde-gallery {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #cdc3b3;
}

.cta-section .btn-consult {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #5f7f7a;
    color: #5f7f7a;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s;
}

.cta-section .btn-consult:hover {
    background: #5f7f7a;
    color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-proceso {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .process-item h3 {
        font-size: 1.3rem;
    }

    .cita-section blockquote {
        font-size: 1.1rem;
    }
}