/**
 * NetTech Solutions - Estilos Principales
 * Conversión de Tailwind CSS a CSS estándar
 */

/* ========================================
   VARIABLES CSS (Design System)
   ======================================== */
:root {
    /* "Cyber Dark" Theme Variables */
    /* Base Colors - Deep Space / Slate */
    --background: 222 47% 2%;
    /* #02040a - Almost black */
    --foreground: 210 40% 98%;
    /* #f8fafc */

    --card: 222 47% 4%;
    /* #050b14 */
    --card-foreground: 210 40% 98%;

    --popover: 222 47% 4%;
    --popover-foreground: 210 40% 98%;

    /* Primary - Neon Cyan */
    --primary: 190 100% 50%;
    /* #00f0ff - Cyber Blue/Cyan */
    --primary-foreground: 222 47% 11%;

    /* Secondary - Neon Purple */
    --secondary: 270 100% 60%;
    /* #aa00ff - Electric Purple */
    --secondary-foreground: 210 40% 98%;

    /* Accents */
    --muted: 217 33% 10%;
    --muted-foreground: 215 20% 65%;

    --accent: 180 100% 50%;
    --accent-foreground: 222 47% 11%;

    --destructive: 0 100% 60%;
    --destructive-foreground: 210 40% 98%;

    --border: 217 33% 15%;
    --input: 217 33% 15%;
    --ring: 190 100% 50%;

    --radius: 0.5rem;
    --white: 0 0% 100%;

    /* Gradients */
    --gradient-start: 222 47% 4%;
    --gradient-end: 222 47% 8%;

    /* Effects */
    --glow-primary: 0 0 20px hsl(var(--primary) / 0.5);
    --glow-secondary: 0 0 20px hsl(var(--secondary) / 0.5);
}

/* Base styles for the new theme */
body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Inter', sans-serif;
    /* Background Grid Pattern */
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--background));
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--border));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary) / 0.5);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESET Y BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   UTILIDADES
   ======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

.text-primary {
    color: hsl(var(--primary));
}

.text-secondary {
    color: hsl(var(--secondary));
}

.text-muted {
    color: hsl(var(--muted-foreground));
}

.bg-card {
    background-color: hsl(var(--card));
}

.bg-card-light {
    background-color: hsl(var(--primary) / 0.05);
}

.bg-muted {
    background-color: hsl(var(--muted));
}

.bg-white {
    background-color: #ffffff;
    /* Explicit white for mixed theme */
}

/* Glassmorphism & Cyber Utilities */
.glass-effect {
    background: rgba(5, 11, 20, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon-text {
    color: hsl(var(--primary));
    text-shadow: 0 0 10px hsl(var(--primary) / 0.5);
}

.neon-border {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 10px hsl(var(--primary) / 0.3);
}

.glow-hover:hover {
    box-shadow: 0 0 20px hsl(var(--primary) / 0.2);
    border-color: hsl(var(--primary) / 0.5);
}

/* ========================================
   ICONOS
   ======================================== */
.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 2.5rem;
    height: 2.5rem;
}

.icon-xl {
    width: 4rem;
    height: 4rem;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background-color: hsl(var(--card));
    border-bottom: 1px solid hsl(var(--border));
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
}

.top-bar-link:hover {
    color: hsl(var(--primary));
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 2.5rem;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: hsl(var(--background) / 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
    }
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.navbar-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: hsl(var(--primary));
}

.brand-text {
    color: hsl(var(--foreground));
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.desktop-menu {
    display: none;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary));
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

@media (min-width: 1280px) {
    .desktop-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .navbar-menu {
        gap: 1.75rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }
}

@media (min-width: 1440px) {
    .navbar-menu {
        gap: 2rem;
    }
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    flex: 1;
    padding-top: 7.5rem;
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 5rem;
    }
}

/* Gradiente de fondo para hero sections */
.bg-gradient-tech {
    background: linear-gradient(135deg, hsl(var(--gradient-start)), hsl(var(--gradient-end)));
    position: relative;
    padding-top: 10rem !important;
    padding-bottom: 5rem !important;
}

/* ========================================
   BOTONES
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background-color: hsl(var(--primary) / 0.9);
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
    background-color: hsl(var(--secondary) / 0.9);
}

.btn-outline {
    border-color: hsl(var(--border));
    background-color: transparent;
    color: hsl(var(--foreground));
}

.btn-outline:hover {
    background-color: hsl(var(--secondary));
    border-color: hsl(var(--secondary));
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, hsl(var(--primary) / 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, hsl(var(--secondary) / 0.1), transparent 50%),
        linear-gradient(to bottom, hsl(var(--background)), hsl(var(--background) / 0.9));
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, hsl(var(--primary) / 0.08), transparent 50%);
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: hsl(var(--primary));
    width: fit-content;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: hsl(var(--white) / 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 8px 32px -4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: hsl(var(--white) / 0.05);
    border-color: hsl(var(--primary) / 0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   GRID LAYOUTS
   ======================================== */
.grid-2 {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    gap: 2rem;
}

.grid-4 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   CARDS
   ======================================== */
