        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: transparent;
            margin: 0;
            padding: 0;
        }
        
        /* Hero Section - SIN CUADRO BLANCO */
        .hero-section {
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            margin: 0 auto;
            max-width: 100%;
            padding: 0;
            overflow: hidden;
            opacity: 0;
            animation: fadeInDown 1s ease-out forwards;
        }
        
        .hero-image {
            width: 100%;
            height: 60vh;
             max-height: 700px;
            border-radius: 0;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        /* Estilos para el carrusel */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
            background-size: cover !important;
            background-position: center !important;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }
        
        .slide-text {
            color: white;
            font-size: 68px;
            font-weight: bold;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
            z-index: 10;
            padding: 30px;
            text-align: center;
        }
        
        /* Flechas de navegación */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            font-size: 30px;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s;
            z-index: 100;
            backdrop-filter: blur(5px);
            user-select: none;
        }
        
        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        .slider-arrow.prev {
            left: 20px;
        }
        
        .slider-arrow.next {
            right: 20px;
        }
        
        /* Indicadores de puntos */
        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 100;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }
        
        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        
        /* Hero Content */
        .hero-content {
            text-align: center;
            padding: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }
        
        .hero-content h2 {
            font-size: 50px;
            color: #df602d;
            margin-bottom: 30px;
        }
        
        .hero-content p {
            font-size: 24px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #916eac 0%, #916eac 100%);
            color: white;
            border: none;
            padding: 22px 55px;
            font-size: 24px;
            border-radius: 35px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }
        
        /* Cards Section */
        .cards-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1600px;
            margin: 60px auto;
            padding: 0 70px;
        }
        
        .card {
            background: white;
            padding: 50px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .card:nth-child(1) { animation-delay: 0.5s; }
        .card:nth-child(2) { animation-delay: 0.7s; }
        .card:nth-child(3) { animation-delay: 0.9s; }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .card img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            margin-bottom: 25px;
            border-radius: 10px;
        }
        
        .card h3 {
            font-size: 32px;
            color: #333;
            margin-bottom: 18px;
        }
        
        .card p {
            font-size: 19px;
            color: #666;
            line-height: 1.7;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 30px 20px;
                margin: 20px;
            }
            
            .hero-image {
                height: 400px;
            }
            
            .slide-text {
                font-size: 28px;
            }
            
            .hero-content h2 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .btn-primary {
                padding: 14px 30px;
                font-size: 16px;
            }
            
            .slider-arrow {
                font-size: 20px;
                padding: 10px 15px;
            }
            
            .slider-arrow.prev {
                left: 10px;
            }
            
            .slider-arrow.next {
                right: 10px;
            }
            
            .cards-section {
                padding: 0 20px;
                gap: 20px;
                grid-template-columns: 1fr;
            }
            
            .card {
                padding: 30px;
            }
        }
        
        /* Animaciones de entrada */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }