/* Estilos específicos para la página de Lipo Papada sin Cirugía */

.treatment-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/services/corporales/tratamientoTonificador.png');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 4rem 2rem;
}

.treatment-hero .hero-content {
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.treatment-hero h1 {
    font-family: var(--font-italiana);
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.treatment-hero .divider {
    width: 100px;
    height: 2px;
    background-color: var(--color-white);
    margin: 1.5rem auto;
}

.treatment-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.treatment-details {
    width: 80%;
    margin: 0 auto;
    padding: 6rem 2rem;
    background-color: var(--color-white);
}

.details-content h2 {
    font-family: var(--font-italiana);
    font-size: 2.5rem;
    color: var(--color-purple);
    margin-bottom: 1.5rem;
}

.details-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--color-purple);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.treatment-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 10px;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(147, 112, 219, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 112, 219, 0.2);
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.1);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--color-purple);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--color-black);
    margin: 0;
}

.treatment-cta {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-italiana);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-content .btn {
    background-color: var(--color-white);
    color: var(--color-purple);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .treatment-hero h1 {
        font-size: 3rem;
    }

    .treatment-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .details-content h2 {
        font-size: 2rem;
    }

    .treatment-hero {
        min-height: 60vh;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .treatment-hero h1 {
        font-size: 2.5rem;
    }

    .treatment-hero .hero-description {
        font-size: 1rem;
    }

    .details-content h2 {
        font-size: 1.8rem;
    }

    .treatment-details {
        padding: 4rem 1rem;
    }

    .benefits-grid {
        margin: 20px 0;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefit-item i {
        font-size: 2rem;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }
}

.robot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 20px;

    border-radius: 15px;
}

.robot-feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.robot-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #9c27b0, #7b1fa2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.robot-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.robot-feature:hover::before {
    transform: scaleX(1);
}

.robot-feature i {
    font-size: 2.5rem;
    color: var(--color-purple);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.robot-feature:hover i {
    transform: scale(1.1);
}

.robot-feature h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.robot-feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .robot-features {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .robot-feature {
        padding: 20px;
    }

    .robot-feature h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .robot-features {
        margin: 20px 0;
    }

    .robot-feature {
        padding: 15px;
    }

    .robot-feature i {
        font-size: 2rem;
    }

    .robot-feature h3 {
        font-size: 1.1rem;
    }

    .robot-feature p {
        font-size: 0.9rem;
    }
} 