/* ConlineWeb — Nosotros / Soluciones Corporativas (alineado con landings paginas-web, tienda-online) */

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', sans-serif; }

:root {
    --deep-space: #0a0a0f;
    --neon-blue: #00f3ff;
    --neon-purple: #b967ff;
    --matrix-green: #00ff9d;
    --stardust: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
}

body {
    background: var(--deep-space);
    color: var(--stardust);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 6rem;
}

#particles-js {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.7;
}

.top-content-wrapper { width: 100%; position: relative; z-index: 2; }

.container {
    display: block;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.container--hero { padding: 0 1.5rem; }

.hero-section {
    padding: 3rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.hero-intro {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-intro .badge { margin: 0 auto 2rem; }

.badge {
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.35);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--matrix-green);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
    width: fit-content;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    text-align: center;
}

.hero-subtitle strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

/* Visual hero — stats + orb */
.corp-about-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 0 0 2.5rem;
    padding: 1.5rem 0;
}

.corp-about-visual::before {
    content: '';
    position: absolute;
    inset: -10% 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 255, 157, 0.07) 0%, rgba(0, 243, 255, 0.05) 40%, transparent 72%);
    pointer-events: none;
}

.corp-about-visual__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.corp-stat {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.corp-stat:hover {
    border-color: rgba(0, 243, 255, 0.35);
    transform: translateY(-2px);
}

.corp-stat strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.corp-stat span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.corporate-orb {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: orbSpin linear infinite;
}

.orb-ring-1 { width: 300px; height: 300px; border-color: rgba(0, 243, 255, 0.15); animation-duration: 25s; }
.orb-ring-2 { width: 240px; height: 240px; border-color: rgba(185, 103, 255, 0.2); animation-duration: 18s; animation-direction: reverse; }
.orb-ring-3 { width: 180px; height: 180px; border-color: rgba(0, 255, 157, 0.2); animation-duration: 12s; }

@keyframes orbSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orb-core {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(0, 243, 255, 0.5) 40%, rgba(185, 103, 255, 0.4) 70%, transparent 90%);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.4), 0 0 80px rgba(185, 103, 255, 0.2);
    animation: coreFloat 6s ease-in-out infinite;
    z-index: 10;
}

@keyframes coreFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.orb-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-blue);
    box-shadow: 0 0 12px var(--neon-blue);
    animation: dotOrbit linear infinite;
}

.orb-dot:nth-child(5) { animation-duration: 6s; }
.orb-dot:nth-child(6) { animation-duration: 9s; animation-direction: reverse; background: var(--neon-purple); box-shadow: 0 0 12px var(--neon-purple); }
.orb-dot:nth-child(7) { animation-duration: 13s; background: var(--matrix-green); box-shadow: 0 0 12px var(--matrix-green); }

@keyframes dotOrbit {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

.orb-label {
    position: absolute;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--matrix-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    white-space: nowrap;
    pointer-events: none;
}

.orb-label-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.orb-label-2 { bottom: 8%; left: 50%; transform: translateX(-50%); }
.orb-label-3 { left: 0; top: 50%; transform: translateY(-50%); }
.orb-label-4 { right: 0; top: 50%; transform: translateY(-50%); }

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    margin: 0;
    width: 100%;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 243, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon.green {
    background: rgba(0, 255, 157, 0.1);
    color: var(--matrix-green);
}

.feature-text h3 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
    line-height: 1.45;
}

.cta-container {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-blue);
    padding: 1rem 2.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: white;
    border: none;
}


.cta-button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
}

.cta-button--ghost:hover {
    border-color: rgba(0, 243, 255, 0.35);
    color: #fff;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 243, 255, 0.2);
}

.full-width-section {
    width: 100%;
    padding: 2rem 1.5rem 3rem;
    position: relative;
    z-index: 2;
}

.sw-section {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 0.5rem;
}

.sw-section-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.sw-section-lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 780px;
    margin: 0 auto 2.25rem;
}
}

.sw-section-lead strong { color: rgba(255, 255, 255, 0.9); }

