:root {
    --primary: #10B981;
    --primary-dark: #000000;
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --text-dark: #111111;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Accents */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -5%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
}

.blob-2 {
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--text-dark);
    border-radius: 50%;
    animation-delay: -5s;
    opacity: 0.05;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    object-fit: contain;
    /* Filtrar logo para que contraste bien si es blanco, lo asumimos negro o de color */
}

/* Buttons */
.btn-outline {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--text-dark);
    border-radius: 30px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--bg-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-primary:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 80vh;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary);
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.mockup-img {
    max-width: 100%;
    height: auto;
}

@keyframes float-img {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Glass Stats */
.stats-glass {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 20px;
}

.stat h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    font-weight: 800;
}

.stat span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Features */
.features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.features h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.glass-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.glass-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-alt);
    margin-top: 4rem;
    color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 6rem;
        gap: 2rem;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stats-glass {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 5rem;
        gap: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .nav-content {
        padding: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        height: 25px;
    }
    
    .btn-outline {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-primary {
        width: 100%;
        font-size: 1rem;
    }
    
    .stats-glass {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .stat h3 {
        font-size: 1.4rem;
    }

    .stat span {
        font-size: 0.8rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}
