/* ════════════════════════════════════════════════════
   PORTER COMUNICACIONES — style.css
   Amarillo #F5C518 / Negro #080808
   ════════════════════════════════════════════════════ */

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --y: #F5C518;
    --yv: #FFD700;
    --yo: #C9A000;
    --b: #080808;
    --b1: #0f0f0f;
    --b2: #161616;
    --b3: #1e1e1e;
    --w: #ffffff;
    --g: rgba(255, 255, 255, .5);
    --fd: 'Barlow Condensed', sans-serif;
    --fb: 'Inter', sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fb);
    background: var(--b);
    color: var(--w);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--b);
}

::-webkit-scrollbar-thumb {
    background: var(--y);
}

/* ── NO SELECCIÓN DE TEXTO ── */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Sí permitir selección en zonas de contenido de texto largo */
p,
li,
.mf-quote,
.sv-card p,
.pc-desc,
.prob-col ul li,
.hero-desc,
.pc-pilar p,
.cta-desc {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
}

/* ── CURSOR BASE ── */
*,
*::before,
*::after {
    cursor: none !important;
}

#cur-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--y);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .18s var(--ease), height .18s var(--ease),
        background .18s, border .18s, opacity .18s;
    mix-blend-mode: difference;
    will-change: left, top;
}

#cur-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(245, 197, 24, .45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width .32s var(--ease), height .32s var(--ease),
        border-color .25s, background .25s, opacity .28s;
    will-change: left, top;
}

/* Label dentro del anillo */
#cur-ring::after {
    content: attr(data-label);
    font-family: var(--fd);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--y);
    opacity: 0;
    transition: opacity .2s ease;
    white-space: nowrap;
    mix-blend-mode: normal;
}

/* Hover genérico: links y cards */
body.cur-hover #cur-dot {
    width: 4px;
    height: 4px;
    opacity: .4;
}

body.cur-hover #cur-ring {
    width: 58px;
    height: 58px;
    border-color: var(--y);
    border-width: 1px;
}

body.cur-hover #cur-ring::after {
    opacity: 1;
}

/* Hover en botones: relleno translúcido */
body.cur-btn #cur-dot {
    width: 50px;
    height: 50px;
    background: rgba(245, 197, 24, .12);
    border: 1px solid var(--y);
    mix-blend-mode: normal;
}

body.cur-btn #cur-ring {
    width: 0;
    height: 0;
    opacity: 0;
}

/* Click: pulse de expansión */
body.cur-click #cur-ring {
    width: 80px;
    height: 80px;
    border-color: rgba(245, 197, 24, .6);
    opacity: 0;
    transition: width .25s ease, height .25s ease, opacity .25s ease;
}

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s var(--ease), visibility .8s;
}

#loader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.l-inner {
    text-align: center;
}

.l-logo {
    font-family: var(--fd);
    font-size: clamp(64px, 14vw, 160px);
    font-weight: 900;
    letter-spacing: .05em;
    line-height: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.l-p {
    display: inline-block;
    transform: translateY(110%);
    animation: slideUp .6s var(--ease) forwards;
}

.l-p:nth-child(1) {
    animation-delay: .1s
}

.l-p:nth-child(2) {
    animation-delay: .17s
}

.l-p:nth-child(3) {
    animation-delay: .24s
}

.l-p:nth-child(4) {
    animation-delay: .31s
}

.l-p:nth-child(5) {
    animation-delay: .38s
}

.l-p:nth-child(6) {
    animation-delay: .45s
}

.l-sub-wrap {
    overflow: hidden;
    margin-top: 6px;
}

.l-sub {
    display: block;
    font-size: 12px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    transform: translateY(100%);
    animation: slideUp .5s var(--ease) forwards .7s;
}

.l-bar {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 40px auto 12px;
    overflow: hidden;
}

.l-bar-fill {
    height: 100%;
    width: 0;
    background: var(--y);
    animation: barFill 1.8s var(--ease) forwards .5s;
}

.l-counter {
    font-family: var(--fd);
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .3);
    animation: fadeIn .4s ease forwards .6s;
    opacity: 0;
}