.card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    overflow: hidden;
    /* Glass effect by default for cards in dark mode */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    border-color: hsl(var(--primary) / 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px -10px rgba(0, 240, 255, 0.1);
}

.card-header {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-content {
    padding: 1.5rem;
    padding-top: 0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-description {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius);
    background-color: hsl(var(--primary) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: hsl(var(--primary));
    font-weight: 500;
    transition: gap 0.2s ease;
}

.card-hover:hover .card-link {
    gap: 0.5rem;
}

.arrow-icon {
    transition: transform 0.2s ease;
}

.card-hover:hover .arrow-icon {
    transform: translateX(4px);
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing-card {
    position: relative;
}

.pricing-card.featured {
    border-color: hsl(var(--primary));
    background-color: hsl(var(--card));
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.featured-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1.5rem;
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
}

.pricing {
    padding-top: 0.5rem;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.period {
    color: hsl(var(--muted-foreground));
    margin-left: 0.25rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.features-list li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.features-list li span {
    font-size: 0.875rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    padding-top: 0.5rem;
    border-top: 1px solid hsl(var(--border));
}

.author-name {
    font-weight: 600;
    color: hsl(var(--foreground));
}

.author-role {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--card) / 0.5));
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-title {
    font-size: 2rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.brand-gradient {
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
}

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.footer-contact a {
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.footer-copyright {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: hsl(var(--muted-foreground));
    background: hsl(var(--muted) / 0.3);
    border: 1px solid hsl(var(--border));
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   UTILIDADES ADICIONALES
   ======================================== */
.ml-2 {
    margin-left: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}


/* ========================================
   FORMULARIOS
   ======================================== */
form {
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

input::placeholder,
textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* ========================================
   TABLAS
   ======================================== */
table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid hsl(var(--border));
}

th {
    font-weight: 600;
    background-color: hsl(var(--card));
}

tr:hover {
    background-color: hsl(var(--secondary) / 0.05);
}

/* ========================================
   ACCORDION (FAQ)
   ======================================== */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background-color: hsl(var(--card));
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.accordion-trigger:hover {
    background-color: hsl(var(--muted) / 0.3);
}

.accordion-trigger::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-inner {
    padding: 0 1.5rem 1rem;
    color: hsl(var(--muted-foreground));
}

/* ========================================
   TABS
   ======================================== */
.tabs {
    width: 100%;
}

.tabs-list {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid hsl(var(--border));
    margin-bottom: 1.5rem;
}

.tab-trigger {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-trigger:hover {
    color: hsl(var(--foreground));
}

.tab-trigger.active {
    color: hsl(var(--primary));
    border-bottom-color: hsl(var(--primary));
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ========================================
   BADGES
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    white-space: nowrap;
}

.badge-primary {
    background-color: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.badge-secondary {
    background-color: hsl(var(--secondary) / 0.1);
    color: hsl(var(--secondary));
}

.badge-success {
    background-color: hsl(120 60% 50% / 0.1);
    color: hsl(120 60% 40%);
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid;
    margin-bottom: 1rem;
}

.alert-info {
    background-color: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.3);
    color: hsl(var(--primary));
}

.alert-success {
    background-color: hsl(120 60% 50% / 0.1);
    border-color: hsl(120 60% 50% / 0.3);
    color: hsl(120 60% 30%);
}

.alert-warning {
    background-color: hsl(var(--secondary) / 0.1);
    border-color: hsl(var(--secondary) / 0.3);
    color: hsl(var(--secondary));
}

.alert-error {
    background-color: hsl(var(--destructive) / 0.1);
    border-color: hsl(var(--destructive) / 0.3);
    color: hsl(var(--destructive));
}

/* ========================================
   LOADING SPINNER
   ======================================== */
.spinner {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid hsl(var(--border));
    border-top-color: hsl(var(--primary));
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.breadcrumbs a {
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: hsl(var(--primary));
}

.breadcrumbs-separator {
    color: hsl(var(--border));
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    color: hsl(var(--foreground));
    transition: all 0.2s ease;
}

.pagination-item:hover {
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.pagination-item.active {
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* ========================================
   MODAL/DIALOG
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    max-width: 32rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* ========================================
   TOOLTIPS
   ======================================== */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: hsl(var(--popover));
    color: hsl(var(--popover-foreground));
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress {
    width: 100%;
    height: 0.5rem;
    background-color: hsl(var(--muted));
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: hsl(var(--primary));
    transition: width 0.3s ease;
}

/* ========================================
   SKELETON LOADING
   ======================================== */
.skeleton {
    background: linear-gradient(90deg,
            hsl(var(--muted)) 0%,
            hsl(var(--muted) / 0.5) 50%,
            hsl(var(--muted)) 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
.show-mobile {
    display: block;
}

.show-tablet {
    display: none;
}

.show-desktop {
    display: none;
}

@media (min-width: 768px) {
    .show-mobile {
        display: none;
    }

    .show-tablet {
        display: block;
    }
}

@media (min-width: 1024px) {
    .show-tablet {
        display: none;
    }

    .show-desktop {
        display: block;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {

    .navbar,
    .footer,
    .btn,
    .mobile-menu-btn {
        display: none !important;
    }

    body {
        background-color: white;
        color: black;
    }

    .main-content {
        padding-top: 0;
    }
}

/* ========================================
   ANIMACIONES ADICIONALES
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

/* ========================================
   DARK MODE SUPPORT (Opcional)
   ======================================== */
@media (prefers-color-scheme: dark) {
    /* Los colores ya están configurados para dark mode por defecto */
}

/* ========================================
   ACCESIBILIDAD
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible para navegación por teclado */
*:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* Reducir movimiento para usuarios con preferencias de accesibilidad */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ========================================
   ANIMACIÓN PULSE PARA HERO
   ======================================== */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.4;
    }
}


/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }
}


/* ========================================
   TRUST BADGES
   ======================================== */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    transition: transform 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}

/* ========================================
   PREMIUM EFFECTS
   ======================================== */
.card-hover:hover {
    box-shadow: 0 0 20px hsl(var(--primary) / 0.2);
    border-color: hsl(var(--primary) / 0.5);
}

/* ========================================
   CHATBOT
   ======================================== */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.chatbot-window.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.chatbot-header {
    padding: 1rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--secondary) / 0.1));
    border-bottom: 1px solid hsl(var(--border));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-title {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
    padding: 0.25rem;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message.bot {
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
    border-bottom-left-radius: 0.25rem;
    align-self: flex-start;
}

.message.user {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: white;
    border-bottom-right-radius: 0.25rem;
    align-self: flex-end;
}

.chatbot-input-area {
    padding: 1rem;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    gap: 0.5rem;
}

.chatbot-input {
    flex: 1;
    background-color: hsl(var(--input));
    border: 1px solid hsl(var(--border));
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    color: hsl(var(--foreground));
    outline: none;
}

.chatbot-input:focus {
    border-color: hsl(var(--primary));
}

.chatbot-send {
    background: none;
    border: none;
    color: hsl(var(--primary));
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.chatbot-send:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 2rem);
        right: -1rem;
        bottom: 4rem;
    }
}

/* ============================================
   CHATBOT WIDGET STYLES
   ============================================ */

.chatbot-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.chatbot-toggle .icon {
    width: 28px;
    height: 28px;
}

.chatbot-window {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    width: 380px;
    height: 500px;
    background: hsl(var(--card));
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.chatbot-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    color: white;
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.chatbot-title .icon {
    width: 24px;
    height: 24px;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chatbot-messages .message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    line-height: 1.5;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-messages .message.bot {
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.chatbot-messages .message.user {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.chatbot-input-area {
    padding: 1rem;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    gap: 0.5rem;
}

.chatbot-input {
    flex: 1;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--background));
    border-radius: 2rem;
    padding: 0.75rem 1rem;
    color: hsl(var(--foreground));
    outline: none;
    font-size: 0.95rem;
}

.chatbot-input:focus {
    border-color: hsl(var(--primary));
}

.chatbot-send {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chatbot-send:hover {
    transform: scale(1.1);
}

.chatbot-send .icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 5rem;
        height: 450px;
    }

    .chatbot-widget {
        right: 1rem;
        bottom: 1rem;
    }
}

/* ============================================
   PDF DOWNLOAD SECTION
   ============================================ */

.pdf-download-section {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--secondary) / 0.05));
}

.pdf-download-card {
    max-width: 900px;
    margin: 0 auto;
    background: hsl(var(--card));
    border: 2px solid hsl(var(--primary) / 0.2);
}

.pdf-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pdf-download-card .card-content>div:first-child {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 1.5rem !important;
    }

    .pdf-icon-wrapper {
        margin: 0 auto;
    }

    .pdf-download-card .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Custom Redesign Classes */
.navbar-icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
}

.trust-section {
    padding: 3rem 0;
    background-color: hsl(var(--muted) / 0.3);
}

.trust-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.trust-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trust-item:hover {
    opacity: 1;
}

.visual-hero-section {
    padding: 6rem 0;
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.pdf-download-section {
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--secondary) / 0.05));
    padding: 5rem 0;
}

.cta-section {
    padding: 6rem 0;
}

.footer-schedule {
    margin-top: 1rem;
}


/* Contact Page Styles */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    text-align: center;
    height: 100%;
}

.contact-form-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}

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

@media (min-width: 640px) {
    .form-actions {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tech Animations */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes pulse-border {

    0%,
    100% {
        border-color: hsl(var(--primary) / 0.2);
        box-shadow: 0 0 0 hsl(var(--primary) / 0);
    }

    50% {
        border-color: hsl(var(--primary) / 0.8);
        box-shadow: 0 0 15px hsl(var(--primary) / 0.3);
    }
}

@keyframes float-tech {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Utility for text gradient animation */
.animate-text-glow {
    animation: text-flicker 3s infinite alternate;
}

@keyframes text-flicker {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px hsl(var(--primary) / 0.5);
    }

    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px hsl(var(--primary) / 0.8);
    }
}