/* === FUENTE GLOBAL PARA TODA LA WEB === */
html, body {
    font-family: Arial, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; }
body {
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1e1b4b 0, #020617 45%, #02010f 100%);
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
}
a { text-decoration: none; color: inherit; }
p { line-height: 1.8; }

.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ORBS DE FONDO */
.orb {
    position: fixed;
    z-index: -2;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.65;
    pointer-events: none;
}
.orb-1 { width: 340px; height: 340px; background: #6366f1; top: -140px; left: -80px; }
.orb-2 { width: 380px; height: 380px; background: #ec4899; bottom: -160px; right: -60px; }
.orb-3 { width: 280px; height: 280px; background: #22c55e; top: 48%; right: 5%; }

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(4, 6, 18, 0.96), rgba(4, 6, 18, 0.7));
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.navbar-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 18px;
    color: #f9fafb;
}
.logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #e5e7eb, #6366f1 45%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #020617;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    color: #e5e7eb;
}
.nav-link {
    position: relative;
    padding-bottom: 2px;
    cursor: pointer;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 999px;
    transition: width 0.18s ease-out;
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICONO LOGIN */
.login-icon {
    border: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.18s ease, text-shadow 0.18s ease;
}
.login-icon:hover {
    transform: translateY(-1px) scale(1.15);
}

/* BOTONES GENÉRICOS (SIN SOMBRAS) */
.btn,
.btn-primary,
.btn-outline,
.plan-btn,
.compare-box button,
.compare-toggle-box button,
.cta button {
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
    padding: 11px 22px;
    border: none;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #f9fafb;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary span.icon { font-size: 18px; }
.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.06);
}

.btn-outline {
    padding: 9px 18px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 15px;
    color: #e5e7eb;
    background: transparent;
}
.btn-outline:hover {
    border-color: #6366f1;
    background: rgba(79, 70, 229, 0.25);
    transform: translateY(-1px) scale(1.04);
}

.section { padding: 40px 0; }

/* HERO */
.hero { padding-top: 34px; padding-bottom: 44px; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: flex-start;
    color: #f9fafb;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: minmax(0, 1fr); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 14px;
    color: #e5e7eb;
    margin-bottom: 20px;
    backdrop-filter: blur(14px);
}
.hero-badge span.tag {
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.25);
    color: #7dd3fc;
    font-weight: 500;
    font-size: 11px;
}
.hero-title {
    font-size: clamp(40px, 5.8vw, 54px);
    line-height: 1.14;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}
.hero-gradient {
    background: linear-gradient(135deg, #e5e7eb, #a5b4fc, #f9a8d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-subtitle {
    color: #cbd5f5;
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 26px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 16px;
}
.hero-meta strong { color: #e5e7eb; }

.benefits-strip {
    padding: 11px 14px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 14px;
    color: #e5e7eb;
}
.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 1);
}
.benefit-pill span.icon { font-size: 15px; }

/* HERO CARD (ESTADO EN TIEMPO REAL) */
.hero-card {
    position: relative;
    padding: 24px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.38), rgba(15, 23, 42, 0.96));
    overflow: hidden;
    backdrop-filter: blur(18px);
    color: #f9fafb;
    margin-top: 100px;
}
.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(248, 250, 252, 0.17), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}
.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.hero-card-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.hero-chip {
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 11px;
    background: rgba(15, 23, 42, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-card-body {
    margin-top: 6px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: center;
}
@media (max-width: 600px) {
    .hero-card-body { grid-template-columns: 1fr; }
}
.hero-metrics {
    display: grid;
    gap: 12px;
    font-size: 14px;
}
.metric-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: 9px 11px;
}
.metric-label { color: #9ca3af; font-size: 13px; }
.metric-value { font-weight: 600; font-size: 15px; }
.metric-sub {
    margin-top: 2px;
    font-size: 12px;
    color: #9ca3af;
}
.hero-metrics-extra {
    margin-top: 6px;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.6;
}
.hero-visual {
    position: relative;
    height: 160px;
    border-radius: 20px;
    background: radial-gradient(circle at top, #1e293b, #020617);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}
.hero-visual-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, 0.16) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(148, 163, 184, 0.16) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.7;
}
.hero-visual-core {
    width: 100px; height: 100px;
    border-radius: 999px;
    background: conic-gradient(from 210deg, #6366f1, #ec4899, #22c55e, #6366f1);
    position: relative;
    animation: rotateCore 18s linear infinite;
}
.hero-visual-core::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: inherit;
    background: radial-gradient(circle at top, #0f172a, #020617);
    border: 1px solid rgba(148, 163, 184, 0.6);
}
.hero-visual-label {
    position: absolute;
    bottom: 12px;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e5e7eb;
}
.hero-visual-label span.dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #22c55e;
}
@keyframes rotateCore {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

/* CABECERAS DE SECCIÓN */
.section-header {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    color: #f9fafb;
}
.section-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 30px;
}
.section-title {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
}
.section-subtitle {
    font-size: 15px;
    color: #9ca3af;
    max-width: 480px;
    margin-bottom: 10px; /* este */
}

/* PLANES */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
@media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: minmax(0, 1fr); }
}

