/* ============================================================================
PUBLICIDAD DIGITAL PAGE STYLES
Estilos específicos para la página de Publicidad Digital
============================================================================ */

/* ============================================================================
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-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;
}

/* ============================================================================
2. PLATFORMS SECTION - Tarjetas de plataformas
============================================================================ */
.platform-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

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

/* Colores específicos para cada plataforma */
.platform-card.google::before {
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.platform-card.facebook::before {
    background: linear-gradient(90deg, #1877F2, #42B72A);
}

.platform-card.linkedin::before {
    background: linear-gradient(90deg, #0A66C2, #00A0DC);
}

.platform-card.tiktok::before {
    background: linear-gradient(90deg, #000000, #69C9D0, #EE1D52);
}

.platform-card:hover.google {
    border-color: rgba(66, 133, 244, 0.3);
}

.platform-card:hover.facebook {
    border-color: rgba(24, 119, 242, 0.3);
}

.platform-card:hover.linkedin {
    border-color: rgba(10, 102, 194, 0.3);
}

.platform-card:hover.tiktok {
    border-color: rgba(0, 0, 0, 0.3);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
}

.platform-card.google .platform-icon {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(234, 67, 53, 0.1));
    color: #4285F4;
}

.platform-card.facebook .platform-icon {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(66, 183, 42, 0.1));
    color: #1877F2;
}

.platform-card.linkedin .platform-icon {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(0, 160, 220, 0.1));
    color: #0A66C2;
}

.platform-card.tiktok .platform-icon {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(238, 29, 82, 0.1));
    color: #000000;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
}

.platform-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.platform-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.platform-card li {
    padding: 0.4rem 0;
    color: var(--gray-dark);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.platform-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--violet-primary);
    font-weight: bold;
}
/* ============================================================================
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 PROCESS SECTION - Pasos del proceso
============================================================================ */
.process-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--violet-primary), var(--yellow-accent));
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}

.step-number {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--violet-primary), var(--yellow-accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step-content {
    flex: 1;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.process-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================================================
4. AD TYPES SECTION - Tipos de anuncios
============================================================================ */
.ad-type-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ad-type-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;
}

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

.ad-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.ad-type-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);
}

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

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

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

.ad-type-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(134, 4, 189, 0.1);
    color: var(--violet-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(134, 4, 189, 0.2);
}

/* ============================================================================
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.18); /* antes 0.1 */
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* backdrop-filter: blur(10px); */
    color: #ffffff;
}

.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. PRICING SECTION ESPECÍFICA
============================================================================ */
.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;
    max-width: 600px;
    margin: 0 auto;
}

.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.02);
    z-index: 2;
}

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

.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.6rem;
    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: 1rem;
    margin-bottom: 0;
}

.pricing-features {
    padding: 2rem;
}

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

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--violet-primary) !important;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

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

.custom-plan-text {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-top: 2rem;
}

.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;
}

/* ============================================================================
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-image img {
        transform: none;
        margin-top: 2rem;
    }
    
    .process-steps::before {
        left: 35px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .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;
    }
    
    .process-steps::before {
        left: 25px;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 1.25rem 1.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.95rem;
    }
}

/* 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-image img {
        transform: none;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        width: 100%;
    }
    
    .value-stats,
    .results-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .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;
    }
    
    .process-steps {
        max-width: 1000px;
    }
}