/* ============================================================================
SOCIAL MEDIA PAGE STYLES
Estilos específicos para la página de Social Media Management
============================================================================ */

/* ============================================================================
1. HERO SECTION ESPECÍFICA
============================================================================ */
.service-hero-section {
    padding: 140px 0 30px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../../../img/body-bg-1.webp');
}

.service-hero-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(134, 4, 189, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

/* Contenido del hero */
.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-hero-badge {
        display: inline-block;
    padding: 10px 24px;
    background: rgba(134, 4, 189, 0.1);
    color: var(--violet-primary);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(134, 4, 189, 0.15);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.service-hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.service-hero-title span {
    color: var(--violet-primary);
}

.service-hero-subtitle {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 520px;
}


.service-hero-image img {
    transform: perspective(1000px) rotateY(-5deg);
    border-radius: 20px;
    overflow: hidden;
}

/* Marcas de redes sociales */
.hero-brands {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-brands span {
    color: var(--gray-medium);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-brands i {
    font-size: 1.5rem;
    color: var(--gray-medium);
    transition: var(--transition);
    padding: 5px;
    border-radius: 8px;

}

.hero-brands i:hover {
    transform: translateY(-3px);
    color: var(--violet-primary);
}

.hero-brands .fa-instagram { color: #E4405F; }
.hero-brands .fa-facebook { color: #1877F2; }
.hero-brands .fa-tiktok { color: #000000; }
.hero-brands .fa-linkedin { color: #0A66C2; }
.hero-brands .fa-whatsapp { color: #25D366; }

/* ============================================================================
2. VALUE PROPOSITION
============================================================================ */
.value-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--violet-primary), var(--yellow-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================================================
3. OUR APPROACH CARDS
============================================================================ */
.approach-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--violet-primary), var(--yellow-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(134, 4, 189, 0.1), rgba(241, 179, 60, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--violet-primary);
    transition: var(--transition);
}

.approach-card:hover .approach-icon {
    background: linear-gradient(135deg, var(--violet-primary), var(--yellow-accent));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.approach-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================================================
4. PRICING SECTION
============================================================================ */
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(134, 4, 189, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--violet-primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--yellow-accent);
    color: var(--black);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-header {
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(134, 4, 189, 0.05), rgba(241, 179, 60, 0.05));
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 2.5rem;
}


.pricing-header p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--violet-primary) !important;
    font-size: 0.9rem;
}

.pricing-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-footer .btn-custom,
.pricing-footer .btn-custom-outline {
    width: 100%;
    max-width: 200px;
}

.custom-plan-text {
    color: var(--gray-medium);
    font-size: 1rem;
}

.custom-plan-text a {
    color: var(--violet-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.custom-plan-text a:hover {
    color: var(--violet-light);
    text-decoration: underline;
}

/* ============================================================================
5. RESULTS SECTION
============================================================================ */
#resultado {
    background-image: url('../../../img/body-bg-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-pre-title{
            display: inline-block;
    padding: 10px 24px;
    background: rgba(134, 4, 189, 0.1);
    color: var(--violet-primary);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(134, 4, 189, 0.15);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}




.results-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.results-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.results-stats .stat-number {
     font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--violet-primary), var(--yellow-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.results-stats .stat-label {
    color: var(--black);
}

/* Testimonial específico para resultados */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    border-left: 5px solid var(--violet-primary);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    font-family: serif;
    color: rgba(134, 4, 189, 0.1);
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ============================================================================
6. FAQ ESPECÍFICO
============================================================================ */
.faq-content {
    padding-right: 2rem;
}

.faq-cta-box {
    background: linear-gradient(135deg, var(--violet-primary), var(--yellow-accent));
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    color: white;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.faq-cta-box h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.faq-cta-box p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.faq-cta-box .btn-custom {
    background: white;
    color: var(--violet-primary);
    border: none;
}

.faq-cta-box .btn-custom:hover {
    background: var(--gray-light);
    color: var(--violet-primary);
}

/* ============================================================================
7. RESPONSIVE DESIGN
============================================================================ */

/* Tablets (≤991.98px) */
@media (max-width: 991.98px) {
    .service-hero-section {
        padding: 120px 0 40px;
    }
    
    .service-hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .service-hero-imag {
        transform: none;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Móviles (≤767.98px) */
@media (max-width: 767.98px) {
    .service-hero-section {
        padding: 120px 40px 0px 40px;
        text-align: center;
    }
    
    .service-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .service-hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-brands {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .value-stats,
    .results-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .faq-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* Móviles pequeños (≤575.98px) */
@media (max-width: 575.98px) {
    .service-hero-title {
        font-size: 1.8rem;
    }
    
    .service-hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

     .service-hero-imag img {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .value-stats,
    .results-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-badge {
        font-size: 0.7rem;
        padding: 6px 30px;
        right: -30px;
        top: 15px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Pantallas muy grandes (≥1400px) */
@media (min-width: 1400px) {
    .service-hero-title {
        font-size: 3.2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.25rem;
        max-width: 600px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}