:root {
    --bg-deep: #0A0E1A;
    --bg-surface: #0F1526;
    --bg-card: rgba(15, 21, 38, 0.65);
    --cyan: #00FFFF;
    --violet: #9D00FF;
    --magenta: #FF00E6;
    --white: #E8EAF6;
    --muted: #7A84A1;
    --border-glow: rgba(0, 255, 255, 0.18);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

ul {
    list-style: none;
}

/* ============================================================
       TIPOGRAFÍA BASE
    ============================================================ */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.15;
}

.gradient-text {
    background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(0, 255, 255, 0.35);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

/* ============================================================
       FONDO – ORBES ANIMADOS
    ============================================================ */
.bg-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.22;
    animation: blobFloat 12s ease-in-out infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--violet);
    top: -150px;
    left: -180px;
    animation-duration: 14s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    bottom: 5%;
    right: -120px;
    animation-duration: 11s;
    animation-delay: -4s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--magenta);
    top: 55%;
    left: 30%;
    animation-duration: 16s;
    animation-delay: -7s;
    opacity: 0.12;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.07);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 1;
}

/* Contenedor general */
.container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Offset para el header fijo al navegar por anclas */
section[id] {
    scroll-margin-top: 80px;
}

/* ============================================================
       HEADER / NAV
    ============================================================ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background var(--transition), box-shadow var(--transition);
}

#main-header.scrolled {
    background: rgba(10, 14, 26, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(0, 255, 255, 0.12);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo span:first-child {
    color: var(--white);
}

.logo span:last-child {
    color: var(--cyan);
}

.logo-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--magenta);
    margin-left: 2px;
    vertical-align: middle;
    box-shadow: 0 0 8px var(--magenta);
    animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 8px var(--magenta);
    }

    50% {
        box-shadow: 0 0 20px var(--magenta), 0 0 40px var(--magenta);
    }
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--magenta);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 0 18px rgba(255, 0, 230, 0.45);
    transition: box-shadow var(--transition), transform var(--transition);
}

.nav-cta:hover {
    box-shadow: 0 0 35px rgba(255, 0, 230, 0.75);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glow);
    padding: 16px 24px 24px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 14px 0;
    font-size: 1rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--cyan);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 8px;
}

/* ============================================================
       BOTÓN PRINCIPAL
    ============================================================ */
.btn-techfix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--magenta);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: neonPulse 2.4s ease-in-out infinite;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-techfix:hover {
    transform: translateY(-3px) scale(1.03);
    animation: none;
    box-shadow: 0 0 50px rgba(255, 0, 230, 0.85), 0 8px 30px rgba(255, 0, 230, 0.4);
}

.btn-techfix::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    border-radius: inherit;
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 230, 0.5), 0 4px 20px rgba(255, 0, 230, 0.3);
    }

    50% {
        box-shadow: 0 0 45px rgba(255, 0, 230, 0.85), 0 4px 30px rgba(255, 0, 230, 0.55);
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 255, 0.35);
    padding: 14px 30px;
    border-radius: 100px;
    transition: background var(--transition), box-shadow var(--transition);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* ============================================================
       CARD GLASSMORPHISM
    ============================================================ */
.card-tech {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card-tech:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.12), 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
}

/* ============================================================
       HERO SECTION
    ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 110px;
    padding-bottom: 60px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 255, 0.07);
    border: 1px solid rgba(0, 255, 255, 0.22);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: pulseDot 1.5s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
    line-height: 1.1;
    word-break: break-word;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 38px;
    line-height: 1.75;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--muted);
}

.trust-item .trust-icon {
    font-size: 1rem;
}

/* Mockup visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding extra para que los badges flotantes no se corten */
    padding: 60px 60px 60px 40px;
    overflow: visible;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #141B2D, #0F1526);
    border-radius: 40px;
    border: 2px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.15), 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 12px;
    background: #0A0E1A;
    border-radius: 10px;
}

.phone-screen-content {
    padding: 52px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-bar {
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    opacity: 0.7;
}

.phone-bar.short {
    width: 65%;
}

.phone-bar.medium {
    width: 80%;
}

.phone-bar.long {
    width: 90%;
}

.phone-bar.tiny {
    width: 45%;
}

.phone-icon-area {
    margin-top: 8px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--magenta), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 230, 0.4);
}

.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.15);
    animation: ringExpand 4s ease-in-out infinite;
}