.sw-signals {
    max-width: 780px;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.sw-signals-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.sw-signals-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sw-signals-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.sw-signals-list i {
    color: var(--matrix-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sw-use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.sw-use-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sw-use-card:hover {
    border-color: rgba(0, 243, 255, 0.35);
    transform: translateY(-4px);
}

.sw-use-card > i {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.sw-use-card h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sw-use-card p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    flex: 1;
}

.web-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.42rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--matrix-green);
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.25);
    border-radius: 999px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.web-card-btn:hover {
    background: rgba(0, 255, 157, 0.15);
    box-shadow: 0 0 12px rgba(0, 255, 157, 0.2);
}

/* Banda de valor */
.corp-value-band {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(26, 11, 46, 0.9));
    border: 1px solid rgba(0, 243, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.corp-value-band__head {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.corp-value-band__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(0, 255, 157, 0.15));
    border: 1px solid rgba(0, 255, 157, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--matrix-green);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.corp-value-band__head > div {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.corp-value-band__head h2 {
    font-family: 'Poiret One', sans-serif;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.15;
}

.corp-value-band__head p {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neon-blue);
    margin: 0;
    line-height: 1.4;
}

.corp-value-band__body {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 900px;
}

.corp-value-band__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.corp-value-card {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.corp-value-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
    transform: translateY(-3px);
}

.corp-value-card i {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 0.75rem;
}

.corp-value-card h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.corp-value-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.sw-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sw-process-step {
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
}

.sw-process-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 243, 255, 0.12);
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.sw-process-step h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.sw-process-step p {
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.corp-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.corp-diff-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.corp-diff-card:hover {
    border-color: rgba(0, 243, 255, 0.35);
    transform: translateY(-3px);
}

.corp-diff-card h3 {
    font-size: 0.95rem;
    color: var(--neon-blue);
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.corp-diff-card h3 i { font-size: 0.85rem; }

.corp-diff-card p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
}

.faq-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h2 {
    font-family: 'Poiret One', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.section-label {
    text-align: center;
    font-weight: 600;
    color: var(--neon-blue);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.accordion-item:hover { border-color: var(--neon-blue); }

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--stardust);
    transition: color 0.3s;
}

.accordion-header:hover { color: var(--neon-blue); }

.accordion-header i {
    font-size: 1rem;
    color: var(--matrix-green);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] i { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 2rem;
}

.accordion-content.active {
    max-height: 400px;
    padding: 0.5rem 2rem 1.5rem;
}

.accordion-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.cta-module {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 0 auto 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    max-width: 640px;
}

.cta-module h3 {
    font-family: 'Poiret One', sans-serif;
    color: var(--neon-blue);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.cta-module p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-module__btn { margin: 0 auto; }

@media (max-width: 992px) {
    .corp-about-visual { grid-template-columns: 1fr; }
    .corp-about-visual__stats { order: 2; }
    .corporate-orb { order: 1; width: 260px; height: 260px; }
    .orb-ring-1 { width: 260px; height: 260px; }
    .orb-ring-2 { width: 200px; height: 200px; }
    .orb-ring-3 { width: 150px; height: 150px; }
    .sw-use-grid { grid-template-columns: repeat(2, 1fr); }
    .corp-value-band__grid { grid-template-columns: 1fr; }
    .sw-process-steps { grid-template-columns: repeat(2, 1fr); }
    .corp-diff-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .features { grid-template-columns: 1fr; }
    .sw-use-grid { grid-template-columns: 1fr; }
    .corp-diff-grid { grid-template-columns: 1fr; }
    .sw-process-steps { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .sw-section-title { font-size: 2.2rem; }
    .cta-container { flex-direction: column; }
    .cta-button { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    body { padding-top: 5rem; }
    .container--hero { padding: 0 1rem; }
    .hero-title { font-size: 2.1rem; }
    .corp-about-visual__stats { grid-template-columns: 1fr; }
    .accordion-header { padding: 1.2rem 1.25rem; font-size: 0.92rem; }
    .accordion-content.active { padding: 0.5rem 1.25rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    .orb-ring, .orb-dot, .orb-core { animation: none; }
}
