/* Technologies Section */
.technologies-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
}

.tech-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-card-icon {
    background: rgba(236, 72, 153, 0.2);
    transform: scale(1.1) rotate(-5deg);
}

.tech-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.tech-card-description {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tech-features li {
    padding: 8px 0 8px 24px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ec4899;
    font-weight: 700;
}

.tech-features li:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 28px;
}

.tech-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 20px;
    color: #ec4899;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-category {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-category:hover {
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.category-header-merch {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-icon-merch {
    font-size: 48px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.category-title-merch {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    padding: 10px 0 10px 24px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ec4899;
    font-size: 20px;
    line-height: 1;
}

.product-list li:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 28px;
    background: rgba(236, 72, 153, 0.05);
}

/* Responsive Technologies */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .technologies-section {
        padding: 80px 0;
    }
    
    .tech-container {
        padding: 0 20px;
    }
    
    .tech-grid {
        gap: 20px;
        margin-top: 40px;
    }
    
    .tech-card {
        padding: 30px 25px;
    }
    
    .tech-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .tech-card-title {
        font-size: 20px;
    }
    
    .tech-features li {
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-category {
        padding: 30px 25px;
    }
    
    .category-icon-merch {
        font-size: 40px;
    }
    
    .category-title-merch {
        font-size: 20px;
    }
    
    .product-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tech-card {
        padding: 25px 20px;
    }
    
    .tech-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .tech-card-title {
        font-size: 18px;
    }
    
    .product-category {
        padding: 25px 20px;
    }
    
    .category-icon-merch {
        font-size: 36px;
    }
    
    .category-title-merch {
        font-size: 18px;
    }
}/* Creative Page Styles */

.creative-page {
    background: #000000;
}

/* Creative Hero */
.creative-hero {
    position: relative;
    overflow: visible;
}

.creative-overlay {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.2) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(139, 92, 246, 0.2) 100%);
}

.hero-title.creative-title {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: creativeGradient 3s ease-in-out infinite;
}

/* Fallback para navegadores sin soporte */
@supports not (background-clip: text) {
    .hero-title.creative-title {
        color: #ec4899 !important;
        text-shadow: 0 0 30px rgba(236, 72, 153, 0.6) !important;
    }
}

@keyframes creativeGradient {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

/* Creative Shapes */
.creative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.creative-shape {
    position: absolute;
    opacity: 0.4;
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-circle {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(139, 92, 246, 0.3);
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-square {
    width: 150px;
    height: 150px;
    background: rgba(6, 182, 212, 0.3);
    bottom: 20%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 4s;
}

.shape-blob {
    width: 250px;
    height: 250px;
    background: rgba(245, 158, 11, 0.3);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Color Splashes */
.color-splashes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.splash {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: splashPulse 6s ease-in-out infinite;
}

.splash-1 {
    background: radial-gradient(circle, #ec4899, transparent);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.splash-2 {
    background: radial-gradient(circle, #8b5cf6, transparent);
    bottom: -10%;
    right: -10%;
    animation-delay: 2s;
}

.splash-3 {
    background: radial-gradient(circle, #06b6d4, transparent);
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes splashPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Creative Buttons */
.btn-creative {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #06b6d4 100%);
    background-size: 200% 200%;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-creative:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.6);
}

/* Creative Stats */
.creative-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.creative-stat {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(#000, #000),
        linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.creative-stat:hover {
    transform: translateY(-12px) rotate(2deg);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.4);
}

.creative-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(236, 72, 153, 0.4);
}

.creative-stat:hover .creative-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5);
}

/* Creative Services Section */
.creative-services {
    background: linear-gradient(180deg, #000000 0%, #0a0514 50%, #000000 100%);
    padding: 120px 0;
}

.creative-subtitle {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creative-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.creative-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.card-design .card-gradient-bg {
    background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.15), transparent);
}

.card-branding .card-gradient-bg {
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent);
}

.card-digital .card-gradient-bg {
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.15), transparent);
}

.card-video .card-gradient-bg {
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent);
}

.card-web .card-gradient-bg {
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent);
}

.card-strategy .card-gradient-bg {
    background: radial-gradient(circle at top right, rgba(244, 63, 94, 0.15), transparent);
}

.creative-service-card:hover .card-gradient-bg {
    opacity: 1;
}

.creative-service-card:hover {
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.creative-service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card-description {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.service-card-list li {
    padding: 8px 0 8px 24px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.service-card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ec4899;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-card-list li:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 28px;
}

.service-card-list li:hover::before {
    left: 4px;
}

.service-card-color {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0;
    transition: all 0.4s ease;
}

.creative-service-card:hover .service-card-color {
    opacity: 1;
    height: 6px;
}

/* Creative Process Section */
.creative-process-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.process-step:hover .step-icon {
    background: rgba(236, 72, 153, 0.2);
    transform: scale(1.1) rotate(10deg);
}

/* Creative CTA */
.creative-cta {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(139, 92, 246, 0.1) 100%);
}

.creative-cta-content {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(139, 92, 246, 0.1) 100%);
    border: 3px solid transparent;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .creative-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .creative-hero {
        min-height: 70vh;
    }
    
    .creative-shapes,
    .color-splashes {
        display: none;
    }
    
    .creative-services {
        padding: 80px 0;
    }
    
    .creative-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .creative-service-card {
        padding: 30px 25px;
    }
    
    .service-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card-title {
        font-size: 20px;
    }
    
    .service-card-description {
        font-size: 14px;
    }
    
    .creative-process-section {
        padding: 80px 0;
    }
    
    .process-container {
        padding: 0 20px;
    }
    
    .process-steps {
        gap: 25px;
        margin-top: 40px;
    }
    
    .process-step {
        padding: 25px;
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        font-size: 40px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .creative-service-card {
        padding: 25px 20px;
    }
    
    .service-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card-title {
        font-size: 18px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .step-title {
        font-size: 18px;
    }
} 