/**
 * SINTAXIS.AI - GLOBAL STYLES
 * Vanguard Tech & AI-First Aesthetic
 */

:root {
    /* Color Palette */
    --bg-obsidian: #0a0a0c;
    --bg-card: rgba(20, 20, 25, 0.6);
    --cyber-cyan: #00FFFF;
    --electric-purple: #B200FF;
    --magenta: #FF00FF;

    /* Gradients */
    --ai-gradient: linear-gradient(135deg, var(--cyber-cyan), var(--electric-purple), var(--magenta));
    --glass-border: rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--cyber-cyan);
    /* #00ffff */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cccc;
}

body {
    background-color: var(--bg-obsidian);
    color: #f0f0f5;
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography styles */
h1,
h2,
h3,
h4 {
    font-weight: 700;
}

.font-mono {
    font-family: var(--font-mono);
}

/* Component: Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    transition: all var(--transition-fast);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.favicon-svg {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover .favicon-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(178, 0, 255, 0.4));
}

.brand-text {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.brand-highlight {
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(178, 0, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 110;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all var(--transition-fast);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #a0a0ab;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Dropdown */
.dropdown {
    position: relative;
    padding: 1rem 0; /* Add padding to prevent hover gap falling */
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 0.6rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
    color: var(--cyber-cyan);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1.5rem;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem !important;
    margin: 0;
    font-size: 0.9rem !important;
    font-family: var(--font-sans);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition-fast) !important;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 255, 0.05);
    color: var(--cyber-cyan) !important;
    padding-left: 1.8rem !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3) !important;
}

/* Buttons */
.btn-outline {
    font-family: var(--font-mono);
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem;
    border: 1px solid var(--cyber-cyan);
    color: var(--cyber-cyan) !important;
    border-radius: 4px;
    background: transparent;
    box-shadow: 0 0 0 rgba(0, 255, 255, 0);
    transition: all var(--transition-smooth);
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    text-shadow: none !important;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    background: var(--ai-gradient);
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--magenta), var(--electric-purple), var(--cyber-cyan));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(178, 0, 255, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* SECTION: HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Offset for header */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px !important;
}

.hero-tagline {
    font-family: var(--font-mono);
    color: var(--cyber-cyan);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.2s;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-family: var(--font-mono);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.4s;
}

.code-bracket {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.glow-ai {
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(178, 0, 255, 0.5);
}

.hero-logo-img {
    height: 1.6em;
    /* Enlarged hero logo */
    width: auto;
    vertical-align: middle;
    filter: drop-shadow(0 0 30px rgba(178, 0, 255, 0.4));
    transition: filter var(--transition-smooth);
}

.hero-logo-img:hover {
    filter: drop-shadow(0 0 40px rgba(178, 0, 255, 0.6)) brightness(1.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #a0a0ab;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.6s;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
}

/* Background Effects */
.hero-ai-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(178, 0, 255, 0.15) 0%, rgba(0, 255, 255, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite alternate;
}

.hero-vector-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vw;
    max-width: 1000px;
    max-height: 1000px;
    background-image: url('assets/hero-vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: rotateSlow 120s linear infinite, fadeOpacity 1.5s ease forwards 0.5s;
}

@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes fadeOpacity {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

/* SECTION: SERVICIOS Y BENTO GRIDS */
.services {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 12, 0.9) 50%, var(--bg-obsidian) 100%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: var(--font-mono);
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
}

/* Service Showcase System */
.service-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-showcase:last-child {
    margin-bottom: 0;
}

.service-showcase.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-visual {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-width: 0; /* Fix para Safari iOS flexbox bug */
    align-self: flex-start;
    margin-top: 2rem;
}

.showcase-img {
    width: 95%;
    margin: 0 auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
    display: block;
}

/* Technology Marquee Carousel */
.tech-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0 0.5rem;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.tech-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.tech-marquee-track:hover {
    animation-play-state: paused;
}

.tech-icon {
    height: 28px;
    margin: 0 1.5rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.tech-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Borders */
.cyber-border { border-color: rgba(0, 255, 255, 0.2); box-shadow: 0 0 20px rgba(0, 255, 255, 0.1); }
.magenta-border { border-color: rgba(255, 0, 255, 0.2); box-shadow: 0 0 20px rgba(255, 0, 255, 0.1); }
.electric-border { border-color: rgba(178, 0, 255, 0.2); box-shadow: 0 0 20px rgba(178, 0, 255, 0.1); }

.cyber-border:hover { border-color: var(--cyber-cyan); box-shadow: 0 0 40px rgba(0, 255, 255, 0.3); transform: scale(1.02); }
.magenta-border:hover { border-color: var(--magenta); box-shadow: 0 0 40px rgba(255, 0, 255, 0.3); transform: scale(1.02); }
.electric-border:hover { border-color: var(--electric-purple); box-shadow: 0 0 40px rgba(178, 0, 255, 0.3); transform: scale(1.02); }

.bento-icon { font-size: 3rem; margin-bottom: 1rem; filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
.bento-title { font-size: 1.95rem; margin-bottom: 0.5rem; color: #fff; line-height: 1.2; }
.service-subtitle { font-size: 1.1rem; font-family: var(--font-mono); margin-bottom: 1.2rem; }
.service-copy { color: #a0a0ab; font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; }

.color-cyan { color: var(--cyber-cyan); }
.color-magenta { color: var(--magenta); }
.color-electric { color: var(--electric-purple); }

.feature-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; box-shadow: 0 0 10px currentColor; flex-shrink: 0; }

.border-cyan { background: var(--cyber-cyan); color: var(--cyber-cyan); }
.border-magenta { background: var(--magenta); color: var(--magenta); }
.border-electric { background: var(--electric-purple); color: var(--electric-purple); }

.feature-item h4 { font-size: 1.2rem; color: #fff; margin-bottom: 0.4rem; font-family: var(--font-mono); }
.feature-item p { font-size: 0.95rem; color: #999; }

.magenta-btn { border-color: var(--magenta) !important; color: var(--magenta) !important; }
.magenta-btn:hover { background: rgba(255,0,255,0.1); box-shadow: 0 0 15px rgba(255,0,255,0.3) inset; }

.electric-btn { border-color: var(--electric-purple) !important; color: var(--electric-purple) !important; }
.electric-btn:hover { background: rgba(178,0,255,0.1); box-shadow: 0 0 15px rgba(178,0,255,0.3) inset; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .service-showcase { flex-direction: column; gap: 3rem; margin-bottom: 6rem; }
    .service-showcase.reverse { flex-direction: column; }
    .bento-title { font-size: 1.8rem; }
    
    /* Fix para evitar que las imágenes se descuadren por su ancho original en móvil */
    .service-visual {
        align-self: center !important;
        width: 100%;
        max-width: 600px;
        margin-top: 1rem !important;
    }
    
    .showcase-img {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
}

/* SECTION: PRICING / PLANES */
.pricing {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(0deg, var(--bg-obsidian) 0%, rgba(15, 15, 20, 0.8) 100%);
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 0.25rem;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5) inset;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 0.75rem 2rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 1;
}

.toggle-btn:hover {
    color: #fff;
}

.toggle-btn.active {
    background: var(--bg-card);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    animation: fadeIn var(--transition-smooth);
}

.pricing-grid.active {
    display: grid;
}

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

.pricing-card {
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.highlighted {
    background: rgba(20, 15, 30, 0.6);
    border-color: rgba(255, 0, 255, 0.3);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 0, 255, 0.1);
}

.pricing-card.highlighted.cyan-theme {
    background: rgba(15, 30, 30, 0.6);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 255, 255, 0.1);
}

.pricing-card.highlighted:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--magenta);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 0, 255, 0.2);
}

.pricing-card.highlighted.cyan-theme:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 255, 0.2);
}

.recommended-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--magenta);
    color: #fff;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    padding: 0.3rem 1.5rem;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.cyan-badge {
    background: var(--cyber-cyan);
    color: #000;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.plan-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.plan-focus {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    min-height: 40px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-mono);
}

