* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 
                 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: whitesmoke;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: rgb(122, 236, 122);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: rgb(122, 236, 122);
    color: black;
}

.btn-primary:hover {
    background: rgb(92, 179, 92);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.btn-ghost {
    background: transparent;
    color: #334155;
}

.btn-ghost:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.btn-outline {
    background: white;

}



.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

/* HEADER */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img img {
    width: 55px;
    height: 60px;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* HERO */
.hero-section {
    padding: 96px 24px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: #475569;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

/* ADVANTAGES */
.advantages-section {
    padding: 80px 24px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #0f172a;
}

.advantages-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advantage-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: rgb(213, 255, 213);
    border: 1px solid #d1fae5;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 24px;
    height: 24px;
    color: #1f3e34;
    flex-shrink: 0;
    margin-top: 4px;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.advantage-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
    }
}