/* ==========================================================================
   Base & Resets
   ========================================================================== */
html.scroll-smooth {
    scroll-behavior: smooth;
}

body {
    background-color: #020617; /* Slate 950 */
    color: #f1f5f9;            /* Slate 100 */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, ::before, ::after {
    box-sizing: inherit;
}

/* Base de FontAwesome sin flicker */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}
/* ==========================================================================
   Estilos Generales de Body y Animaciones
   ========================================================================== */
.site-body {
    background-color: #020617;
    color: #f1f5f9;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    letter-spacing: normal;
    margin: 0;
}

.hidden {
    display: none !important;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 4s infinite;
}

.text-gradient {
    background: linear-gradient(to right, #34d399, #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-icon-wrapper {
    background-color: #18181b;
    color: #34d399;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    letter-spacing: -0.05em;
}

.logo-icon {
    font-size: 0.875rem;
}

.logo-text-main {
    font-weight: 900;
    letter-spacing: -0.025em;
}

.logo-text-code {
    background: linear-gradient(to right, #34d399, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: monospace;
    font-size: 1.125rem;
    text-transform: lowercase;
    font-weight: 700;
    letter-spacing: normal;
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #d1d5db;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ffffff;
}

.btn-whatsapp-universal {
    text-decoration: none;
}

.btn-nav-contact {
    background-color: #10b981;
    color: #ffffff;
    font-weight: 700;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav-contact:hover {
    background-color: #059669;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-menu-btn:focus {
    outline: none;
}

.mobile-menu-btn:hover {
    color: #22d3ee;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    background-color: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    font-weight: 600;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.mobile-menu > * + * {
    margin-top: 1rem;
}

.mobile-nav-link {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1e293b;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #ffffff;
}

.btn-mobile-contact {
    display: block;
    text-align: center;
    background-color: #10b981;
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 0;
    border-radius: 0.75rem;
    transition: background-color 0.2s;
}

.btn-mobile-contact:hover {
    background-color: #059669;
}

.mr-2 {
    margin-right: 0.5rem;
}

.navbar-spacer {
    height: 5rem;
    background-color: #0f172a;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: #020617;
    color: #ffffff;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.hero-bg-glow-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
}

.hero-bg-glow-2 {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.hero-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
    }
}

.hero-content {
    width: 100%;
    text-align: center;
}

.hero-content > * + * {
    margin-top: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-content {
        width: 50%;
        text-align: left;
    }
}

.badge-smart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #60a5fa;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.375;
    margin: 0;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

.hero-description {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-buttons {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-hero-primary {
    background-color: #10b981;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background-color: #059669;
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
}

.btn-hero-secondary {
    border: 1px solid #334155;
    color: #cbd5e1;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    border-color: #64748b;
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-visual {
        width: 50%;
    }
}

.browser-mockup {
    width: 100%;
    max-width: 32rem;
    background-color: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}

.browser-mockup:hover {
    border-color: #334155;
}

.browser-header {
    background-color: #020617;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(30, 41, 59, 0.8);
}

.browser-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

.bg-rose { background-color: rgba(244, 63, 94, 0.8); }
.bg-amber { background-color: rgba(245, 158, 11, 0.8); }
.bg-emerald { background-color: rgba(16, 185, 129, 0.8); }

.browser-url {
    background-color: #0f172a;
    font-size: 11px;
    color: #64748b;
    font-family: monospace;
    padding: 0.125rem 0.75rem;
    border-radius: 0.375rem;
    margin-left: 1rem;
    letter-spacing: 0.025em;
    width: 100%;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browser-content {
    position: relative;
    width: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.mockup-img {
    width: auto;
    height: 100%;
    max-height: 400px;
    object-fit: contain;
    opacity: 0.9;
}

.floating-badge {
    display: none;
    position: absolute;
    bottom: -2.25rem;
    left: -2.25rem;
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid #1e293b;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    align-items: center;
    gap: 0.75rem;
    max-width: 200px;
    backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
    .floating-badge {
        display: flex;
    }
}

.badge-icon-box {
    width: 2.25rem;
    height: 2.25rem;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.badge-label {
    display: block;
    font-size: 10px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    color: #ffffff;
}
/* ==========================================================================
   Sección de Ventajas Competitivas
   ========================================================================== */
.features-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: #020617;
}

.features-header {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.features-header > * + * {
    margin-top: 1rem;
}

.features-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin: 0;
}

@media (min-width: 768px) {
    .features-title {
        font-size: 2.25rem;
    }
}

.features-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-card {
    background-color: #0f172a;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #1e293b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card > * + * {
    margin-top: 1rem;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    transform: translateY(-0.5rem);
    border-color: #334155;
}

.feature-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border-width: 1px;
    border-style: solid;
}

/* Variaciones de Color de los Íconos */
.icon-blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.2);
}

.icon-emerald {
    background-color: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}

.icon-purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.2);
}

.icon-amber {
    background-color: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.2);
}

