
:root {
    --bg: #070B14;
    --bg-soft: #0B1220;
    --card: #101827;
    --card-light: #132033;
    --primary: #3B82F6;
    --secondary: #22D3EE;
    --accent: #8B5CF6;
    --text: #F8FAFC;
    --muted: #94A3B8;
    --border: rgba(148, 163, 184, 0.18);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.16), transparent 32rem),
        radial-gradient(circle at 90% 5%, rgba(59, 130, 246, 0.20), transparent 32rem),
        radial-gradient(circle at 50% 70%, rgba(139, 92, 246, 0.10), transparent 30rem),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 11, 20, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 12px 32px rgba(34, 211, 238, 0.22);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo strong {
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.logo span span {
    color: var(--secondary);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 1.35rem;
    cursor: pointer;
}

.btn {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 16px 42px rgba(34, 211, 238, 0.2);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.045);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: rgba(34, 211, 238, 0.6);
}

.hero {
    padding: 112px 0 78px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--secondary);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(2.45rem, 6vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
}

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

.hero p,
.page-hero p {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 740px;
}

.hero p {
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.18), transparent 45%);
    pointer-events: none;
}

.terminal {
    position: relative;
    background: #050814;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    min-height: 340px;
    padding: 24px;
}

.dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.8;
}

.code-line {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: var(--muted);
    margin-bottom: 13px;
    font-size: 0.92rem;
}

.code-line b {
    color: var(--secondary);
    font-weight: 700;
}

.brand-logo-section {
    padding: 14px 0 36px;
}

.brand-logo-preview {
    max-width: 780px;
    margin: 0 auto;
    border-radius: 32px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.section {
    padding: 84px 0;
}

.section-title {
    max-width: 780px;
    margin-bottom: 44px;
}

.section-title.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.section-title h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-title p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.04rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 16px 42px rgba(0,0,0,0.18);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.45);
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(34,211,238,0.16));
    color: var(--secondary);
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 1.24rem;
    margin-bottom: 10px;
}

.card p,
.card li {
    color: var(--muted);
}

.card ul {
    margin-top: 18px;
    padding-left: 18px;
}

.cta {
    margin: 80px 0;
    padding: 56px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(59,130,246,0.20), rgba(34,211,238,0.12)),
        var(--card);
    border: 1px solid rgba(34,211,238,0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.cta p {
    color: var(--muted);
}

.page-hero {
    padding: 96px 0 54px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.page-hero p {
    margin: 0 auto;
}

.form {
    background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 32px;
}

.form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.045);
    color: var(--text);
    outline: none;
    margin-bottom: 18px;
}

.form option {
    color: #0B1220;
}

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

.footer {
    border-top: 1px solid var(--border);
    padding: 38px 0;
    color: var(--muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 76px;
    }

    .nav-links {
        position: fixed;
        top: 92px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 22px;
        border-radius: 24px;
        background: rgba(11, 18, 32, 0.98);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 11px;
    }

    .menu-toggle {
        display: block;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 34px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .navbar {
        min-height: 72px;
    }

    .logo strong {
        font-size: 1.15rem;
    }

    .logo span span {
        font-size: 0.7rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 62px 0;
    }
}


.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 8px;
}

.language-switch a {
    min-width: 36px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 900;
    color: var(--muted);
    background: rgba(255,255,255,0.035);
}

.language-switch a.active-lang {
    color: white;
    border-color: rgba(34, 211, 238, 0.55);
    background: linear-gradient(135deg, rgba(59,130,246,0.35), rgba(34,211,238,0.22));
}

.language-landing {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 0;
}

.language-panel {
    width: min(760px, calc(100% - 40px));
    text-align: center;
    padding: 54px;
    border-radius: 36px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    box-shadow: var(--shadow);
}

.language-panel img {
    max-width: 520px;
    margin: 0 auto 28px;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.language-panel h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.language-panel p {
    color: var(--muted);
    margin: 0 auto 28px;
    max-width: 560px;
}

.language-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .language-switch {
        padding: 8px 0 0;
    }
}

@media (max-width: 520px) {
    .language-panel {
        padding: 34px 22px;
    }
}


/* Logo corporativo VICT */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 58px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-mark,
.logo-text {
    display: none !important;
}

@media (max-width: 768px) {
    .logo-img {
        height: 44px;
    }
}