/* ── KEYFRAMES ── */
@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@keyframes barFill {
    to {
        width: 100%;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: .3;
        transform: scale(.9)
    }

    50% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes floatY2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* ── UTILS ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

.y {
    color: var(--y);
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 20px;
}

.sec-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--y);
    flex-shrink: 0;
}

.sec-title {
    font-family: var(--fd);
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: .93;
    letter-spacing: -1px;
}

.sec-header {
    margin-bottom: 72px;
}

section {
    padding: 130px 0;
}

/* ── AOS scroll reveal ── */
[data-aos] {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-aos].aos-in {
    opacity: 1;
    transform: none;
}

[data-aos][data-aos-delay="50"] {
    transition-delay: .05s;
}

[data-aos][data-aos-delay="60"] {
    transition-delay: .06s;
}

[data-aos][data-aos-delay="80"] {
    transition-delay: .08s;
}

[data-aos][data-aos-delay="100"] {
    transition-delay: .1s;
}

[data-aos][data-aos-delay="120"] {
    transition-delay: .12s;
}

[data-aos][data-aos-delay="150"] {
    transition-delay: .15s;
}

[data-aos][data-aos-delay="160"] {
    transition-delay: .16s;
}

[data-aos][data-aos-delay="200"] {
    transition-delay: .2s;
}

[data-aos][data-aos-delay="240"] {
    transition-delay: .24s;
}

[data-aos][data-aos-delay="300"] {
    transition-delay: .3s;
}

[data-aos][data-aos-delay="320"] {
    transition-delay: .32s;
}

/* ── BOTONES ── */
.btn-y {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--y);
    color: var(--b);
    padding: 16px 36px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: background .3s, transform .2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.btn-y::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .25) 50%, transparent 70%);
    transform: translateX(-150%);
    transition: transform .5s ease;
}

.btn-y:hover {
    background: var(--yv);
    transform: translateY(-2px);
}

.btn-y:hover::before {
    transform: translateX(150%);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .7);
    padding: 16px 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: border-color .3s, color .3s, background .3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.btn-ghost::after {
    content: '→';
    transition: transform .3s;
}

.btn-ghost:hover {
    border-color: var(--y);
    color: var(--y);
    background: rgba(245, 197, 24, .05);
}

.btn-ghost:hover::after {
    transform: translateX(4px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--b);
    color: var(--y);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 44px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: background .3s, border-color .3s, transform .2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.btn-dark:hover {
    background: var(--b3);
    border-color: var(--y);
    transform: translateY(-2px);
}

.btn-wa {
    color: var(--y);
}

/* ── NAVBAR ── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    transition: background .4s, padding .4s, box-shadow .4s, backdrop-filter .4s;
}

#nav.scrolled {
    background: rgba(8, 8, 8, .95);
    padding: 14px 48px;
    box-shadow: 0 1px 0 rgba(245, 197, 24, .12);
    backdrop-filter: blur(16px);
}

.nav-logo {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: letter-spacing .3s;
}

.nav-logo span {
    color: var(--y);
}

.nav-logo:hover {
    letter-spacing: 7px;
}

.nav-center {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    position: relative;
    transition: color .3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--y);
    transition: width .3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--y);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--y);
    color: var(--b);
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background .3s, transform .2s;
}

.nav-btn:hover {
    background: var(--yv);
    transform: translateY(-1px);
}

.nav-btn-arrow {
    transition: transform .3s;
}

.nav-btn:hover .nav-btn-arrow {
    transform: translateX(3px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
}

.nav-burger span {
    width: 24px;
    height: 1.5px;
    background: var(--w);
    display: block;
    transition: all .3s;
}

.nav-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.open span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--b1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .4s var(--ease), visibility .4s;
}

.mob-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mob-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mob-link {
    font-family: var(--fd);
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    letter-spacing: 2px;
    transition: color .3s;
}

.mob-link:hover {
    color: var(--y);
}

.mob-cta {
    background: var(--y);
    color: var(--b);
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 16px 48px;
    margin-top: 12px;
    transition: background .3s;
}

.mob-cta:hover {
    background: var(--yv);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

canvas#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-bg-text {
    position: absolute;
    right: -5vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--fd);
    font-size: 28vw;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(245, 197, 24, .025);
    letter-spacing: -8px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Left */
.hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 28px;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--y);
    animation: pulse 2s ease-in-out infinite;
}

