@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito:wght@300;400;600;700&display=swap');

:root {
    --primary: #4C6FFF;
    --primary-rgb: 76, 111, 255;
    --secondary: #777; /*#FF6B6B;*/
    --secondary-rgb: 255, 107, 107;
    --accent: #FFD166;
    --accent-rgb: 255, 209, 102;
    --dark: #1A1F36;
    --light: #F7FAFF;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --disabled: #f3f6fc;
    --neutro: #777777;
    --text-primary: #444444;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #F9FAFB;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.hero-bg {
    /*background: linear-gradient(135deg, rgba(76, 111, 255, 0.9) 0%, rgba(120, 150, 255, 0.85) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');*/
    background: linear-gradient(135deg, rgba(76, 111, 255, 0.8) 0%, rgba(120, 150, 255, 0.75) 100%), url('../../assets/images/ugroo-home-bk.webp');
    /*background: url('assets/images/designer3.jpg');*/
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cta-section {
    background: linear-gradient(135deg, #4C6FFF 0%, #8A9EFF 100%);
    border-radius: 30px;
    overflow: hidden;
}

.stat-box {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-primary {
    background: linear-gradient(135deg, #4C6FFF 0%, #6D8BFF 100%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 111, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 111, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF9E7D 100%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.blob {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.module-card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: scale(1.03);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.tabs-container .tab-content {
    display: none;
}

.tabs-container .tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/*Menu mobile hamburguesa*/
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    width: 369px; /* Agregar esta línea */
    max-width: 93vw; /* Para dispositivos muy pequeños */
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}