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

:root {
    --black: #000000;
    --deep-black: #0A0A0A;
    --dark-gray: #121212;
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    --purple-dark: #6D28D9;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --gray-light: #D1D5DB;
    --green: #10B981;
    --blue: #3B82F6;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

html { scroll-behavior: smooth; }

/* ── Líneas decorativas ───────────────────── */
.purple-line {
    position: fixed;
    background: linear-gradient(180deg, transparent, var(--purple), transparent);
    width: 2px;
    height: 100vh;
    opacity: 0.3;
    z-index: 0;
}
.line-1 { left: 20%; }
.line-2 { left: 50%; }
.line-3 { left: 80%; }

/* ── Layout ───────────────────────────────── */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

/* ── Nav ──────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139,92,246,0.1);
    padding: 1.5rem 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container { display: flex; align-items: center; gap: 1rem; }
.logo-image { width: 45px; height: 45px; object-fit: contain; }

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-accent { color: var(--purple); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 0; height: 2px;
    background: var(--purple);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 1rem; }

.nav-cta {
    background: var(--purple);
    color: var(--white);
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139,92,246,0.3);
}

.nav-cta--ghost {
    background: transparent;
    border: 1px solid rgba(139,92,246,0.4);
}

.nav-cta--ghost:hover {
    background: rgba(139,92,246,0.1);
    border-color: var(--purple);
}

/* ── Hero ─────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content { max-width: 950px; }

.hero-badge {
    display: inline-block;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-light);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--white), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-highlight {
    background: rgba(59,130,246,0.08);
    border-left: 4px solid var(--blue);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.hero-highlight p {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.hero-highlight strong { color: var(--blue); font-size: 1.1rem; }

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139,92,246,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-3px);
}

.schedule-section {
    margin: 5rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 28px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
}

.schedule-copy p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.schedule-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 500;
}

.schedule-list li strong {
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.2);
}

.schedule-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--white);
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    outline: none;
}

.form-select {
    width: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6' fill='none' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 1.1rem center;
    background-size: 10px 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--white);
    padding: 1rem 3rem 1rem 1.1rem;
    font-size: 0.95rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    min-height: 52px;
}

.form-select option {
    background: #0A0A0A;
    color: #FFFFFF;
}

.form-select::-ms-expand {
    display: none;
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
}

input[type="date"] {
    width: 100%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--white);
    padding: 1rem 3rem 1rem 1.1rem;
    font-size: 0.95rem;
    outline: none;
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(1) brightness(2);
    opacity: 1;
    cursor: pointer;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

input[type="date"]::-ms-clear {
    display: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
input[type="date"]:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-note {
    color: var(--gray);
    font-size: 0.92rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 980px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(139,92,246,0.1);
}

.stat { text-align: left; }

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label { font-size: 0.95rem; color: var(--gray); font-weight: 500; }

/* ── Secciones genéricas ──────────────────── */
.section { padding: 8rem 0; }

.section-header { margin-bottom: 5rem; text-align: center; }

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

/* ── Benefits ─────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--deep-black);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
}

.benefit-card:hover {
    border-color: rgba(139,92,246,0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139,92,246,0.15);
}

.benefit-icon { font-size: 3rem; margin-bottom: 1.25rem; display: block; }

.benefit-card img{
    width: 80px;

}

.benefit-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.benefit-description { color: var(--gray); line-height: 1.7; font-size: 0.95rem; }

/* ── Servicios grid ───────────────────────── */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Primer card ocupa todo el ancho */
.servicio-card.servicio-featured {
    grid-column: 1 / -1;
}

.servicio-card {
    background: var(--deep-black);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.servicio-card:hover::before { opacity: 1; }

.servicio-card:hover {
    border-color: rgba(139,92,246,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(139,92,246,0.15);
}

.servicio-card.servicio-featured {
    border-color: rgba(139,92,246,0.35);
    background: linear-gradient(135deg, rgba(139,92,246,0.06), rgba(59,130,246,0.03));
}

.servicio-card img{
    width: 80px;
}

.red-icon-service{
    width: 60px !important; 
}

.servicio-icon { font-size: 2.5rem; line-height: 1; }

.servicio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-light);
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.25);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    width: fit-content;
}

.servicio-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.servicio-description {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
    flex: 1;
}

.servicio-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.servicio-bullets li {
    color: var(--gray-light);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.servicio-bullets li::before {
    content: '→';
    color: var(--purple);
    flex-shrink: 0;
    font-weight: 700;
}

.servicio-actions { margin-top: 0.5rem; }

/* ── Proceso timeline ─────────────────────── */
.proceso-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(139,92,246,0.12);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.proceso-step {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
    border-bottom: 1px solid rgba(139,92,246,0.08);
    transition: background 0.3s;
    align-items: flex-start;
    position: relative;
}

.proceso-step:last-child { border-bottom: none; }

.proceso-step:hover { background: rgba(139,92,246,0.04); }

.proceso-step::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--purple);
    opacity: 0;
    transition: opacity 0.3s;
}

