/* Estilos específicos para la página "Por qué elegirnos" */

/* Hero Section */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.6)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: 'League Spartan', 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.breadcrumb-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.breadcrumb-link:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--gray-500);
    font-weight: 600;
}

.breadcrumb-current {
    color: var(--gray-600);
    font-weight: 500;
}

/* Main Content */
.main-content {
    background: var(--white);
    padding: var(--spacing-4xl) 0;
}

/* Sección Destacada */
.featured-section {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    padding: var(--spacing-3xl);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-4xl);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    /* Estado inicial para animación */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.featured-section:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-green);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
    /* Animación del icono */
    animation: iconFloat 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.featured-section:hover .featured-icon {
    transform: scale(1.1) rotate(10deg) translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 208, 132, 0.5);
    animation-play-state: paused;
}

.featured-icon i {
    font-size: var(--font-size-4xl);
    color: var(--white);
}

.featured-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.featured-title {
    font-family: 'Utendo', var(--font-family);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    /* Animación del título */
    animation: titleSlideIn 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.featured-description {
    font-family: 'Utendo', var(--font-family);
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    /* Animación de la descripción */
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-btn {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-family: 'Utendo', var(--font-family);
    font-weight: 600;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
    position: relative;
    overflow: hidden;
}

.featured-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.featured-btn:hover::before {
    left: 100%;
}

.featured-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
    color: var(--white);
}

/* Grid de características como VOX */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Estado inicial para animación */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
    transition: var(--transition-normal);
    /* Animación del icono */
    animation: iconPulse 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 208, 132, 0.4);
    }
}

.feature-card:hover .feature-icon {
    animation-play-state: paused;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.5);
}

.feature-icon i {
    font-size: var(--font-size-2xl);
    color: var(--white);
}

.feature-title {
    font-family: 'League Spartan', 'Poppins', sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    /* Animación del título */
    animation: fadeInTitle 0.6s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-description {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    text-align: left;
    flex-grow: 1;
    /* Animación de la descripción */
    animation: fadeInDescription 0.6s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeInDescription {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-btn {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 208, 132, 0.3);
    margin-top: auto;
    align-self: center;
    /* Animación del botón */
    animation: fadeInButton 0.6s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInButton {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.4);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .featured-section {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-2xl);
    }
    
    .featured-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto;
    }
    
    .featured-icon i {
        font-size: var(--font-size-xl);
    }
    
    .featured-title {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }
    
    .featured-description {
        font-size: var(--font-size-sm);
        line-height: 1.5;
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
    
    .featured-section .featured-btn {
        font-size: var(--font-size-sm);
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: var(--spacing-sm);
    }
    
    .feature-icon i {
        font-size: var(--font-size-lg);
    }
    
    .feature-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
    }
    
    .feature-description {
        font-size: var(--font-size-xs);
        line-height: 1.4;
        text-align: center;
    }
    
    .feature-card .feature-btn {
        font-size: var(--font-size-xs);
        padding: var(--spacing-sm) var(--spacing-md);
        margin-top: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 3rem);
    }
    
    .breadcrumb-nav {
        font-size: var(--font-size-xs);
    }
    
    .content-section {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-xl);
    }
    
    .section-icon {
        width: 60px;
        height: 60px;
    }
    
    .section-icon i {
        font-size: var(--font-size-xl);
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .featured-section {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .featured-icon {
        width: 52px;
        height: 52px;
    }
    
    .featured-icon i {
        font-size: var(--font-size-lg);
    }
    
    .featured-title {
        font-size: var(--font-size-base);
    }
    
    .featured-description {
        font-size: var(--font-size-xs);
    }
    
    .features-grid {
        gap: var(--spacing-sm);
    }
    
    .feature-card {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-icon i {
        font-size: var(--font-size-base);
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-description {
        font-size: 0.75rem;
    }
}

/* Animaciones de entrada */
.content-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-section:nth-child(1) { animation-delay: 0.1s; }
.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.3s; }
.content-section:nth-child(4) { animation-delay: 0.4s; }
.content-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efectos adicionales */
.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.02) 0%, transparent 50%);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.content-section:hover::before {
    opacity: 1;
}

/* Mejoras en el hero */
.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 208, 132, 0.5);
}

/* Efecto de partículas sutil en el hero */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 208, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 208, 132, 0.05) 0%, transparent 50%);
    z-index: 2;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-10px) rotate(1deg);
    }
}

/* Tech Stack Section */
.tech-stack {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 208, 132, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 208, 132, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tech-stack-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.tech-stack-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-green);
    padding: 0.375rem 1.25rem;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-family: 'Utendo', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.tech-stack-header.animate-in .tech-stack-badge {
    animation: badgeFadeIn 0.6s ease-out 0.1s;
}

.tech-stack-header.animate-in .tech-stack-title {
    animation: titleSlideInFromLeft 0.8s ease-out 0.3s;
}

.tech-stack-header.animate-in .tech-stack-title::after {
    animation: lineGrow 0.8s ease-out 0.6s;
}