.ring-1 {
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-2 {
    width: 460px;
    height: 460px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

@keyframes ringExpand {

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

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

.floating-badge {
    position: absolute;
    background: rgba(15, 21, 38, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
}

.fb-top {
    top: 16px;
    right: 0px;
    color: var(--cyan);
    animation: floatBadge 3s ease-in-out infinite;
}

.fb-bot {
    bottom: 24px;
    left: 0px;
    color: var(--magenta);
    animation: floatBadge 3.5s ease-in-out infinite;
    animation-delay: -1.5s;
}

@keyframes floatBadge {

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

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

/* ============================================================
       SECTION GENÉRICA
    ============================================================ */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    /* Evitar que el glassmorphism del nav fijo aplique aquí */
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.18;
}

.section-header p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ============================================================
       STATS BAR
    ============================================================ */
#stats {
    padding: 0;
}

.stats-bar {
    background: rgba(15, 21, 38, 0.7);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* ============================================================
       MOBILE RESCUE
    ============================================================ */
#mobile-rescue {
    background: linear-gradient(180deg, transparent 0%, rgba(157, 0, 255, 0.04) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    opacity: 0;
    border-radius: var(--radius);
    transition: opacity var(--transition);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 0.04;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: block;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.service-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
}

/* ============================================================
       PC PERFORMANCE
    ============================================================ */
#pc-performance {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.03) 50%, transparent 100%);
}

.pc-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.pc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.pc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}

.pc-item:hover {
    border-color: var(--border-glow);
    background: rgba(0, 255, 255, 0.04);
}

.pc-item-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pc-item-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.pc-item-text p {
    font-size: 0.82rem;
    color: var(--muted);
}

/* Visual PC */
.pc-visual {
    position: relative;
}

.pc-card-main {
    padding: 36px;
    text-align: center;
}

.pc-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 16px;
}

.progress-item {
    margin-bottom: 14px;
    text-align: left;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    animation: fillBar 2s ease forwards;
    transform-origin: left;
}

@keyframes fillBar {
    from {
        width: 0%;
    }
}

/* ============================================================
       PILARES DE CONFIANZA
    ============================================================ */
#trust {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 230, 0.03) 50%, transparent 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.trust-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transition: opacity var(--transition);
}

.trust-card:hover::before {
    opacity: 0.8;
}

.trust-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.trust-card p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
       GEO SECTION
    ============================================================ */
#geo {
    padding: 80px 0;
}

.geo-inner {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.07) 100%);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 24px;
    padding: 60px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.geo-text h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    line-height: 1.15;
    word-break: break-word;
}

.geo-text p {
    color: var(--muted);
    font-size: 0.97rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.geo-zones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.zone-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 255, 0.07);
    border: 1px solid rgba(0, 255, 255, 0.18);
    border-radius: 100px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    transition: background var(--transition), box-shadow var(--transition);
}

.zone-pill:hover {
    background: rgba(0, 255, 255, 0.14);
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.15);
}

.zone-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
    flex-shrink: 0;
}

/* ============================================================
       CTA FINAL
    ============================================================ */
#cta-final {
    padding: 120px 0;
    text-align: center;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
}

.cta-number {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--magenta), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
}

/* ============================================================
       FOOTER
    ============================================================ */
#site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-credits {
    text-align: right; /* Alineado a la derecha en desktop */
}

.dev-link {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.dev-link:hover {
    color: var(--white);
    text-shadow: 0 0 8px var(--cyan);
    border-bottom: 1px solid var(--cyan);
}

/* Ajuste para móviles */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-credits {
        text-align: center;
        margin-top: 20px;
    }
}

/* ============================================================
       SCROLL REVEAL
    ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 38px;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pc-inner {
        grid-template-columns: 1fr;
    }

    .geo-inner {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        gap: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

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

    .geo-zones {
        grid-template-columns: 1fr;
    }

    section {
        padding: 70px 0;
    }
}

/* ============================================================
       WHATSAPP FLOAT BUTTON
    ============================================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: neonPulseGreen 2.5s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    animation: none;
}

.wa-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

@keyframes neonPulseGreen {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.85);
    }
}

/* ============================================================
    Sección Garantía
    ============================================================ */

/* Sección Garantía - Versión Refinada */
.garantia-section {
    padding: 100px 0; /* Sincronizado con el padding de otras secciones */
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 230, 0.05) 50%, transparent 100%);
    text-align: center;
}

.neon-text-magenta {
    color: var(--magenta);
    text-shadow: 0 0 10px var(--magenta), 0 0 20px rgba(255, 0, 230, 0.5);
}

.section-title {
    font-family: var(--font-head); /* Usar variable */
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.garantia-card {
    background: var(--bg-card); /* Usar variable con glassmorphism */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 40px 30px;
    border-radius: var(--radius); /* Usar variable de radio */
    border: 1px solid var(--border-glow);
    transition: var(--transition); /* Usar variable de transición */
}

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

.garantia-card.highlighted {
    border-color: var(--magenta);
    box-shadow: 0 0 15px rgba(255, 0, 230, 0.1);
}