/* ============================================================
   FUTURA TECK — WORLD-CLASS DESIGN SYSTEM
   Brand colors: #800020 (Burgundy) · #505050 (Gray)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #ff0066;
    --primary-hover: #6b001b;
    --primary-alpha: rgba(255, 0, 102, 0.08);
    --secondary: #505050;
    --dark: #0d0d0d;
    --dark-2: #181818;
    --dark-3: #242424;
    --light: #f7f6f4;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-muted: #666666;
    --text-faint: #999999;
    --border: rgba(0, 0, 0, 0.07);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 28px rgba(255, 0, 102, 0.28);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-md: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    transition: var(--transition);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--text);
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1rem;
    font-weight: 700;
}

h2 span {
    color: var(--primary);
}

h2 em,
h1 em {
    font-style: normal;
}

p {
    line-height: 1.75;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    background: var(--primary);
    flex-shrink: 0;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.55);
}

.section-label.light::before {
    background: rgba(255, 255, 255, 0.35);
}

/* ── LAYOUT ─────────────────────────────────────────────── */
section {
    padding: 120px 5%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.93rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.01em;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
#navbar {
    position: fixed;
    inset: 0 0 auto 0;
    padding: 22px 5%;
    z-index: 100;
    transition: var(--transition-md);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 13px 5%;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07), 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* Logo: blanca en hero, color al hacer scroll */
.logo-light {
    display: block;
    filter: brightness(0) invert(1);
}

.logo-dark {
    display: none;
}

.logo img {
    height: 44px;
    width: auto;
}

#navbar.scrolled .logo-light {
    display: none;
}

#navbar.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

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

#navbar.scrolled .nav-links a {
    color: var(--secondary);
}

#navbar.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

#menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

#menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

#navbar.scrolled #menu-toggle span {
    background: var(--text);
}

/* ── MOBILE MENU ────────────────────────────────────────── */
#mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    padding: 28px 6%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

#mobile-menu.open {
    transform: translateX(0);
}

#menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
    margin-bottom: 16px;
}

.mobile-logo {
    margin-bottom: 28px;
}

.mobile-link {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.mobile-cta {
    margin-top: 24px;
    text-align: center;
    font-size: 1rem;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 5% 0;
    background: var(--dark-2);
    overflow: hidden;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-corporate.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 15% 85%, rgba(128, 0, 32, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 85% 15%, rgba(128, 0, 32, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 920px;
    z-index: 2;
    padding-bottom: 130px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.775rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: pulse 2.4s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(74, 222, 128, 0.07);
    }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 900;
}

.highlight {
    color: var(--primary);
}

.hero-content>p {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin-bottom: 44px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero stats bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 26px 5%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 2;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    text-align: center;
}

.hero-stat:first-child {
    text-align: left;
}

.hero-stat-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 110px;
    right: 5%;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
    animation: scrollAnim 2.2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
    padding: 30px 5%;
    background: var(--light);
    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.trust-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
    font-weight: 600;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    flex: 1;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.trust-name {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text);
}

.trust-sub {
    font-size: 0.68rem;
    color: var(--text-faint);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── ABOUT ──────────────────────────────────────────────── */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.12rem;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content>p:last-of-type {
    color: var(--text-muted);
}

.about-cta {
    display: inline-block;
    margin-top: 40px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.big-stat-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.big-stat-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.45) 0%, transparent 70%);
    pointer-events: none;
}

.big-stat {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 16px;
}

.big-num {
    font-size: clamp(4rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.04em;
}

.big-suffix {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

.big-stat-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    max-width: 260px;
}

.small-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.small-stat {
    background: var(--light);
    border-radius: var(--radius);
    padding: 26px 22px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.small-stat:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.small-num {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.small-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.4;
}

/* ── PARTNER SECTION ────────────────────────────────────── */
.partner-section {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.partner-bg-text {
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.partner-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 64px;
}

.partner-header {
    max-width: 680px;
    margin-bottom: 0;
}

.partner-badge-img {
    flex-shrink: 0;
    margin-bottom: 10px;
}

.partner-badge-img img {
    height: 70px;
    width: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 968px) {
    .partner-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

.partner-header h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.partner-header p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.02rem;
    line-height: 1.8;
}

.partner-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.partner-feature {
    padding: 44px 32px;
    background: var(--dark-3);
    transition: var(--transition);
}

.partner-feature:hover {
    background: #2c2c2c;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(128, 0, 32, 0.18);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 22px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.partner-feature h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.partner-feature p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ── TIENDAS ────────────────────────────────────────────── */
#tiendas {
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.02rem;
}

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

.store-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: transparent;
}

.store-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.07;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: -16px;
}

.store-icon-wrap {
    width: 54px;
    height: 54px;
    background: var(--primary-alpha);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 26px;
}

.store-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.store-card h3 {
    margin-bottom: 10px;
}

.store-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.75;
    flex: 1;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: 28px;
    transition: var(--transition);
}