.plan-price .currency {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 3rem;
    flex: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li span {
    color: var(--cyber-cyan);
    font-size: 0.8rem;
}

.highlighted .plan-features li span {
    color: var(--magenta);
}

.highlighted.cyan-theme .plan-features li span {
    color: var(--cyber-cyan);
}

.pricing-card .btn-outline {
    text-align: center;
    width: 100%;
}

/* Support Banner (El plan oculto) */
.support-banner {
    margin-top: 5rem;
    background: rgba(10, 10, 15, 0.6);
    border-radius: 12px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(5px);
}

.support-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.support-text h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
}

.support-text p {
    color: #a0a0ab;
    font-size: 0.95rem;
}

.support-link {
    color: var(--cyber-cyan);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.support-link:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-card.highlighted {
        transform: scale(1);
    }
    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
    .support-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* SECTION: FUNDADORES */
.founders {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.founder-card {
    text-align: center;
    width: 250px;
}

.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid var(--glass-border);
    transition: all var(--transition-fast);
    display: block;
}

.founder-card:hover .founder-photo {
    border-color: var(--electric-purple);
    box-shadow: 0 0 25px rgba(178, 0, 255, 0.4);
    transform: scale(1.05);
}

.founder-name {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.founder-role {
    font-family: var(--font-mono);
    color: var(--cyber-cyan);
    font-size: 0.85rem;
}

/* SECTION: CONTACTO TERMINAL */
.contact {
    padding: 6rem 0 8rem;
}

.terminal-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.terminal-header {
    background: #1a1a1a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.terminal-title {
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #888;
}

.terminal-body {
    padding: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
}

.terminal-prompt {
    color: var(--magenta);
    margin-right: 0.5rem;
}

.text-cyan {
    color: var(--cyber-cyan);
    margin: 1rem 0 2.5rem;
}

.terminal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    color: #fff;
}

.terminal-form input,
.terminal-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: border-color var(--transition-fast);
}

.terminal-form input:focus,
.terminal-form textarea:focus {
    outline: none;
    border-bottom-color: var(--cyber-cyan);
}

.btn-terminal {
    background: transparent;
    border: 1px solid var(--cyber-cyan);
    color: var(--cyber-cyan);
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all var(--transition-fast);
}

.btn-terminal:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2) inset;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    margin-top: 4rem;
    background: #0a0a0c;
}

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

.footer-copy {
    color: #666;
    font-size: 0.9rem;
}

.footer-social a {
    color: #888;
    text-decoration: none;
    margin-left: 1rem;
    font-family: var(--font-mono);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: #fff;
}

/* FLOATING BUTTONS */
.floating-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
}

.wpp-btn {
    background-color: #25D366;
}

.wpp-btn img {
    width: 35px;
    height: 35px;
}

.wpp-btn:hover {
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
}

.top-btn {
    background-color: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: var(--cyber-cyan);
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
}

.top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.top-btn:hover {
    background-color: var(--cyber-cyan);
    color: #000;
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.4);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hamburger {
        display: flex !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--glass-border);
        z-index: 100;
        display: flex;
    }
    
    .nav-links.active {
        right: 0;
    }

    .dropdown {
        padding: 0;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        display: none;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-top: 1rem;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .founders-grid {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .terminal-body {
        padding: 1.5rem;
    }

    .floating-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .wpp-btn img {
        width: 30px;
        height: 30px;
    }
}