.icon-rose {
    background-color: rgba(244, 63, 94, 0.1);
    color: #fb7185;
    border-color: rgba(244, 63, 94, 0.2);
}

.icon-cyan {
    background-color: rgba(6, 182, 212, 0.1);
    color: #22d3ee;
    border-color: rgba(6, 182, 212, 0.2);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.feature-card-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
    margin: 0;
}
/* ==========================================================================
   Sección: Cómo Trabajamos (Proceso)
   ========================================================================== */
.process-section {
    background-color: #0f172a;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.process-container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.process-header {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.process-header > * + * {
    margin-top: 1rem;
}

.process-tag {
    color: #22d3ee;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin: 0;
}

@media (min-width: 768px) {
    .process-title {
        font-size: 2.25rem;
    }
}

.process-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    margin: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.process-card {
    background-color: #020617;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(30, 41, 59, 0.8);
    position: relative;
}

.process-step-badge {
    position: absolute;
    top: -1.25rem;
    left: 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.process-card-content {
    padding-top: 1rem;
}

.process-card-content > * + * {
    margin-top: 0.5rem;
}

.process-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.process-card-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
    margin: 0;
}

.process-link {
    color: #34d399;
    text-decoration: none;
}

.process-link:hover {
    text-decoration: underline;
}
/* ==========================================================================
   Sección de Planes y Servicios (Precios)
   ========================================================================== */
.pricing-section {
    background-color: #020617;
    color: #ffffff;
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: rgba(6, 182, 212, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
    pointer-events: none;
}

.pricing-container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.pricing-header > * + * {
    margin-top: 1rem;
}

.pricing-tag {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    color: #34d399;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
}

.pricing-title {
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin: 0;
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 3rem;
    }
}

.pricing-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 768px) {
    .pricing-subtitle {
        font-size: 1.125rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Tarjeta Base */
.pricing-card {
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-starter {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(30, 41, 59, 0.8);
}

.card-starter:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 25px rgba(16, 185, 129, 0.05);
}

.card-pro {
    background-color: #0f172a;
    border: 2px solid rgba(6, 182, 212, 0.8);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 15px -3px rgba(8, 145, 178, 0.2);
}

.card-pro:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(6, 182, 212, 0.1);
}

/* Borde superior decorativo */
.card-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accent-emerald {
    background-color: #10b981;
}

.card-starter:hover .card-top-accent {
    opacity: 1;
}

/* Insignia Recomendado */
.badge-recommended {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #06b6d4;
    color: #020617;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.5625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 0.5rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card-content > * + * {
    margin-top: 1.5rem;
}

.plan-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.625rem;
    display: block;
    margin-bottom: 0.25rem;
}

