/* Hero Section - Estilo Minale+Mann */
.service-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #000;
}

.service-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    animation: heroImageZoom 10s ease-out forwards;
}

@keyframes heroImageZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.service-hero:hover .service-hero__image {
    transform: scale(1.05);
}

.service-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.service-hero__content {
    position: relative;
    z-index: 3;
    padding: 80px;
    width: 100%;
    max-width: none;
}

.service-hero__category {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    opacity: 0; /* Inicialmente oculto */
}

.service-hero__location {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    opacity: 0; /* Inicialmente oculto */
}

.service-hero__title {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0; /* Inicialmente oculto */
}

.service-hero__description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0; /* Inicialmente oculto */
}

/* Botón READ MORE con efecto de relleno */
.btn-read-more {
    display: inline-block;
    padding: 15px 50px;
    opacity: 0; /* Inicialmente oculto */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    cursor: pointer;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: width 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    z-index: -1;
}

.btn-read-more:hover {
    color: #000;
}

.btn-read-more:hover::before {
    width: 100%;
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 20px;
    background: white;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.philosophy-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-visual::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.philosophy-visual::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 50%;
    filter: blur(30px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section__subtitle {
    font-size: 20px;
    color: #666;
    margin-top: 20px;
    font-weight: 300;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item:nth-child(even) {
    grid-template-columns: 400px 1fr;
}

.service-item:nth-child(even) .service-content {
    order: 2;
}

.service-item:nth-child(even) .service-image {
    order: 1;
}

.service-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.service-image {
    width: 100%;
    height: 250px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: 'Imagen próximamente';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Process Section - Minale+Mann Style */
.mm-process {
    padding: 120px 0;
    background: #0a0a0a;
    color: white;
}

.mm-process__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.mm-process__title {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mm-process__list {
    display: flex;
    flex-direction: column;
}

.mm-process__item {
    position: relative;
    margin-bottom: 80px;
}

.mm-process__item:last-child {
    margin-bottom: 0;
}

.mm-process__item:last-child .mm-process__line {
    display: none;
}

.mm-process__number {
    font-size: 48px;
    font-weight: 300;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.mm-process__name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.mm-process__description {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.mm-process__line {
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 1px;
    height: 40px;
    background: #333;
}

@media (max-width: 768px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-visual {
        height: 300px;
    }

    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-item:nth-child(even) .service-content,
    .service-item:nth-child(even) .service-image {
        order: unset;
    }
    
    .service-image {
        height: 250px;
    }

    .mm-process__container {
        padding: 0 20px;
    }
    
    .mm-process__title {
        font-size: 24px;
        margin-bottom: 60px;
    }
    
    .mm-process__number {
        font-size: 36px;
    }
    
    .mm-process__name {
        font-size: 20px;
    }
    
    .mm-process__item {
        margin-bottom: 60px;
    }
}