.plan-card {
    position: relative;
    border-radius: 24px;
    background: rgba(249, 250, 251, 0.9);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
}
.plan-card:hover {
    background: rgba(255, 255, 255, 0.97);
    z-index: 2;
}

/* HEADERS PREMIUM */
.plan-header-bar {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* LuniGo – Oscuro elegante */
.plan-header-go {
    background: linear-gradient(140deg, #0f172a, #1e293b 50%, #0f172a);
}
.plan-header-go::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 0%, rgba(255,255,255,0.08), transparent 60%);
    pointer-events: none;
}

/* LuniPlus – Oscuro suave con toques azulados */
.plan-header-plus {
    background: linear-gradient(140deg, #111827, #1f2937 50%, #111827);
}
.plan-header-plus::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(160,185,255,0.10), transparent 65%);
    pointer-events: none;
}

/* LuniMax – Azul moderno */
.plan-header-max {
    background: linear-gradient(140deg, #1e3a8a, #2563eb 60%, #1d4ed8);
}
.plan-header-max::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12), transparent 65%);
    pointer-events: none;
}

/* LuniPro – Naranja premium */
.plan-header-pro {
    background: linear-gradient(140deg, #b45309, #f97316 60%, #ea580c);
}
.plan-header-pro::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 0%, rgba(255,255,255,0.12), transparent 70%);
    pointer-events: none;
}

/* Nombres centrados */
.plan-header-bar .plan-name {
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}


.plan-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    color: #0f172a;
    flex: 1;
}
.plan-price {
    font-size: 26px;
    font-weight: 700;
}
.plan-price span.period {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin-left: 4px;
}
.plan-note {
    font-size: 15px;
    color: #4b5563;
    margin-top: 2px;
}
.plan-divider {
    margin: 10px auto 8px auto;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.8), rgba(148, 163, 184, 0));
}

.plan-features-header {
    max-width: 280px;
    margin: 0 auto 4px auto;
    font-size: 13px;
    color: #6b7280;
    text-align: left;
}

.plan-features {
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 15px;
    color: #111827;
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}
.plan-features li {
    position: relative;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.plan-features li > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.7;
}
.plan-features span.bullet {
    width: 18px; height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(22, 163, 74, 0.18);
    color: #15803d;
    margin-top: 3px;
    flex-shrink: 0;
}
    
/* Botón INICIAR SESIÓN estilo premium (como Hablar con soporte) */
.login-btn-primary {
    padding: 8px 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #f9fafb;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease;
}
.login-btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.06);
}



/* BOTÓN INFO PEQUEÑO (planes + comparativa) */
.info-dot {
    margin-left: 4px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(249, 250, 251, 0.5);
    color: #6b7280;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.info-dot:hover {
    background: #e5e7eb;
    color: #111827;
}

.plan-features li .info-dot {
    position: absolute;
    top: 2px;
    right: 0;
    margin-left: 0;
}

/* Tooltip pequeño por característica */
.feature-tooltip {
    margin-left: 26px;
    margin-top: 4px;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.96);
    color: #e5e7eb;
    font-size: 13px;
    line-height: 1.6;
}

.plan-btn {
    margin-top: auto;
    padding: 10px 0;
    border: none;
    background: #0f172a;
    color: #f9fafb;
    font-size: 15px;
    width: 100%;
}
.plan-btn.primary {
    background: linear-gradient(135deg, #6366f1, #ec4899);
}
.plan-btn:hover {
    transform: translateY(-2px) scale(1.04);
    filter: brightness(1.03);
}

.compare-box {
    margin-top: 40px;
    text-align: center;
}
.compare-box button {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 15px;
}
.compare-box button:hover {
    border-color: #6366f1;
    background: rgba(79, 70, 229, 0.3);
    transform: translateY(-2px) scale(1.04);
}

.feature-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.96);
    color: #e5e7eb;
    font-size: 13px;
    line-height: 1.6;
    z-index: 20;
    max-width: 260px;
}

/* PASOS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    color: #f9fafb;
}
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: minmax(0, 1fr); }
}
.step-card {
    padding: 18px 18px 20px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.95);
    display: grid;
    gap: 8px;
    font-size: 15px;
}
.step-label {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.step-title { font-weight: 500; font-size: 16px; }

/* COMPARATIVA RÁPIDA (FONDO BLANCO TRANSLÚCIDO) */
.comparison {
    margin-top: 14px;
    padding: 20px 18px;
    border-radius: 22px;
    background: rgba(249, 250, 251, 0.9);
    backdrop-filter: blur(14px);
    font-size: 15px;
    color: #0f172a;
}
.comparison-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}
@media (max-width: 800px) {
    .comparison-grid { grid-template-columns: minmax(0, 1fr); }
}
.comparison-title { font-weight: 600; margin-bottom: 6px; }
.comparison-list { list-style: none; display: grid; gap: 6px; }
.comparison-list li { display: flex; gap: 6px; align-items: flex-start; }
.comparison-list span.dot {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: #6366f1;
    margin-top: 7px;
    flex-shrink: 0;
}