.code-emerald { color: #34d399; }
.code-cyan { color: #22d3ee; }

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.plan-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.625;
    margin: 0;
}

.plan-price {
    font-size: 1.875rem;
    font-weight: 900;
    color: #ffffff;
}

.plan-tax {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-disclaimer {
    display: block;
    font-size: 0.6875rem;
    font-style: italic;
    margin-top: 0.25rem;
}

.disclaimer-slate { color: #64748b; }
.disclaimer-cyan { color: rgba(6, 182, 212, 0.7); }

.card-divider {
    border: 0;
    height: 1px;
}

.divider-dark { background-color: rgba(30, 41, 59, 0.6); }
.divider-pro { background-color: #1e293b; }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features > * + * {
    margin-top: 0.875rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}

.feature-icon {
    font-size: 0.75rem;
    flex-shrink: 0;
}

.text-emerald { color: #34d399; }
.text-cyan { color: #22d3ee; }

.feature-highlight {
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.highlight-emerald {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.highlight-cyan {
    background-color: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #67e8f9;
}

.directory-link {
    text-decoration: none;
}

.link-emerald { color: #34d399; }
.link-cyan { color: #67e8f9; }

.directory-link:hover {
    text-decoration: underline;
}

.card-footer {
    padding-top: 2rem;
}

.btn-deploy {
    display: block;
    text-align: center;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-starter {
    background-color: #1e293b;
    color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-starter:hover {
    background-color: #10b981;
    color: #ffffff;
    transform: translateY(-0.125rem);
}

.btn-pro {
    background-color: #06b6d4;
    color: #020617;
    font-weight: 900;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.2);
}

.btn-pro:hover {
    background-color: #0891b2;
    transform: translateY(-0.125rem);
}
/* ==========================================================================
   Sección: Servicio Recurrente y Add-ons
   ========================================================================== */

/* 1. Mantenimiento y Hosting Recurrente */
.recurrent-section {
    max-width: 56rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.recurrent-card {
    background: linear-gradient(135deg, #0f172a 0%, #0f172a 60%, rgba(6, 78, 59, 0.4) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .recurrent-card {
        padding: 2rem;
    }
}

.recurrent-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .recurrent-content {
        flex-direction: row;
    }
}

.recurrent-info {
    text-align: center;
}

.recurrent-info > * + * {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .recurrent-info {
        text-align: left;
    }
}

.recurrent-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 9999px;
    color: #34d399;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.recurrent-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

@media (min-width: 768px) {
    .recurrent-title {
        font-size: 1.5rem;
    }
}

.recurrent-desc {
    font-size: 0.75rem;
    color: #cbd5e1;
    max-width: 36rem;
    line-height: 1.625;
    margin: 0;
}

@media (min-width: 768px) {
    .recurrent-desc {
        font-size: 0.875rem;
    }
}

.recurrent-checklist {
    padding-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 500;
}

@media (min-width: 640px) {
    .recurrent-checklist {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.checklist-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .checklist-item {
        justify-content: flex-start;
    }
}

.check-icon {
    color: #34d399;
}

.recurrent-price-box {
    text-align: center;
    flex-shrink: 0;
    background-color: rgba(2, 6, 23, 0.6);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(30, 41, 59, 0.8);
    width: 100%;
}

@media (min-width: 768px) {
    .recurrent-price-box {
        text-align: right;
        width: auto;
    }
}

.recurrent-price {
    font-size: 1.875rem;
    font-weight: 900;
    color: #ffffff;
}

.price-period {
    font-size: 0.75rem;
    font-weight: 400;
    color: #94a3b8;
}

.recurrent-tax {
    display: block;
    font-size: 0.625rem;
    color: #34d399;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin-bottom: 1rem;
}

.btn-recurrent {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #10b981;
    color: #020617;
    font-weight: 700;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2);
}

.btn-recurrent:hover {
    background-color: #059669;
}

/* 2. Add-ons y Servicios Adicionales */
.addons-section {
    max-width: 56rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.addons-header {
    text-align: center;
    margin-bottom: 2rem;
}

.addons-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.addons-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0;
}

@media (min-width: 768px) {
    .addons-subtitle {
        font-size: 0.875rem;
    }
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .addons-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.addon-card {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.addon-card:hover {
    border-color: #334155;
}

.addon-content > * + * {
    margin-top: 0.75rem;
}

.addon-icon-box {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border-width: 1px;
    border-style: solid;
}

.icon-cyan {
    background-color: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.icon-purple {
    background-color: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.icon-amber {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.addon-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.addon-card-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.625;
    margin: 0;
}

.text-highlight {
    color: #e2e8f0;
    font-weight: 500;
}

.addon-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(30, 41, 59, 0.6);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addon-price {
    font-size: 1.125rem;
    font-weight: 900;
    color: #ffffff;
}

.addon-tax {
    font-size: 0.625rem;
    color: #64748b;
}

.btn-addon {
    font-size: 0.75rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-addon-cyan { color: #22d3ee; }
.btn-addon-cyan:hover { color: #67e8f9; }

.btn-addon-purple { color: #c084fc; }
.btn-addon-purple:hover { color: #e9d5ff; }

.btn-addon-amber { color: #fbbf24; }
.btn-addon-amber:hover { color: #fde68a; }

/* ==========================================================================
   Sección: Filosofía y Portafolio de Casos de Éxito
   ========================================================================== */

/* 1. Bloque de Ventaja Competitiva (Filosofía) */
.philosophy-section {
    max-width: 56rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.philosophy-card {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .philosophy-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.philosophy-icon-box {
    width: 3rem;
    height: 3rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.philosophy-content {
    text-align: center;
}

.philosophy-content > * + * {
    margin-top: 0.75rem;
}

@media (min-width: 640px) {
    .philosophy-content {
        text-align: left;
    }
}

.philosophy-tag {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1.125rem;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 768px) {
    .philosophy-tag {
        font-size: 1.5rem;
    }
}

.philosophy-quote {
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.philosophy-text {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.625;
    margin: 0;
}

@media (min-width: 768px) {
    .philosophy-text {
        font-size: 1rem;
    }
}

.text-white { color: #ffffff; }

/* 2. Sección de Socios / Casos de Éxito */
.portfolio-section {
    margin-top: 1rem;
}

.portfolio-container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.portfolio-container > * + * {
    margin-top: 1rem;
}

/* Cliente Insignia: Aquí Aquí */
.flagship-card {
    background: linear-gradient(135deg, #0f172a 0%, #18181b 50%, #020617 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.flagship-blur {
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
    transition: background-color 0.5s ease;
}

.flagship-card:hover .flagship-blur {
    background-color: rgba(230, 126, 34, 0.15);
}

.flagship-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .flagship-content {
        flex-direction: row;
    }
}

.flagship-icon-box {
    width: 4rem;
    height: 4rem;
    background-color: #18181b;
    color: #e67e22;
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(230, 126, 34, 0.1);
}

.animated-bounce {
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-5%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

.flagship-info {
    text-align: center;
    flex: 1 1 0%;
}

.flagship-info > * + * {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .flagship-info {
        text-align: left;
    }
}

.flagship-tag {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    color: #e67e22;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
}

.flagship-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin: 0;
}

@media (min-width: 768px) {
    .flagship-title {
        font-size: 1.5rem;
    }
}

.flagship-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.625;
    margin: 0;
}

.font-semibold { font-weight: 600; }

.link-orange {
    color: #e67e22;
    text-decoration: none;
}

.link-orange:hover {
    text-decoration: underline;
}

.flagship-action {
    flex-shrink: 0;
    padding-top: 0.5rem;
}

@media (min-width: 768px) {
    .flagship-action {
        padding-top: 0;
    }
}

.btn-flagship {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #cbd5e1;
    background-color: #18181b;
    border: 1px solid #1e293b;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-flagship:hover {
    color: #ffffff;
    background-color: #27272a;
    border-color: rgba(230, 126, 34, 0.5);
}

.btn-flagship i {
    color: #e67e22;
    font-size: 0.75rem;
}

/* Grilla de Proyectos Adicionales */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.project-card {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(30, 41, 59, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.border-cyan-hover:hover { border-color: rgba(6, 182, 212, 0.3); }
.border-emerald-hover:hover { border-color: rgba(16, 185, 129, 0.3); }
.border-blue-hover:hover { border-color: rgba(59, 130, 246, 0.3); }
.border-pink-hover:hover { border-color: rgba(236, 72, 153, 0.3); }

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.project-tag {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-cyan { color: #22d3ee; }
.tag-emerald { color: #34d399; }
.tag-blue { color: #60a5fa; }
.tag-pink { color: #f472b6; }

.project-icon-box {
    width: 2rem;
    height: 2rem;
    background-color: #18181b;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-width: 1px;
    border-style: solid;
}

.icon-cyan { color: #22d3ee; border-color: rgba(6, 182, 212, 0.2); }
.icon-emerald { color: #34d399; border-color: rgba(16, 185, 129, 0.2); }
.icon-blue { color: #60a5fa; border-color: rgba(59, 130, 246, 0.2); }
.icon-pink { color: #f472b6; border-color: rgba(236, 72, 153, 0.2); }

.project-body > * + * {
    margin-top: 0.25rem;
}

.project-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.project-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.625;
    margin: 0;
}

.project-footer {
    padding-top: 1.5rem;
}

.btn-project {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-project-cyan:hover { color: #22d3ee; }
.btn-project-emerald:hover { color: #34d399; }
.btn-project-blue:hover { color: #60a5fa; }
.btn-project-pink:hover { color: #f472b6; }

.btn-project i {
    font-size: 0.5rem;
}
/* ==========================================================================
   Sección: Footer Comercial
   ========================================================================== */

.footer-main {
    background-color: #0f172a;
    color: #94a3b8;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-col > * + * {
    margin-top: 1rem;
}

/* Marca */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

.brand-badge {
    background-color: #18181b;
    color: #34d399;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.footer-desc {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.625;
    max-width: 24rem;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}

.footer-socials a {
    color: #94a3b8;
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #ffffff;
}

/* Garantías y Titulares */
.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin: 0;
}

.text-emerald { color: #34d399; }
.text-cyan { color: #22d3ee; }
.text-blue { color: #60a5fa; }
.text-amber { color: #fbbf24; }

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.guarantee-list > * + * {
    margin-top: 0.625rem;
}

.guarantee-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.guarantee-list i {
    margin-top: 0.25rem;
}

/* Botón de Acción */
.footer-action {
    padding-top: 0.5rem;
}

.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background-color: #059669;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-footer:hover {
    background-color: #10b981;
}

/* Copyright */
.footer-bottom {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
/* ==========================================================================
   Estilos de Navbar y Menú Móvil
   ========================================================================== */
/* Navbar principal compacto */
.navbar-main {
    background-color: #0b0f19;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative; /* Importante para posicionar el menú desplegable */
    z-index: 100;
    width: 100%;
}

.navbar-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Regla estricta para ocultar */
.hidden {
    display: none !important;
}

/* Menú móvil flotante sobre el contenido */
.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0b0f19;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 99;
}