.tech-stack-header.animate-in .tech-stack-description {
    animation: descriptionFadeIn 0.8s ease-out 0.5s;
}

@keyframes badgeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-stack-badge:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.tech-stack-badge i {
    font-size: 0.875rem;
}

.tech-stack-title {
    font-family: 'Utendo', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}


@keyframes titleSlideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.tech-stack-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}


@keyframes lineGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

.tech-stack-divider {
    display: none;
}

.tech-stack-description {
    font-family: 'Utendo', sans-serif;
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
    margin-top: 1rem;
}


@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-4xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.tech-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00d084, #00a86b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 208, 132, 0.3);
}

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

.tech-card:hover::after {
    opacity: 1;
}

/* Animación de entrada al hacer scroll (móvil) */
@media (max-width: 768px) {
    .tech-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .tech-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-card.featured-tech {
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 208, 132, 0.08) 100%);
    border: 2px solid var(--primary-green);
    box-shadow: 0 12px 40px rgba(0, 208, 132, 0.25);
    position: relative;
}

.tech-card.featured-tech::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #00a86b, #00d084, #00a86b);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tech-card.featured-tech:hover {
    box-shadow: 0 24px 60px rgba(0, 208, 132, 0.35);
}

.tech-card-header {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: var(--spacing-xl);
    border-bottom: 3px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.tech-card-header i {
    font-size: 2.5rem;
    color: var(--primary-green);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15), rgba(0, 168, 107, 0.1));
    border-radius: 15px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.2);
}

.tech-card:hover .tech-card-header i {
    transform: rotate(360deg) scale(1.15);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
}

.tech-card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.02em;
}

.tech-skills {
    padding: var(--spacing-xl);
    flex-grow: 1;
}

