:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth; /* Esto hace que el salto sea un deslizamiento suave */
}

/* Opcional: Para que el logo no cambie de color al ser un link */
.brand:hover {
    opacity: 0.9;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

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

/* Header & Nav */
.topbar {
    background: #0f172a;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
}

.brand-badge {
    background: var(--secondary);
    color: #000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

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

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

.btn-primary:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

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

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

.full-width { width: 100%; }

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.features-mini {
    margin-top: 20px;
    background: rgba(16, 185, 129, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.f-item span { color: #10b981; font-weight: bold; }

/* Pricing Section */
.section { padding: 100px 0; background: var(--bg-light); }

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

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1.2fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 24px;
    min-height: 750px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.plan-card.highlight {
    border: 2px solid var(--secondary);
    scale: 1.05;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
}

.badge-pop {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 20px 0;
}

.price span { font-size: 1rem; color: var(--text-muted); }

.plan-card ul {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.plan-card li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
}

.plan-card li p {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Contact Form */
.contact-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input, select, textarea {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}

textarea { height: 120px; resize: none; }

.btn-lg { padding: 20px; font-size: 1.1rem; }

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .pricing-grid, .form-group {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 2.5rem; }
    .plan-card.highlight { scale: 1; }
    .nav-links { display: none; }
}

/* --- Beneficios --- */
.bg-white { background-color: var(--white); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    padding: 40px;
    border-radius: 20px;
    background: var(--bg-light);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* --- Nosotros (About) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.text-accent {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.about-image {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    height: 400px;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-badge {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge span {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.about-stats h4 {
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Ajuste Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 250px;
        order: 2;
    }
    .about-content {
        order: 1;
    }
}