.store-link:hover {
    gap: 12px;
}

/* ── BEINSEN ────────────────────────────────────────────── */
.beinsen-section {
    padding: 0;
    overflow: hidden;
}

.beinsen-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

.beinsen-img-side {
    position: relative;
    overflow: hidden;
    background: var(--dark-2);
}

.beinsen-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.beinsen-img-side:hover img {
    transform: scale(1.04);
}

.beinsen-badge {
    position: absolute;
    bottom: 36px;
    left: 36px;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 14px 22px;
    color: var(--white);
}

.beinsen-badge span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}

.beinsen-badge strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.beinsen-content-side {
    background: var(--white);
    display: flex;
    align-items: center;
}

.beinsen-inner {
    padding: 80px 64px;
    max-width: 540px;
}

.beinsen-inner h2 {
    margin-bottom: 18px;
}

.beinsen-inner>p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 44px;
}

.beinsen-pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pillar {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.pillar-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-alpha);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.pillar h4 {
    margin-bottom: 5px;
}

.pillar p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.beinsen-cta {
    display: inline-block;
    margin-top: 44px;
}

/* ── SERVICIO / CONTACTO ────────────────────────────────── */
#servicio {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 48px;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    gap: 18px;
}

.service-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-item h4 {
    margin-bottom: 5px;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form h3 {
    margin-bottom: 6px;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.93rem;
    color: var(--text);
    background: var(--light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.07);
}

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

/* ── SOCIAL ─────────────────────────────────────────────── */
.social-section {
    background: var(--dark);
}

.social-content {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 860px;
    margin: 0 auto;
}

.social-icon {
    width: 76px;
    height: 76px;
    background: rgba(128, 0, 32, 0.22);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.social-text h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.social-text h2 span {
    color: var(--primary);
}

.social-text p {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 26px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    display: inline-block;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
    background: var(--dark);
}

.footer-inner {
    padding: 80px 5% 40px;
    max-width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 36px;
}

.footer-logo {
    height: 44px;
    margin-bottom: 22px;
    /* Versión negativa (blanca) para el footer oscuro */
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.875rem;
    line-height: 1.85;
    max-width: 300px;
}

.footer-email {
    display: inline-block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-email:hover {
    color: var(--white);
}

.footer-col h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.22);
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.55);
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

.delay-1 {
    animation-delay: 0.18s;
}

.delay-2 {
    animation-delay: 0.34s;
}

.delay-3 {
    animation-delay: 0.5s;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .partner-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    section {
        padding: 80px 5%;
    }

    /* Nav */
    .nav-links,
    .nav-cta {
        display: none;
    }

    #menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 120px 5% 0;
    }

    .hero-stats {
        position: relative;
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1 1 40%;
        padding: 10px 0;
        text-align: left;
    }

    .hero-stat-divider {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* Trust bar */
    .trust-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .trust-logos {
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
    }

    .trust-item {
        flex: 1 1 40%;
        text-align: left;
        padding: 8px 0;
    }

    .trust-divider {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-stats {
        order: -1;
    }

    /* Partner */
    .partner-features {
        grid-template-columns: 1fr;
    }

    .partner-feature {
        padding: 32px 24px;
    }

    /* Stores */
    .stores-grid {
        grid-template-columns: 1fr;
    }

    /* Beinsen */
    .beinsen-split {
        grid-template-columns: 1fr;
    }

    .beinsen-img-side {
        min-height: 340px;
    }

    .beinsen-inner {
        padding: 56px 40px;
        max-width: 100%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Social */
    .social-content {
        flex-direction: column;
        gap: 24px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .small-stats {
        grid-template-columns: 1fr 1fr;
    }

    .big-stat-card {
        padding: 36px 28px;
    }

    .contact-form {
        padding: 32px 22px;
    }

    .beinsen-inner {
        padding: 44px 24px;
    }

    .footer-legal {
        gap: 16px;
    }
}