.tech-skills .tech-skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.tech-skill {
    display: inline-flex;
    align-items: center;
    background: #f9fafb;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-skill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.tech-card:hover .tech-skill {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}

.tech-card:hover .tech-skill::before {
    left: 100%;
}

.tech-description {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    font-family: 'Utendo', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.tech-description p {
    margin: 0;
    line-height: 1.8;
}

.tech-cta {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-4xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 208, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 208, 132, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.tech-cta-content {
    position: relative;
    z-index: 2;
}

.tech-cta-content h3 {
    font-family: 'Utendo', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.tech-cta-content p {
    font-family: 'Utendo', sans-serif;
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.tech-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--primary-green);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-family: 'League Spartan', 'Poppins', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.tech-cta-btn i {
    font-size: var(--font-size-lg);
}

.tech-cta-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
    color: var(--white);
}

/* Responsive Tech Stack */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-cta {
        padding: var(--spacing-3xl);
    }

    .tech-cta-content h3 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 768px) {
    .tech-stack-title {
        font-size: 2.5rem;
    }

    .tech-stack-description {
        font-size: 1.125rem;
    }

    .tech-stack-badge {
        font-size: 0.625rem;
        padding: 0.25rem 1rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .tech-card {
        padding: 0;
    }

    .tech-card-header {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .tech-card-header i {
        font-size: 1.5rem;
        width: 44px;
        height: 44px;
    }

    .tech-card-header h3 {
        font-size: var(--font-size-base);
    }

    .tech-skills {
        padding: var(--spacing-md);
    }

    .tech-skills .tech-skills-wrapper {
        margin-bottom: var(--spacing-sm);
    }

    .tech-skill {
        font-size: 0.75rem;
        padding: 0.35rem 0.65rem;
    }

    .tech-description {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: var(--font-size-sm);
    }

    .tech-cta {
        padding: var(--spacing-lg);
    }

    .tech-cta-content h3 {
        font-size: var(--font-size-lg);
    }

    .tech-cta-content p {
        font-size: var(--font-size-sm);
    }

    .tech-cta-btn {
        flex-direction: row;
        font-size: var(--font-size-xs);
        padding: var(--spacing-sm) var(--spacing-md);
        max-width: 260px;
    }

    .tech-cta-btn i {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .tech-stack-title {
        font-size: 2rem;
    }

    .tech-stack-description {
        font-size: 1rem;
    }

    .tech-stack-badge {
        font-size: 0.5rem;
        padding: 0.25rem 0.875rem;
    }

    .tech-card {
        padding: 0;
    }

    .tech-card-header {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .tech-card-header i {
        font-size: 1.25rem;
        width: 38px;
        height: 38px;
    }

    .tech-card-header h3 {
        font-size: 0.9rem;
    }

    .tech-skills {
        padding: var(--spacing-sm) var(--spacing-md);
        justify-content: center;
    }

    .tech-skill {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .tech-description {
        padding: 0 var(--spacing-md) var(--spacing-sm);
        font-size: 0.8rem;
    }

    .tech-cta {
        padding: var(--spacing-md);
    }

    .tech-cta-content h3 {
        font-size: var(--font-size-base);
    }

    .tech-cta-content p {
        font-size: var(--font-size-xs);
    }

    .tech-cta-btn {
        font-size: 0.7rem;
        padding: var(--spacing-sm) var(--spacing-md);
        max-width: 220px;
    }

    .tech-cta-btn i {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   NUESTRO PROCESO SECTION - DISEÑO ORIGINAL
   ============================================ */

.process-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos animados */
.process-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.process-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 208, 132, 0.1);
    animation: float 20s ease-in-out infinite;
}

.process-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.process-circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -3%;
    animation-delay: 5s;
}

.process-circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

.process-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.15), transparent);
    height: 2px;
    animation: slideLine 25s linear infinite;
}

.process-line-1 {
    width: 400px;
    top: 30%;
    left: -400px;
    animation-delay: 0s;
}

.process-line-2 {
    width: 300px;
    bottom: 40%;
    right: -300px;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        opacity: 0.4;
    }
}

@keyframes slideLine {
    0% {
        left: -400px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Header de la sección */
.process-header {
    text-align: center;
    margin-bottom: var(--spacing-5xl);
    position: relative;
    z-index: 2;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 208, 132, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-lg);
    font-family: 'League Spartan', 'Poppins', sans-serif;
}

.process-badge i {
    font-size: 0.875rem;
}

.process-title {
    font-family: 'League Spartan', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.process-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    margin: 0 auto var(--spacing-lg);
    border-radius: 2px;
}

.process-subtitle {
    font-family: 'Utendo', sans-serif;
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 8rem;
    line-height: 1.6;
}

/* Timeline de procesos */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto var(--spacing-5xl);
    margin-top: 8rem;
    z-index: 2;
}

/* Línea vertical del timeline */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--primary-green) 0%, 
        rgba(0, 208, 132, 0.5) 50%, 
        var(--primary-green) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Cada paso del proceso */
.process-step {
    position: relative;
    margin-bottom: var(--spacing-4xl);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-connector {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-connector {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 8px rgba(0, 208, 132, 0.3);
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-2xl);
    position: relative;
}

/* Pasos impares a la izquierda, pares a la derecha */
.process-step[data-step="1"] .step-content,
.process-step[data-step="3"] .step-content,
.process-step[data-step="5"] .step-content {
    flex-direction: row;
}

.process-step[data-step="2"] .step-content,
.process-step[data-step="4"] .step-content {
    flex-direction: row-reverse;
}

.step-number {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 208, 132, 0.4);
}

.step-number span {
    font-family: 'League Spartan', 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    z-index: 2;
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.step-body {
    flex: 1;
    background: #ffffff;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-step:hover .step-body {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.15);
    border-color: rgba(0, 208, 132, 0.2);
}

.step-title {
    font-family: 'League Spartan', 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-md);
}

.step-description {
    font-family: 'Utendo', sans-serif;
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.step-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: 'Utendo', sans-serif;
    font-size: 0.95rem;
    color: #4b5563;
}

.step-feature i {
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
}

/* CTA Final */
.process-cta {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-4xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.process-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.process-cta-content {
    position: relative;
    z-index: 2;
}

.process-cta-content h3 {
    font-family: 'League Spartan', 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
}

.process-cta-content p {
    font-family: 'Utendo', sans-serif;
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: var(--spacing-2xl);
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--primary-green);
    color: #ffffff;
    padding: var(--spacing-lg) var(--spacing-3xl);
    border-radius: 50px;
    font-family: 'League Spartan', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 208, 132, 0.3);
}

.process-cta-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
}

.process-cta-btn i {
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 968px) {
    .process-timeline::before {
        left: 60px;
    }
    
    .process-step[data-step="1"] .step-content,
    .process-step[data-step="2"] .step-content,
    .process-step[data-step="3"] .step-content,
    .process-step[data-step="4"] .step-content,
    .process-step[data-step="5"] .step-content {
        flex-direction: row;
    }
    
    .step-connector {
        left: 60px;
    }
    
    .step-number {
        width: 100px;
        height: 100px;
    }
    
    .step-number span {
        font-size: 1.5rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .process-title {
        font-size: 2.5rem;
    }
    
    .process-cta {
        padding: var(--spacing-3xl);
    }
    
    .process-cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: var(--spacing-4xl) 0;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .process-subtitle {
        font-size: 1.125rem;
    }
    
    .step-content {
        flex-direction: column !important;
        gap: var(--spacing-lg);
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .step-number span {
        font-size: 1.25rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-body {
        padding: var(--spacing-lg);
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .process-cta-content h3 {
        font-size: 1.75rem;
    }
    
    .process-cta-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 1.75rem;
    }
    
    .process-badge {
        font-size: 0.625rem;
        padding: 0.375rem 1rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
    }
    
    .step-number span {
        font-size: 1rem;
    }
    
    .step-body {
        padding: var(--spacing-md);
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .process-cta {
        padding: var(--spacing-2xl);
    }
    
    .process-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .process-cta-btn {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: 0.875rem;
    }
}