h1.hero-h1 {
    font-family: var(--fd);
    font-size: clamp(68px, 9.5vw, 148px);
    font-weight: 900;
    line-height: .90;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.h1-line {
    display: block;
    overflow: hidden;
}

.h1-word {
    display: inline-block;
    font-style: normal;
    transform: translateY(110%);
    animation: slideUp .9s var(--ease) forwards;
}

.h1-yellow {
    color: var(--y);
}

/* stagger per line via nth */
.h1-line:nth-child(1) .h1-word {
    animation-delay: 2.3s;
}

.h1-line:nth-child(2) .h1-word:nth-child(1) {
    animation-delay: 2.45s;
}

.h1-line:nth-child(2) .h1-word:nth-child(2) {
    animation-delay: 2.52s;
}

.h1-line:nth-child(3) .h1-word:nth-child(1) {
    animation-delay: 2.62s;
}

.h1-line:nth-child(3) .h1-word:nth-child(2) {
    animation-delay: 2.7s;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.9;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp .8s var(--ease) forwards 2.9s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: slideUp .8s var(--ease) forwards 3.05s;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    animation: slideUp .8s var(--ease) forwards 3.2s;
}

.hstat {
    text-align: center;
}

.hstat strong {
    font-family: var(--fd);
    font-size: 48px;
    font-weight: 900;
    color: var(--y);
    line-height: 1;
    display: block;
    letter-spacing: -2px;
}

.hstat span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.hstat-div {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
}

/* Right — visual floating cards */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: slideUp .9s var(--ease) forwards 2.6s;
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 420px;
}

.hv-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(245, 197, 24, .12);
    animation: spin 20s linear infinite;
}

.hv-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px dashed rgba(245, 197, 24, .06);
    animation: spin 35s linear infinite reverse;
}

.hv-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--b2);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 16px 20px;
    border-radius: 0;
    transition: border-color .3s, background .3s, transform .3s;
    white-space: nowrap;
}

.hv-card:hover {
    border-color: var(--y);
    background: rgba(245, 197, 24, .06);
}

.hvc-icon {
    font-size: 22px;
}

.hvc-label {
    font-size: 13px;
    font-weight: 600;
}

.hvc-arrow {
    font-size: 14px;
    color: var(--y);
    margin-left: auto;
    opacity: 0;
    transition: opacity .3s, transform .3s;
}

.hv-card:hover .hvc-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.hv-card-1 {
    top: 10px;
    left: 30px;
    animation: floatY 4s ease-in-out infinite;
}

.hv-card-2 {
    top: 50px;
    right: 0;
    animation: floatY2 5s ease-in-out infinite .5s;
}

.hv-card-3 {
    bottom: 90px;
    left: 10px;
    animation: floatY 4.5s ease-in-out infinite 1s;
}

.hv-card-4 {
    bottom: 30px;
    right: 20px;
    animation: floatY2 3.8s ease-in-out infinite .3s;
}

.hv-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--y);
}

.hv-dot-1 {
    width: 6px;
    height: 6px;
    top: 30%;
    right: 10%;
    animation: pulse 2s ease-in-out infinite;
}

.hv-dot-2 {
    width: 4px;
    height: 4px;
    bottom: 20%;
    left: 5%;
    animation: pulse 2.5s ease-in-out infinite .5s;
}

