.nosotros-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.nosotros-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.nosotros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.nosotros-image-wrapper {
    flex: 1;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.nosotros-image-wrapper.animate {
    opacity: 1;
    transform: translateX(0);
}

.image-border-effect {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f39c12);
    border-radius: 30px;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 35px;
    z-index: -2;
}

.nosotros-ceo-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 25px;
    object-fit: cover;
    aspect-ratio: 4/5;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nosotros-ceo-image:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.stats-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
    margin-bottom: 4px;
}

.stats-text {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nosotros-content {
    flex: 1;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nosotros-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.content-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.nosotros-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nosotros-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subtitle-icon {
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.text-content {
    margin-bottom: 40px;
}

.nosotros-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    font-weight: 400;
}

.highlight-text {
    font-weight: 500;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.ceo-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.highlight-item:nth-child(2) .highlight-icon {
    animation-delay: 0.5s;
}

.highlight-item:nth-child(3) .highlight-icon {
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .nosotros-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .nosotros-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .nosotros-image-wrapper {
        transform: translateY(-50px);
        order: 1;
    }
    
    .nosotros-image-wrapper.animate {
        transform: translateY(0);
    }
    
    .nosotros-content {
        transform: translateY(50px);
        order: 2;
    }
    
    .nosotros-content.animate {
        transform: translateY(0);
    }
    
    .nosotros-ceo-image {
        max-width: 300px;
    }
    
    .nosotros-title {
        font-size: 2.5rem;
    }
    
    .nosotros-subtitle {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .ceo-highlights {
        justify-content: center;
    }
    
    .highlight-item {
        flex: 1;
        min-width: 200px;
    }
    
    .floating-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .nosotros-container {
        padding: 0 15px;
    }
    
    .nosotros-title {
        font-size: 2rem;
    }
    
    .nosotros-subtitle {
        font-size: 1.3rem;
    }
    
    .nosotros-ceo-image {
        max-width: 250px;
        border-radius: 20px;
    }
    
    .ceo-highlights {
        flex-direction: column;
    }
    
    .highlight-item {
        min-width: auto;
    }
}