@charset "utf-8";
/* CSS Document */

        :root {
            --primary-color: #4a6fa5;
            --secondary-color: #ff6b6b;
            --accent-color: #ffd166;
            --dark-color: #2b2d42;
            --light-color: #f8f9fa;
        }
 	       
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Sistema de grid mejorado */
        .emprendedores-grid {
            display: flex;
            flex-wrap: wrap;
            margin: -15px; /* Compensa el padding de las tarjetas */
        }
        
        .emprendedor-col {
            padding: 15px;
            flex: 0 0 33.33333%;
            max-width: 33.33333%;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }
        
        .emprendedor-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, box-shadow 0.3s;
            border-radius: 12px;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .emprendedor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        /* Cambios clave para mostrar imágenes completas */
        .emprendedor-img-container {
            height: 200px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
        }
        
        .emprendedor-img {
            width: 100%;
            height: auto;
            max-height: 200px;
            object-fit: contain; /* Cambiado de 'cover' a 'contain' */
        }
        
        .emprendedor-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .emprendedor-category {
            display: inline-block;
            background: var(--accent-color);
            color: var(--dark-color);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .emprendedor-body p:last-child {
            margin-top: auto; /* Empuja el botón hacia abajo */
        }
        
        .filter-buttons {
            margin: 30px 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary-color);
            color: white;
        }
        
        .testimonials {
            background: #f8f9fa;
            padding: 60px 0;
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 15px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: """;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 60px;
            color: rgba(0,0,0,0.05);
            font-family: serif;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color), #ff8e8e);
            color: white;
            text-align: center;
            border-radius: 10px;
            margin: 50px auto;
            max-width: 95%;
        }
        
        .social-proof {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .social-proof-item {
            display: flex;
            align-items: center;
            background: white;
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .social-proof-icon {
            font-size: 24px;
            margin-right: 10px;
            color: var(--primary-color);
        }
		.titulo-elegante {
		  font-size: 60px;
		  font-family: 'Playfair Display', serif;
		}

        
        /* Ajustes responsivos */
        @media (max-width: 992px) {
            .emprendedor-col {
                flex: 0 0 50%;
                max-width: 50%;
            }
		.titulo-elegante {
		  font-size: 40px;
		  font-family: 'Playfair Display', serif;
		}
       }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 15px;
            }
            
            .emprendedor-col {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .filter-buttons {
                flex-direction: column;
                align-items: center;
            }
		.titulo-elegante {
		  font-size: 25px;
		  font-family: 'Playfair Display', serif;
		}
       }