.hv-dot-3 {
    width: 8px;
    height: 8px;
    top: 60%;
    right: 25%;
    opacity: .4;
    animation: pulse 3s ease-in-out infinite 1s;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 48px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn .8s ease forwards 3.6s;
}

.hero-scroll-hint span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    writing-mode: vertical-rl;
}

.scroll-track {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
}

.scroll-thumb {
    width: 100%;
    height: 40%;
    background: var(--y);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(250%);
        opacity: 0;
    }
}

/* ── MARQUEE ── */
.marquee {
    background: var(--y);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 24s linear infinite;
}

.marquee-inner span {
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--b);
    padding: 0 28px;
}

.marquee-inner .mx {
    color: rgba(0, 0, 0, .3);
    padding: 0 4px;
}

/* ── MANIFESTO ── */
#manifesto {
    background: var(--b1);
    position: relative;
    overflow: hidden;
}

.mf-header {
    margin-bottom: 80px;
}

.mf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.mf-quote {
    font-size: 18px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    font-weight: 300;
}

.mf-quote strong {
    color: var(--w);
    font-weight: 700;
}

.mf-quote-line {
    width: 56px;
    height: 3px;
    background: var(--y);
    margin-top: 32px;
}

.mf-items {
    display: flex;
    flex-direction: column;
}

.mf-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: padding-left .3s var(--ease);
}

.mf-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.mf-item:hover {
    padding-left: 8px;
}

.mf-item:hover h4 {
    color: var(--y);
}

.mf-num {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--y);
    padding-top: 2px;
}

.mf-item h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    transition: color .3s;
}

.mf-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.8;
}

/* ── SERVICIOS ── */
#servicios {
    background: var(--b);
}

.sv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .06);
}

.sv-card {
    background: var(--b2);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background .35s, transform .15s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

.sv-card:hover {
    background: #111000;
}

.sv-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--y);
    transition: width .5s var(--ease);
}

.sv-card:hover .sv-hover-line {
    width: 100%;
}

.sv-card:hover .sv-num {
    color: var(--y);
}

.sv-card:hover .sv-icon {
    border-color: var(--y);
    background: rgba(245, 197, 24, .08);
    transform: scale(1.08) rotate(-5deg);
}

.sv-num {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .18);
    margin-bottom: 24px;
    transition: color .3s;
}

.sv-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(245, 197, 24, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: border-color .3s, background .3s, transform .4s var(--ease);
}

.sv-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sv-card>p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.9;
}

.sv-tags {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sv-tags span {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    color: var(--y);
    border: 1px solid rgba(245, 197, 24, .2);
    background: rgba(245, 197, 24, .05);
}

/* ── IMPACTO ── */
#impacto {
    background: var(--y);
    padding: 0;
}

.imp-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

.imp-item {
    flex: 1;
    text-align: center;
    padding: 80px 30px;
}

.imp-item strong {
    font-family: var(--fd);
    font-size: 96px;
    font-weight: 900;
    color: var(--b);
    line-height: .85;
    letter-spacing: -5px;
    display: block;
}

.imp-item span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
    margin-top: 12px;
    display: block;
}

.imp-div {
    width: 1px;
    height: 100px;
    background: rgba(0, 0, 0, .1);
    flex-shrink: 0;
}

/* ── PORTERCOM ── */
#portercom {
    background: var(--b1);
    overflow: hidden;
    position: relative;
}

.pc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.pc-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.9;
    margin: 20px 0 36px;
}

.pc-pilares {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 40px;
}

.pc-pilar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-left: 2px solid rgba(245, 197, 24, .15);
    background: rgba(255, 255, 255, .02);
    transition: border-color .3s, background .3s, padding-left .3s var(--ease);
}

.pc-pilar:hover {
    border-left-color: var(--y);
    background: rgba(245, 197, 24, .04);
    padding-left: 28px;
}