.proceso-step:hover::before { opacity: 1; }

.proceso-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--purple);
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.25);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    height: fit-content;
    margin-top: 2px;
}

.proceso-body { flex: 1; }

.proceso-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.proceso-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.proceso-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.proceso-meta span {
    font-size: 0.8rem;
    color: rgba(139,92,246,0.8);
    font-weight: 600;
}

/* ── Ciclo virtuoso ───────────────────────── */
.ciclo-section {
    background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(59,130,246,0.05));
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 24px;
    padding: 4rem;
    margin: 2rem 0;
}

.ciclo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ciclo-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.ciclo-subtitle {
    color: var(--gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.ciclo-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.ciclo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    width: 180px;
}

.ciclo-step-number {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--purple-light);
}

.ciclo-step-text {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.ciclo-arrow {
    font-size: 1.2rem;
    color: rgba(139,92,246,0.4);
    margin: 0 0.5rem;
    padding-bottom: 1.5rem;
}

/* ── Team ─────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.team-card {
    background: var(--deep-black);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card:hover::before { opacity: 1; }

.team-card:hover {
    border-color: rgba(139,92,246,0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139,92,246,0.15);
}

.team-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.team-title { font-size: 1rem; color: var(--gray); margin-bottom: 1.75rem; }

.team-bio { color: var(--gray-light); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }

.team-skills { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.skill-pill {
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--purple-light);
    font-weight: 500;
    transition: all 0.3s;
}

.skill-pill:hover {
    background: rgba(139,92,246,0.2);
    border-color: var(--purple);
}

/* ── Comparativa ──────────────────────────── */
.comparativa-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(139,92,246,0.12);
}

.comparativa-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.comparativa-table thead tr {
    background: rgba(139,92,246,0.08);
    border-bottom: 1px solid rgba(139,92,246,0.2);
}

.comparativa-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-light);
    letter-spacing: 0.5px;
}

.comparativa-table th.col-neural {
    color: var(--purple-light);
    background: rgba(139,92,246,0.1);
}

.comparativa-table tbody tr {
    border-bottom: 1px solid rgba(139,92,246,0.06);
    transition: background 0.2s;
}

.comparativa-table tbody tr:last-child { border-bottom: none; }

.comparativa-table tbody tr:hover { background: rgba(139,92,246,0.03); }

.comparativa-table td {
    padding: 1.1rem 1.5rem;
    color: var(--gray);
    vertical-align: top;
}

.comparativa-table td:first-child {
    color: var(--gray-light);
    font-weight: 600;
}

.comparativa-table .col-neural {
    color: var(--green);
    font-weight: 600;
    background: rgba(16,185,129,0.04);
}

/* ── CTA Final ────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(109,40,217,0.05));
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 30px;
    padding: 6rem;
    text-align: center;
    margin: 4rem 0 8rem;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.cta-contact-card {
    background: var(--deep-black);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.cta-contact-card:hover {
    border-color: rgba(139,92,246,0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(139,92,246,0.15);
}

.cta-contact-card--secondary { border-color: rgba(59,130,246,0.2); }
.cta-contact-card--secondary:hover { border-color: rgba(59,130,246,0.5); }

.cta-contact-icon{
    width: 60px;
}

.cta-contact-icon1{
    width: 40px;
}

.cta-contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.cta-contact-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.cta-contact-note { font-size: 0.85rem; color: var(--gray); }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ── Footer ───────────────────────────────── */
.footer {
    border-top: 1px solid rgba(139,92,246,0.1);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

.footer-section-title { font-weight: 700; margin-bottom: 1.25rem; font-size: 0.95rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.9rem; }

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--purple); }

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(139,92,246,0.1);
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
}

/* ── Chatbot ──────────────────────────────── */
.chatbot-trigger {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: 50%;
    border: 3px solid rgba(139,92,246,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(139,92,246,0.4);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.chatbot-trigger:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(139,92,246,0.6);
}

.chatbot-trigger.active { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); }

.chatbot-trigger-icon { width: 45px; height: 45px; object-fit: contain; filter: brightness(1.1); }

.chatbot-notification {
    position: absolute;
    top: -5px; right: -5px;
    width: 22px; height: 22px;
    background: #EF4444;
    border-radius: 50%;
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chatbot-window {
    position: fixed;
    bottom: 110px; right: 2rem;
    width: 420px; height: 600px;
    background: var(--deep-black);
    border: 2px solid rgba(139,92,246,0.3);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 998;
    animation: slideUp 0.4s cubic-bezier(0.4,0,0.2,1);
}

.chatbot-window.active { display: flex; }

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

.chatbot-header {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(139,92,246,0.2);
}

.chatbot-header-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    padding: 3px;
}

.chatbot-header-info { flex: 1; }
.chatbot-header-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.chatbot-header-status { font-size: 0.8rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.4rem; }

.status-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; animation: pulse 2s infinite; }

.chatbot-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none; color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; font-size: 1.3rem;
}

