/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(254, 63, 64, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(254, 63, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-tag {
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(254, 63, 64, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 63, 64, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 63, 64, 0.5);
    box-shadow: 0 20px 40px rgba(254, 63, 64, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-graphic {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Social ADS Graphics */
.screen-stack {
    position: relative;
    width: 100px;
    height: 60px;
}

.screen {
    position: absolute;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.3);
}

.screen-back {
    width: 70px;
    height: 45px;
    bottom: 0;
    left: 15px;
    z-index: 1;
}

.screen-middle {
    width: 80px;
    height: 50px;
    bottom: 5px;
    left: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-front {
    width: 90px;
    height: 55px;
    bottom: 10px;
    left: 5px;
    z-index: 3;
}

.person-icon {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}

.person-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #FE3F40;
    border-radius: 50%;
}

/* Social Media Management Graphics */
.social-management-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
    max-width: 140px;
}

.social-management-icons .management-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: management-pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.2);
}

.social-management-icons .management-icon:nth-child(1) { animation-delay: 0s; }
.social-management-icons .management-icon:nth-child(2) { animation-delay: 0.5s; }
.social-management-icons .management-icon:nth-child(3) { animation-delay: 1s; }
.social-management-icons .management-icon:nth-child(4) { animation-delay: 1.5s; }
.social-management-icons .management-icon:nth-child(5) { animation-delay: 2s; }
.social-management-icons .management-icon:nth-child(6) { animation-delay: 2.5s; }

.social-management-icons .management-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(254, 63, 64, 0.4);
}

/* Press Media Graphics */
.browser-window {
    width: 100px;
    height: 70px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.browser-header {
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.browser-dots {
    display: flex;
    gap: 4px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.browser-content {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chart-circle {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: relative;
}

.chart-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #FE3F40;
    border-radius: 50%;
}

.text-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.text-line {
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.text-line:nth-child(1) { width: 80%; }
.text-line:nth-child(2) { width: 60%; }
.text-line:nth-child(3) { width: 90%; }

/* Community Management Graphics */
.community-layout {
    position: relative;
    width: 100px;
    height: 80px;
}

.central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    z-index: 3;
}

.profile-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.profile-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 50%;
    border: 2px solid #1a1a1a;
}

.profile-circle:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.profile-circle:nth-child(2) { top: 20%; right: 0; }
.profile-circle:nth-child(3) { bottom: 20%; right: 0; }
.profile-circle:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.profile-circle:nth-child(5) { bottom: 20%; left: 0; }

/* Content Marketing Graphics */
.content-button {
    position: relative;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    padding: 12px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.3);
}

.mouse-cursor {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #FE3F40;
}

.mouse-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #FE3F40;
    border-radius: 50%;
}

/* Event Management Graphics */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 80px;
    height: 60px;
}

.event-item {
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 4px;
    position: relative;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* Agregar después de la línea 200 */

/* Responsive Design Mejorado */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-graphic {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        padding: 0 10px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-graphic {
        height: 80px;
    }
}

/* Nuevos iconos específicos para cada servicio */

/* Generación de Contenido */
.content-creation-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
    max-width: 140px;
}

.content-creation-icons .content-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: content-float 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.2);
}

.content-creation-icons .content-icon:nth-child(1) { animation-delay: 0s; }
.content-creation-icons .content-icon:nth-child(2) { animation-delay: 0.5s; }
.content-creation-icons .content-icon:nth-child(3) { animation-delay: 1s; }
.content-creation-icons .content-icon:nth-child(4) { animation-delay: 1.5s; }
.content-creation-icons .content-icon:nth-child(5) { animation-delay: 2s; }
.content-creation-icons .content-icon:nth-child(6) { animation-delay: 2.5s; }

.content-creation-icons .content-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(254, 63, 64, 0.4);
}

/* Social Ads (Meta y Google) */
.social-ads-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
    max-width: 140px;
}

.social-ads-icons .ads-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: ads-target 2.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.2);
}

