:root {
    --bg-color: #f4f6f8;
    --bg-secondary: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-color: #ff7a00; /* Naranja extraído del logo */
    --accent-hover: #e06c00;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
}

.container {
    max-width: 900px;
    width: 100%;
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0,0,0,0.02);
    text-align: center;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header & Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #000000;
}

.highlight {
    color: var(--accent-color);
}

/* Content */
.badge {
    display: inline-block;
    background: rgba(255, 122, 0, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* Features grid */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.feature-item {
    padding: 2.5rem 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border-color: #e2e8f0;
}

.icon-container {
    width: 56px;
    height: 56px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--accent-color);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover .icon-container {
    background: var(--accent-color);
    color: #ffffff;
    transform: scale(1.1);
}

.icon-container svg {
    width: 26px;
    height: 26px;
}

.feature-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact zone */
.contact {
    border-top: 1px solid #e2e8f0;
    padding-top: 3.5rem;
}

.contact p {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

@media (max-width: 768px) {
    .container {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .content h2 {
        font-size: 1.8rem;
    }
}