/* BOTÓN COMPARATIVA COMPLETA */
.compare-toggle-box {
    margin-top: 40px;
    text-align: center;
}
.compare-toggle-box button {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    color: #e5e7eb;
    font-size: 15px;
}
.compare-toggle-box button:hover {
    border-color: #6366f1;
    transform: translateY(-1px) scale(1.03);
}

/* TABLA COMPARATIVA GRANDE (BLANCA CON LIGERA TRANSPARENCIA) */
.compare-table {
    margin-top: 18px;
    background: rgba(249, 250, 251, 0.9);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 10px 12px;
    overflow-x: auto;
    display: none;
}
.compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #0f172a;
    min-width: 720px;
}
.compare-table th,
.compare-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    text-align: left; /* textos alineados a la izquierda */
}
.compare-table th {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b5563;
}

.compare-table td.check {
    color: #22c55e;   /* verde tipo hosting pro */
    font-weight: 800; /* más grueso */
    font-size: 18px;  /* más grande y visible */
}
.compare-table td.cross {
    color: #9ca3af;   /* gris elegante */
    font-weight: 600; /* gruesa */
    font-size: 18px;  /* tamaño grande */
}


.compare-feature-cell {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* <-- evita que se vaya a la derecha */
    gap: 6px;
    position: relative; /* <- importante para posicionar el tooltip encima */
}
.compare-feature-cell span.label {
    font-weight: 500;
}
.compare-feature-cell .info-dot {
    position: static; /* en tabla no absolute */
}

/* FAQ + CTA */
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
    color: #f9fafb;
}
@media (max-width: 900px) {
    .faq-grid { grid-template-columns: minmax(0, 1fr); }
}
.faq-list { display: grid; gap: 10px; }
.faq-item {
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.95);
    font-size: 15px;
}
.faq-q { font-weight: 500; margin-bottom: 4px; }
.faq-a { color: #9ca3af; font-size: 14px; }

.cta {
    margin-top: 22px;
    padding: 20px 20px;
    border-radius: 22px;
    background: radial-gradient(circle at right, rgba(79, 70, 229, 0.7), rgba(15, 23, 42, 0.98));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.cta-title { font-size: 18px; font-weight: 600; }
.cta-text { font-size: 14px; color: #e5e7eb; max-width: 420px; }
.cta button:hover {
    transform: translateY(-2px) scale(1.05);
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(55, 65, 81, 0.8);
    padding: 24px 0 32px;
    margin-top: 42px;
    font-size: 14px;
    color: #9ca3af;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 8px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-links a { color: #9ca3af; }
.footer-links a:hover { color: #e5e7eb; }

/* REVEAL ANIMATION (una vez, sin parpadeo) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .navbar-inner { gap: 10px; }
    .hero-title { font-size: 34px; }
    .benefits-strip { border-radius: 16px; }
}
/* Zoom real en las tarjetas (por encima del efecto reveal) */
.plan-card.reveal.visible:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.97);
    z-index: 2;
}


/*FOOTER*/
footer {
border-top: 1px solid rgba(55, 65, 81, 0.8); /* Línea superior */
padding: 24px 0; /* Espaciado superior e inferior */
font-size: 14px; /* Tamaño de la fuente */
color: #9ca3af; /* Color del texto */
}

/* Contenedor de flexbox para distribuir los elementos entre izquierda y derecha */
.footer-grid {
display: flex;
justify-content: space-between; /* Los elementos se distribuyen entre los extremos */
align-items: center; /* Centra los elementos verticalmente */
}

/* Los enlaces estarán a la derecha */
.footer-links {
display: flex;
gap: 12px; /* Espacio entre los enlaces */
order: 2; /* Los enlaces se moverán a la derecha usando el orden */
}

/* Estilo para los enlaces */
.footer-links a {
color: #9ca3af;
}

.footer-links a:hover {
color: #e5e7eb; /* Cambio de color cuando el ratón pasa sobre ellos */
}

/* Copyright alineado a la izquierda */
.footer-copyright {
text-align: left; /* Alinea el texto a la izquierda */
order: 1; /* El copyright se mueve a la izquierda */
}

/* Estilos para pantallas más pequeñas (por ejemplo, móviles) */
@media (max-width: 768px) {
.footer-grid {
    flex-direction: column; /* Los elementos se apilan verticalmente */
    align-items: center; /* Centra los elementos */
    text-align: center; /* Centra el texto */
}

.footer-links {
    margin-bottom: 20px; /* Espacio entre los enlaces y el copyright */
    flex-direction: column; /* Los enlaces se apilan verticalmente */
    gap: 10px; /* Espacio entre los enlaces */
}

.footer-copyright {
    margin-top: 20px; /* Espacio entre los enlaces y el copyright */
}
}

