  :root {
            --primary-color: #c80000;
            --primary-hover: #a00000;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --gradient-primary: linear-gradient(135deg, #c80000 0%, #e74c3c 100%);
            --gradient-secondary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body{
            background: rgb(220,242,255);
            background: radial-gradient(circle, rgba(220,242,255,1) 0%, rgba(255,221,221,1) 38%, rgba(255,234,234,1) 54%, rgba(255,249,238,1) 64%, rgba(255,255,255,1) 100%);
            }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
        }

        /* Hero Section */
        .hero-nosotros {
            background: var(--gradient-primary);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-nosotros::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" fill-opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            z-index: 1;
        }

        .floating-icon {
            position: absolute;
            color: rgba(255,255,255,0.1);
            animation: float 6s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; font-size: 3rem; }
        .floating-icon:nth-child(2) { top: 40%; right: 15%; animation-delay: 2s; font-size: 2.5rem; }
        .floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; font-size: 2rem; }
        .floating-icon:nth-child(4) { top: 60%; right: 25%; animation-delay: 1s; font-size: 3.5rem; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Cards Estilo Moderno */
        .modern-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
        }

        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .modern-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(200,0,0,0.15);
        }

        /* Timeline Vertical */
        .timeline-vertical {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline-vertical::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-primary);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 80px;
        }

        .timeline-icon {
            position: absolute;
            left: 15px;
            top: 5px;
            width: 30px;
            height: 30px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            z-index: 2;
        }

        .timeline-content {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

    

        /* Team Section */
        .team-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.3s ease;
            transform: rotate(45deg);
            z-index: 0;
        }

        .team-card:hover::before {
            opacity: 0.1;
        }

        .team-card:hover {
            transform: translateY(-5px);
            color: var(--primary-color);
        }

        .team-card * {
            position: relative;
            z-index: 1;
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .contact-item {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(200,0,0,0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .contact-link {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 25px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .contact-link:hover {
            background: var(--primary-hover);
            color: white;
            transform: translateY(-2px);
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(200,0,0,0.3);
            border: #f44336 2px solid;
        }

        .cta-button:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(200,0,0,0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-nosotros {
                padding: 100px 0 60px;
            }
            
            .stats-number {
                font-size: 2.5rem;
            }
            
            .timeline-vertical::before {
                left: 15px;
            }
            
            .timeline-item {
                padding-left: 50px;
            }
            
            .timeline-icon {
                left: 0;
            }


            @media (max-width: 576px){

                .h1{
                    font-size: 24px;
                }
                .lead{
                    font-size: 16px;
                }

            }



        }

        /* Animaciones adicionales */
        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }