:root {
    --primary: #00D17B;
    --primary-dark: #00b368;
    --secondary: #000000;
    --background: #FFFFFF;
    --text: #111827;
    --text-light: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-light);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--primary);
    color: white;
}

.btn-outline {
    border: 1px solid var(--gray-light);
    color: var(--text);
}

.btn-outline:hover {
    background-color: var(--gray-light);
}

.btn-link {
    color: var(--text);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 80px 0;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-light);
}

.hero-card h3 {
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 1rem;
    margin-bottom: 24px;
}

.hero-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.hero-card li {
    margin-bottom: 12px;
    color: var(--text-light);
}

.small {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
}

/* Stats Section */
.empresas {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
}

.stats {
    display: flex;
    align-items: center;
    gap: 60px;
}

.stat-item .number {
    font-size: 4rem;
    font-weight: 800;
    display: block;
}

.stat-item .label {
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 20px;
}

.feature-number {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.center {
    text-align: center;
}

/* Services Grid */
.servicios-grid {
    padding: 100px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    padding: 30px;
    border: 1px solid var(--gray-light);
    border-radius: 16px;
}

.service-item h3 {
    margin-bottom: 12px;
}

/* Footer */
footer {
    background-color: var(--gray-light);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-links h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .nav-links, .nav-buttons {
        display: none;
    }
    .features-grid, .grid {
        grid-template-columns: 1fr;
    }
    .stats {
        flex-direction: column;
        text-align: center;
    }
}

.hero-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-image-mobile {
        display: block;
    }
}