.chatbot-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.chatbot-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: var(--black);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-body::-webkit-scrollbar { width: 6px; }
.chatbot-body::-webkit-scrollbar-track { background: rgba(139,92,246,0.05); }
.chatbot-body::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 3px; }

.chat-message { display: flex; gap: 0.8rem; animation: fadeIn 0.4s ease-out; }

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

.chat-message.bot  { align-self: flex-start; }
.chat-message.user { align-self: flex-end; flex-direction: row-reverse; }

.message-avatar {
    width: 32px; height: 32px;
    border-radius: 50%; flex-shrink: 0;
    object-fit: contain;
    background: rgba(139,92,246,0.1);
    padding: 3px;
    border: 2px solid rgba(139,92,246,0.3);
}

.message-content { max-width: 75%; }

.message-bubble {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.chat-message.bot  .message-bubble { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); color: var(--gray-light); border-bottom-left-radius: 4px; }
.chat-message.user .message-bubble { background: var(--purple); color: white; border-bottom-right-radius: 4px; }

.message-time { font-size: 0.7rem; color: var(--gray); margin-top: 0.4rem; padding: 0 0.5rem; }

.quick-options { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }

.quick-option {
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.3);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--purple-light);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.quick-option:hover { background: rgba(139,92,246,0.2); border-color: var(--purple); transform: translateY(-2px); }

.typing-indicator {
    display: none;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    max-width: 75%;
    margin: 0 1.5rem 0.5rem;
}

.typing-indicator.active { display: flex; }

.typing-dots { display: flex; gap: 4px; }

.typing-dot {
    width: 8px; height: 8px;
    background: var(--purple-light);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30%            { transform: translateY(-10px); opacity: 1; }
}

.chatbot-footer {
    padding: 1.2rem;
    background: var(--deep-black);
    border-top: 1px solid rgba(139,92,246,0.2);
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    background: rgba(139,92,246,0.05);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.chatbot-input::placeholder { color: var(--gray); }
.chatbot-input:focus { border-color: var(--purple); background: rgba(139,92,246,0.1); }

.chatbot-send {
    width: 44px; height: 44px;
    background: var(--purple);
    border: none; border-radius: 12px;
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s; flex-shrink: 0;
}

.chatbot-send:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(139,92,246,0.4); }

.chatbot-welcome-toast {
    position: fixed;
    bottom: 110px; right: 2rem;
    max-width: 280px;
    background: var(--deep-black);
    border: 2px solid rgba(139,92,246,0.3);
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    display: none;
    z-index: 997;
    animation: slideIn 0.5s ease-out;
}

.chatbot-welcome-toast.active { display: block; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100px); }
    to   { opacity: 1; transform: translateX(0); }
}

.welcome-toast-header { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.8rem; }
.welcome-toast-avatar { width: 35px; height: 35px; border-radius: 50%; border: 2px solid rgba(139,92,246,0.3); object-fit: contain; background: rgba(139,92,246,0.1); padding: 3px; }
.welcome-toast-title { font-weight: 700; font-size: 0.95rem; color: var(--purple-light); }
.welcome-toast-message { font-size: 0.85rem; color: var(--gray-light); line-height: 1.5; margin-bottom: 0.8rem; }

.welcome-toast-close {
    position: absolute; top: 0.8rem; right: 0.8rem;
    background: none; border: none; color: var(--gray);
    cursor: pointer; font-size: 1.2rem;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; border-radius: 50%;
}

.welcome-toast-close:hover { background: rgba(139,92,246,0.1); color: var(--white); }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
    .container, .nav-content { padding: 0 2rem; }
    .hero-title { font-size: 3.8rem; }
    .servicios-grid { grid-template-columns: 1fr; }
    .servicio-card.servicio-featured { grid-column: auto; }
    .team-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-contact-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions { gap: 0.5rem; }
    .nav-cta { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    .hero-title { font-size: 2.8rem; letter-spacing: -2px; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { grid-template-columns: 1fr; gap: 2rem; }
    .section-title { font-size: 2.2rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .proceso-step { padding: 1.5rem 1.5rem; gap: 1.25rem; }
    .ciclo-section { padding: 2.5rem 1.5rem; }
    .ciclo-arrow { display: none; }
    .ciclo-steps { gap: 1.5rem; }
    .ciclo-step { width: 140px; }
    .cta-section { padding: 3rem 1.5rem; }
    .cta-title { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .chatbot-window { bottom: 90px; right: 1.5rem; left: 1.5rem; width: auto; height: 500px; }
    .chatbot-welcome-toast { right: 1.5rem; left: 1.5rem; max-width: none; }
}

@media (max-width: 480px) {
    .chatbot-window { bottom: 0; right: 0; left: 0; top: 0; width: 100%; height: 100vh; border-radius: 0; border: none; }
    .comparativa-table { font-size: 0.8rem; }
    .comparativa-table th, .comparativa-table td { padding: 0.8rem 0.9rem; }
}