.pc-pilar-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pc-pilar h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 4px;
}

.pc-pilar p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

/* Phone */
.pc-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-wrap {
    width: 286px;
    background: #0c0c0c;
    border-radius: 48px;
    border: 2px solid rgba(255, 255, 255, .08);
    padding: 14px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, .7), 0 0 60px rgba(245, 197, 24, .06), 0 0 0 1px rgba(255, 255, 255, .04);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 80px;
    height: 5px;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    margin: 0 auto 14px;
}

.phone-screen {
    border-radius: 30px;
    overflow: hidden;
}

.chat-header {
    background: #181818;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--y);
    color: var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 900;
}

.chat-name {
    font-size: 13px;
    font-weight: 600;
}

.chat-online {
    font-size: 11px;
    color: #25D366;
}

.chat-msgs {
    background: #0a0a0a;
    padding: 14px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cmsg {
    max-width: 88%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.6;
    opacity: 0;
    transition: opacity .4s, transform .4s;
}

.cin {
    background: #1c1c1c;
    color: rgba(255, 255, 255, .8);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    transform: translateX(-10px);
}

.cout {
    background: #1e1800;
    border: 1px solid rgba(245, 197, 24, .15);
    color: rgba(255, 255, 255, .8);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    transform: translateX(10px);
}

.cmsg.show {
    opacity: 1;
    transform: none;
}

.cmsg-from {
    font-size: 10px;
    color: var(--y);
    font-weight: 700;
    margin-bottom: 3px;
}

.cmsg-time {
    font-size: 10px;
    color: rgba(255, 255, 255, .2);
    text-align: right;
    margin-top: 3px;
}

.typing-ind {
    display: none;
    gap: 4px;
    padding: 9px 12px;
    background: #1c1c1c;
    border-radius: 12px;
    align-self: flex-start;
    width: 50px;
}

.typing-ind.on {
    display: flex;
}

.typing-ind span {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
    animation: bounce 1.4s infinite;
}

.typing-ind span:nth-child(2) {
    animation-delay: .2s;
}

.typing-ind span:nth-child(3) {
    animation-delay: .4s;
}

/* badges flottantes */
.pc-badge {
    position: absolute;
    background: var(--y);
    color: var(--b);
    padding: 10px 16px;
    text-align: center;
    z-index: 3;
    animation: floatY2 4s ease-in-out infinite;
}

.pc-badge span {
    font-family: var(--fd);
    font-size: 28px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.pc-badge small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .7;
}

.pc-badge-1 {
    right: -20px;
    top: 60px;
    animation-delay: .5s;
}

.pc-badge-2 {
    left: -20px;
    bottom: 80px;
    animation-delay: 1.2s;
}

/* ── PROCESO ── */
#proceso {
    background: var(--b);
}

.proc-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    margin-top: 64px;
}

.proc-line {
    position: absolute;
    top: 33px;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: rgba(245, 197, 24, .12);
    overflow: hidden;
}

.proc-fill {
    height: 100%;
    width: 0;
    background: var(--y);
    transition: width 1.6s var(--ease);
}

.proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.proc-circle {
    width: 66px;
    height: 66px;
    border: 1px solid rgba(245, 197, 24, .3);
    background: var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: background .3s, border-color .3s, transform .3s;
    position: relative;
}

.proc-circle::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid transparent;
    border-radius: 0;
    transition: border-color .3s var(--ease), inset .3s var(--ease);
}

.proc-step:hover .proc-circle {
    background: var(--y);
    border-color: var(--y);
    transform: scale(1.1);
}

.proc-step:hover .proc-circle::after {
    border-color: rgba(245, 197, 24, .3);
    inset: -10px;
}

.proc-step:hover .proc-circle span {
    color: var(--b);
}

.proc-circle span {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 900;
    color: var(--y);
    transition: color .3s;
}

.proc-step h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.proc-step p {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.8;
}

