/* ==== HOME: HERO ==== */

    :root {
        --orange: #FF8C00;
        --orange-deep: #E67A00;
        --orange-light: #FFB347;
        --carbon: #0f1117;
        --carbon-mid: #161b24;
        --carbon-border: rgba(255, 255, 255, 0.07);
        --white: #ffffff;
        --white-muted: rgba(255, 255, 255, 0.6);
    }

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

    body {
        font-family: 'Outfit', sans-serif;
        background: var(--carbon);
        color: var(--white);
        overflow-x: hidden;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px 5% 80px;
        position: relative;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255, 140, 0, 0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 70%, rgba(107, 122, 144, 0.06) 0%, transparent 70%);
    }

    .hero-grid-lines {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }

    .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 140, 0, 0.1);
        border: 1px solid rgba(255, 140, 0, 0.25);
        color: var(--orange-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 100px;
        font-family: 'Space Mono', monospace;
        margin-bottom: 36px;
        width: fit-content;
        animation: fadeUp 0.8s ease both;
    }

    .hero-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
            transform:scale(1)
        }

        50% {
            opacity: .5;
            transform: scale(.7)
        }
    }

    .hero-headline {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(72px, 10vw, 140px);
        line-height: 0.92;
        letter-spacing: -0.01em;
        margin-bottom: 32px;
        animation: fadeUp 0.8s 0.1s ease both;
    }

    .hero-headline .line-orange {
        color: var(--orange);
    }

    .hero-headline .line-dim {
        color: rgba(255, 255, 255, 0.15);
    }

    .hero-sub {
        font-size: 18px;
        color: var(--white-muted);
        max-width: 520px;
        line-height: 1.65;
        margin-bottom: 48px;
        font-weight: 300;
        animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        align-items: center;
        animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--orange);
        color: var(--carbon);
        font-weight: 600;
        font-size: 14px;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .btn-primary:hover {
        background: var(--orange-deep);
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(255, 140, 0, 0.3);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--white-muted);
        font-size: 14px;
        text-decoration: none;
        padding: 14px 0;
        transition: color 0.2s;
    }

    .btn-secondary:hover {
        color: var(--white);
    }

    .btn-secondary svg {
        transition: transform 0.2s;
    }

    .btn-secondary:hover svg {
        transform: translateX(4px);
    }

    .hero-stats {
        display: flex;
        gap: 48px;
        margin-top: 80px;
        padding-top: 40px;
        border-top: 1px solid var(--carbon-border);
        animation: fadeUp 0.8s 0.4s ease both;
    }

    .stat-num {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 42px;
        color: var(--orange);
        line-height: 1;
    }

    .stat-label {
        font-size: 12px;
        color: var(--white-muted);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-top: 4px;
    }

    .hero-visual {
        position: absolute;
        right: 5%;
        top: 50%;
        margin-top: -230px;
        width: 460px;
        height: 460px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: floatHero 6s ease-in-out infinite, fadeUp 1s 0.3s ease both;
    }

    @keyframes floatHero {
        0%, 100% {
            transform: translateY(0);
        }

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

    .logo-svg {
        width: 280px;
        height: 280px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        filter: drop-shadow(0 0 60px rgba(255, 140, 0, 0.15));
    }

    .orbit-btn {
        position: absolute;
        width: 100px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(15, 17, 23, 0.6);
        border: 1px solid var(--orange);
        border-radius: 7px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #fff;
        font-family: 'Space Mono', monospace;
        font-size: 11px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        white-space: nowrap;
        text-decoration: none;
        cursor: pointer;
        z-index: 3;
        transition: background 0.25s, border-color 0.25s, box-shadow 0.3s, filter 0.3s;
    }

    .orbit-btn:hover {
        background: rgba(255, 140, 0, 0.18);
        border-color: #FFB347;
        color: #fff;
        box-shadow:
        0 0 10px 3px rgba(255, 140, 0, 0.65), 0 0 28px 8px rgba(255, 140, 0, 0.3), inset 0 0 10px rgba(255, 140, 0, 0.15);
        animation-play-state: paused;
        z-index: 10;
    }

    .orbit-btn:nth-child(1) {
        top: calc(50% - 216px);
        left: calc(50% - 38.5px);
        --tx: 0px;
        --ty: -216px;
        animation: floatBtn 4.0s ease-in-out infinite;
    }

    .orbit-btn:nth-child(2) {
        top: calc(50% - 178px);
        left: calc(50% + 79.5px);
        --tx: 118px;
        --ty: -162px;
        animation: floatBtn 4.5s ease-in-out infinite 0.3s;
    }

    .orbit-btn:nth-child(3) {
        top: calc(50% - 78px);
        left: calc(50% + 151.5px);
        --tx: 190px;
        --ty: -62px;
        animation: floatBtn 3.8s ease-in-out infinite 0.6s;
    }

    .orbit-btn:nth-child(4) {
        top: calc(50% + 46px);
        left: calc(50% + 151.5px);
        --tx: 190px;
        --ty: 62px;
        animation: floatBtn 4.2s ease-in-out infinite 0.9s;
    }

    .orbit-btn:nth-child(5) {
        top: calc(50% + 146px);
        left: calc(50% + 79.5px);
        --tx: 118px;
        --ty: 162px;
        animation: floatBtn 3.6s ease-in-out infinite 1.2s;
    }

    .orbit-btn:nth-child(6) {
        top: calc(50% + 183px);
        left: calc(50% - 38.5px);
        --tx: 0px;
        --ty: 200px;
        animation: floatBtn 4.8s ease-in-out infinite 1.5s;
    }

    .orbit-btn:nth-child(7) {
        top: calc(50% + 146px);
        left: calc(50% - 156.5px);
        --tx: -118px;
        --ty: 162px;
        animation: floatBtn 4.1s ease-in-out infinite 1.8s;
    }

    .orbit-btn:nth-child(8) {
        top: calc(50% + 46px);
        left: calc(50% - 228.5px);
        --tx: -190px;
        --ty: 62px;
        animation: floatBtn 3.9s ease-in-out infinite 2.1s;
    }

    .orbit-btn:nth-child(9) {
        top: calc(50% - 78px);
        left: calc(50% - 228.5px);
        --tx: -190px;
        --ty: -62px;
        animation: floatBtn 4.4s ease-in-out infinite 2.4s;
    }

    .orbit-btn:nth-child(10) {
        top: calc(50% - 178px);
        left: calc(50% - 156.5px);
        --tx: -118px;
        --ty: -162px;
        animation: floatBtn 3.7s ease-in-out infinite 2.7s;
    }

    @keyframes floatBtn {
        0%, 100% {
            transform: translateY(0px);
        }

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

    .orbit-btn:nth-child(1) {
        animation-delay: 0s, 0.1s;
    }

    .orbit-btn:nth-child(2) {
        animation-delay: 0.3s, 0.2s;
    }

    .orbit-btn:nth-child(3) {
        animation-delay: 0.6s, 0.3s;
    }

    .orbit-btn:nth-child(4) {
        animation-delay: 0.9s, 0.4s;
    }

    .orbit-btn:nth-child(5) {
        animation-delay: 1.2s, 0.5s;
    }

    .orbit-btn:nth-child(6) {
        animation-delay: 1.5s, 0.6s;
    }

    .orbit-btn:nth-child(7) {
        animation-delay: 1.8s, 0.7s;
    }

    .orbit-btn:nth-child(8) {
        animation-delay: 2.1s, 0.8s;
    }

    .orbit-btn:nth-child(9) {
        animation-delay: 2.4s, 0.9s;
    }

    .orbit-btn:nth-child(10) {
        animation-delay: 2.7s, 1.0s;
    }

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

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

    @media (max-width: 1100px) {
        .hero-visual {
            display: none;
        }
    }

    @media (max-width: 900px) {
        .hero-stats {
            gap: 28px;
            flex-wrap: wrap;
        }
    }
    

/* ==== HOME: MARQUEE ==== */

    :root {
        --orange: #FF8C00;
        --carbon-mid: #161b24;
        --carbon-border: rgba(255, 255, 255, 0.07);
        --steel-light: #9AAAC0;
    }

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

    body {
        background: var(--carbon-mid);
    }

    .marquee-section {
        border-top: 1px solid var(--carbon-border);
        border-bottom: 1px solid var(--carbon-border);
        padding: 18px 0;
        overflow: hidden;
        background: var(--carbon-mid);
    }

    .marquee-track {
        display: flex;
        white-space: nowrap;
        animation: marquee 28s linear infinite;
    }

    @keyframes marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .marquee-item {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 0 32px;
        font-family: 'Space Mono', monospace;
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--steel-light);
    }

    .marquee-dot {
        width: 4px;
        height: 4px;
        background: var(--orange);
        border-radius: 50%;
        flex-shrink: 0;
    }
    

/* ==== HOME: SERVICIOS ==== */

:root {
  --orange: #FF8C00;
  --orange-deep: #E67A00;
  --carbon: #0f1117;
  --carbon-mid: #161b24;
  --carbon-surface: #1e2433;
  --carbon-border: rgba(255,255,255,0.07);
  --white: #ffffff;
  --white-muted: rgba(255,255,255,0.6);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Outfit', sans-serif; background: var(--carbon); color: var(--white); }

.section-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--orange); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 5.5vw, 72px); line-height: 1; }
.section-title span { color: var(--orange); }
.section-header { margin-bottom: 64px; }