.social-ads-icons .ads-icon:nth-child(1) { animation-delay: 0s; }
.social-ads-icons .ads-icon:nth-child(2) { animation-delay: 0.5s; }
.social-ads-icons .ads-icon:nth-child(3) { animation-delay: 1s; }
.social-ads-icons .ads-icon:nth-child(4) { animation-delay: 1.5s; }
.social-ads-icons .ads-icon:nth-child(5) { animation-delay: 2s; }
.social-ads-icons .ads-icon:nth-child(6) { animation-delay: 2.5s; }

.social-ads-icons .ads-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(254, 63, 64, 0.4);
}

/* Desarrollo de Sitios Web */
.web-development-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
    max-width: 140px;
}

.web-development-icons .web-dev-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: web-build 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.2);
}

.web-development-icons .web-dev-icon:nth-child(1) { animation-delay: 0s; }
.web-development-icons .web-dev-icon:nth-child(2) { animation-delay: 0.5s; }
.web-development-icons .web-dev-icon:nth-child(3) { animation-delay: 1s; }
.web-development-icons .web-dev-icon:nth-child(4) { animation-delay: 1.5s; }
.web-development-icons .web-dev-icon:nth-child(5) { animation-delay: 2s; }
.web-development-icons .web-dev-icon:nth-child(6) { animation-delay: 2.5s; }

.web-development-icons .web-dev-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(254, 63, 64, 0.4);
}

/* Branding (Creación de Marca) */
.branding-creation-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
    max-width: 140px;
}

.branding-creation-icons .brand-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: brand-identity 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.2);
}

.branding-creation-icons .brand-icon:nth-child(1) { animation-delay: 0s; }
.branding-creation-icons .brand-icon:nth-child(2) { animation-delay: 0.5s; }
.branding-creation-icons .brand-icon:nth-child(3) { animation-delay: 1s; }
.branding-creation-icons .brand-icon:nth-child(4) { animation-delay: 1.5s; }
.branding-creation-icons .brand-icon:nth-child(5) { animation-delay: 2s; }
.branding-creation-icons .brand-icon:nth-child(6) { animation-delay: 2.5s; }

.branding-creation-icons .brand-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(254, 63, 64, 0.4);
}

/* Generación de Leads */
.leads-generation-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    justify-items: center;
    max-width: 140px;
}

.leads-generation-icons .lead-gen-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FE3F40, #FE3F40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: leads-flow 2.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(254, 63, 64, 0.2);
}

.leads-generation-icons .lead-gen-icon:nth-child(1) { animation-delay: 0s; }
.leads-generation-icons .lead-gen-icon:nth-child(2) { animation-delay: 0.5s; }
.leads-generation-icons .lead-gen-icon:nth-child(3) { animation-delay: 1s; }
.leads-generation-icons .lead-gen-icon:nth-child(4) { animation-delay: 1.5s; }
.leads-generation-icons .lead-gen-icon:nth-child(5) { animation-delay: 2s; }
.leads-generation-icons .lead-gen-icon:nth-child(6) { animation-delay: 2.5s; }

.leads-generation-icons .lead-gen-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(254, 63, 64, 0.4);
}

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes content-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes management-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes leads-flow {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-5px) scale(1.05); }
    50% { transform: translateY(-8px) scale(1.1); }
    75% { transform: translateY(-5px) scale(1.05); }
}

@keyframes web-build {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-6px) rotate(-2deg); }
}

@keyframes ads-target {
    0%, 100% { transform: scale(1) translateY(0px); }
    25% { transform: scale(1.05) translateY(-4px); }
    50% { transform: scale(1.1) translateY(-6px); }
    75% { transform: scale(1.05) translateY(-4px); }
}

@keyframes brand-identity {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-5px) rotate(2deg) scale(1.05); }
    50% { transform: translateY(-8px) rotate(0deg) scale(1.1); }
    75% { transform: translateY(-5px) rotate(-2deg) scale(1.05); }
}

@keyframes grow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-grow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}