/* ── PROBLEMA ── */
#problema {
    background: var(--b1);
}

.prob-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, .05);
}

.prob-col {
    background: var(--b2);
    padding: 56px 52px;
}

.prob-col-y {
    background: var(--y);
}

.prob-col-y .prob-col-label {
    color: var(--b);
}

.prob-col-y ul li {
    color: rgba(0, 0, 0, .7);
}

.prob-col-y ul li strong {
    color: var(--b);
}

.prob-col-label {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--y);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prob-col-y .prob-col-label::before {
    background: var(--b);
}

.prob-col-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--y);
}

.prob-red {
    color: #ff4444 !important;
}

.prob-red::before {
    background: #ff4444 !important;
}

.prob-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prob-col ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.prob-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--y);
    flex-shrink: 0;
}

.prob-col-y ul li::before {
    background: var(--b);
}

.prob-col ul li strong {
    color: var(--w);
}

/* ── CLIENTES ── */
#clientes {
    background: var(--b);
}

.cl-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .05);
    margin-top: 64px;
}

.cl-logo {
    aspect-ratio: 2.5/1;
    background: var(--b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .2);
    transition: background .3s, color .3s;
}

.cl-logo:hover {
    background: rgba(245, 197, 24, .07);
    color: rgba(245, 197, 24, .7);
}

.cl-paises {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.cl-paises span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: color .3s, border-color .3s;
}

.cl-paises span:hover {
    color: var(--y);
    border-color: rgba(245, 197, 24, .3);
}

/* ── CTA FINAL ── */
#contacto {
    background: var(--y);
    color: var(--b);
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--fd);
    font-size: 36vw;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .05);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: -12px;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-tag {
    color: var(--b) !important;
}

.cta-tag::before {
    background: var(--b) !important;
}

.cta-title {
    font-family: var(--fd);
    font-size: clamp(56px, 9vw, 128px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: .88;
    color: var(--b);
    margin-bottom: 28px;
}

.cta-title-sub {
    display: block;
}

.cta-title-sub em {
    font-style: italic;
    color: var(--b1);
}

.cta-desc {
    font-size: 17px;
    color: rgba(0, 0, 0, .6);
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.9;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btns .btn-dark {
    color: var(--y);
}

.cta-info {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, .12);
    flex-wrap: wrap;
}

.cta-info div {
    text-align: center;
}

.cta-info small {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .4);
    margin-bottom: 4px;
}

.cta-info strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--b);
}

/* ── FOOTER ── */
footer {
    background: #030303;
    padding: 56px 0;
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.footer-logo span {
    color: var(--y);
}

.footer-tag {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--y);
}

.footer-copy {
    font-size: 10px;
    color: rgba(255, 255, 255, .18);
}

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 60px;
    }

    .hero-right {
        display: none;
    }

    .mf-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pc-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .pc-badge-1,
    .pc-badge-2 {
        display: none;
    }

    .sv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .imp-inner {
        flex-wrap: wrap;
    }

    .imp-item {
        padding: 50px 20px;
    }

    .prob-cols {
        grid-template-columns: 1fr;
    }

    .cl-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .proc-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .proc-line {
        display: none;
    }
}

@media (max-width:768px) {
    .container {
        padding: 0 24px;
    }

    #nav {
        padding: 18px 24px;
    }

    #nav.scrolled {
        padding: 12px 24px;
    }

    .nav-center,
    .nav-btn {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    section {
        padding: 80px 0;
    }

    #impacto {
        padding: 0;
    }

    .hero-layout {
        padding: 0 24px 60px;
    }

    .sv-grid {
        grid-template-columns: 1fr;
    }

    .proc-track {
        grid-template-columns: 1fr;
    }

    .cl-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-info {
        gap: 32px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-scroll-hint {
        right: 24px;
    }

    .prob-col {
        padding: 40px 28px;
    }

    #contacto {
        padding: 80px 0;
    }
}