.services { padding: 120px 5%; background: var(--carbon); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--carbon-border);
  border: 1px solid var(--carbon-border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--carbon-mid);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,140,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { background: var(--carbon-surface); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px; height: 44px;
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.service-card:hover .service-icon { background: rgba(255,140,0,0.18); border-color: rgba(255,140,0,0.4); }
.service-icon svg { width: 20px; height: 20px; }

.service-num {
  position: absolute;
  top: 28px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(255,140,0,0.06); }

.service-title { font-size: 15px; font-weight: 600; margin-bottom: 10px; letter-spacing: 0.01em; line-height: 1.3; }
.service-desc { font-size: 13px; color: var(--white-muted); line-height: 1.6; font-weight: 300; flex: 1; }

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 9px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.7;
}

.service-arrow {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--orange);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.08em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}


/* ==== HOME: NOSOTROS ==== */

    :root {
        --orange: #FF8C00;
        --orange-deep: #E67A00;
        --carbon: #0f1117;
        --carbon-mid: #161b24;
        --carbon-surface: #1e2433;
        --carbon-border: rgba(255, 255, 255, 0.07);
        --white: #ffffff;
        --white-muted: rgba(255, 255, 255, 0.6);
    }

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

    body {
        font-family: 'Outfit', sans-serif;
        background: var(--carbon-mid);
        color: var(--white);
    }

    .section-tag {
        font-family: 'Space Mono', monospace;
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .section-tag::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--orange);
    }

    .section-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(42px, 5.5vw, 72px);
        line-height: 1;
    }

    .section-title span {
        color: var(--orange);
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--orange);
        color: var(--carbon);
        font-weight: 600;
        font-size: 14px;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .btn-primary:hover {
        background: var(--orange-deep);
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(255, 140, 0, 0.3);
    }

    .about {
        padding: 120px 5%;
        background: var(--carbon-mid);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-visual {
        position: relative;
    }

    .about-big-s {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 320px;
        line-height: 0.85;
        color: rgba(255, 255, 255, 0.025);
        position: absolute;
        top: -20px;
        left: -20px;
        pointer-events: none;
        user-select: none;
    }

    .about-card {
        background: var(--carbon-surface);
        border: 1px solid var(--carbon-border);
        border-radius: 16px;
        padding: 40px;
        position: relative;
        z-index: 1;
    }

    .about-card-highlight {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--orange), transparent);
        border-radius: 16px 16px 0 0;
    }

    .about-values {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
    }

    .about-value {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
        background: rgba(255, 140, 0, 0.04);
        border: 1px solid rgba(255, 140, 0, 0.1);
        border-radius: 10px;
        transition: border-color 0.2s, background 0.2s;
    }

    .about-value:hover {
        border-color: rgba(255, 140, 0, 0.25);
        background: rgba(255, 140, 0, 0.07);
    }

    .about-value-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        background: rgba(255, 140, 0, 0.12);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-value-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about-value-text {
        font-size: 13px;
        color: var(--white-muted);
        line-height: 1.55;
        font-weight: 300;
    }

    .about-content p {
        font-size: 17px;
        line-height: 1.75;
        color: var(--white-muted);
        font-weight: 300;
        margin-bottom: 24px;
    }

    .about-content p strong {
        color: var(--white);
        font-weight: 500;
    }

    @media (max-width: 900px) {
        .about {
            grid-template-columns: 1fr;
        }
    }
    