/* =============================================
   CHIGUAY — DARK GLASSMORPHISM + ANIMATIONS
   ============================================= */

:root {
    --background: #020617;
    --background-gradient: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    --foreground: #f8fafc;
    --card: rgba(15, 23, 42, 0.7);
    --card-hover: rgba(30, 41, 59, 0.85);
    --card-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(56, 189, 248, 0.35);
    --input: rgba(255, 255, 255, 0.05);
    --primary: #38bdf8;
    --primary-hover: #0ea5e9;
    --primary-glow: rgba(56, 189, 248, 0.4);
    --primary-foreground: #020617;
    --secondary: #1e293b;
    --accent: rgba(56, 189, 248, 0.12);
    --accent-foreground: #38bdf8;
    --purple: #818cf8;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .4);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / .6), 0 2px 4px -2px rgb(0 0 0 / .6);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / .7), 0 4px 6px -4px rgb(0 0 0 / .7);
    --shadow-lg: 0 20px 40px -5px rgb(0 0 0 / .8), 0 8px 16px -6px rgb(0 0 0 / .8);
    --font-sans: 'DM Sans', sans-serif;
    --font-display: 'Baloo 2', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--background);
    background: var(--background-gradient);
    background-attachment: fixed;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background orbs */
body::before {
    content: '';
    position: fixed;
    top: -30%;
    left: -20%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, transparent 70%);
    animation: bg-orb-1 18s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.06) 0%, transparent 70%);
    animation: bg-orb-2 22s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes bg-orb-1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(80px, 60px) scale(1.2); }
}

@keyframes bg-orb-2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-60px, -50px) scale(1.15); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.mb-4 { margin-bottom: 1rem; }
.text-left { text-align: left !important; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

/* ── BADGE ── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .875rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.3);
    animation: badge-pulse 4s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.15); }
    50%       { box-shadow: 0 0 0 6px rgba(56, 189, 248, 0); }
}

.badge--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    animation: none;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .875rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--sm {
    padding: .375rem .875rem;
    font-size: .8125rem;
}

.btn--lg {
    padding: .875rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn--full { width: 100%; }

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--primary-foreground);
    border-color: transparent;
    box-shadow: 0 4px 14px var(--primary-glow);
    font-weight: 700;
}

/* Shimmer sweep on hover */
.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent
    );
    transform: skewX(-15deg);
    transition: left 0.55s ease;
}

.btn--primary:hover::after {
    left: 160%;
}

.btn--primary:hover {
    box-shadow: 0 6px 24px var(--primary-glow), 0 0 40px rgba(56, 189, 248, 0.2);
    transform: translateY(-2px);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--foreground);
    backdrop-filter: blur(4px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(2, 6, 23, 0.92);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .5);
    height: 56px;
}

.nav__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: -.01em;
}

.logo-text strong {
    color: var(--primary);
    font-weight: 800;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: .25rem;
    margin-left: .5rem;
}

.nav__links a {
    display: block;
    padding: .375rem .75rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: var(--radius);
    transition: color .2s, background .2s;
    position: relative;
}

/* Animated underline */
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 1.5px;
    background: var(--primary);
    border-radius: 1px;
    transition: left .25s ease, right .25s ease;
}

.nav__links a:hover {
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.05);
}

.nav__links a:hover::after {
    left: .75rem;
    right: .75rem;
}

.nav__cta { margin-left: auto; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    margin-left: auto;
}

.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: .3s;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform-origin: center;
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.65) 0%,
        rgba(2, 6, 23, 0.78) 50%,
        rgba(2, 6, 23, 0.95) 100%
    );
    z-index: 1;
}

/* Animated orb inside hero */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 8%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: hero-orb 10s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    animation: hero-orb 12s ease-in-out infinite alternate-reverse;
}

@keyframes hero-orb {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -20px) scale(1.2); }
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
    text-align: center;
}

.hero__title {
    font-size: clamp(2.5rem, 6.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin: 1rem 0 1.5rem;
    color: var(--foreground);
}

/* Animated gradient text */
.text-accent {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #38bdf8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
    from { background-position: 0% center; }
    to   { background-position: 200% center; }
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.25rem 2rem;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.05), var(--shadow-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat__num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    animation: glow-text 3s ease-in-out infinite alternate;
}

@keyframes glow-text {
    from { text-shadow: 0 0 8px rgba(56, 189, 248, 0.3); }
    to   { text-shadow: 0 0 20px rgba(56, 189, 248, 0.8), 0 0 40px rgba(56, 189, 248, 0.3); }
}

.stat__label {
    font-size: .8125rem;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.stat__divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    color: var(--muted-foreground);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── CATEGORIES BAR ── */
.categories-bar {
    position: sticky;
    top: 64px;
    z-index: 50;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: .75rem 0;
}

.categories-bar__inner {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.categories-bar__inner::-webkit-scrollbar { display: none; }

.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .375rem .875rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: rgba(30, 41, 59, 0.5);
    font-size: .8125rem;
    font-weight: 500;
    font-family: var(--font-sans);
    color: var(--muted-foreground);
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s ease;
}

.cat-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(56, 189, 248, 0.08);
    transform: translateY(-1px);
}

.cat-chip--active {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-color: transparent;
    color: var(--primary-foreground);
    box-shadow: 0 2px 12px var(--primary-glow);
    font-weight: 600;
}

/* ── SECTIONS ── */
.section {
    padding: 5rem 0;
}

.section--alt {
    background: rgba(15, 23, 42, 0.4);
    position: relative;
}

.section__head {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: .75rem 0 1rem;
}

.section__subtitle {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── CATALOG GRID ── */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

/* Glowing border on hover via pseudo-element */
.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-lg) + 1px);
    background: linear-gradient(135deg,
        rgba(56, 189, 248, 0.5),
        rgba(129, 140, 248, 0.3),
        rgba(56, 189, 248, 0.5)
    );
    opacity: 0;
    transition: opacity .35s ease;
    z-index: -1;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.2),
        0 8px 32px rgba(56, 189, 248, 0.12),
        var(--shadow-lg);
    transform: translateY(-6px);
    background: var(--card-hover);
}

.card.hidden { display: none; }

.card__img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}

.card__emoji { font-size: 3.5rem; }

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
    filter: brightness(0.95);
}

.card:hover .card__img {
    transform: scale(1.06);
    filter: brightness(1);
}

.card__tag {
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-size: .7rem;
    font-weight: 600;
    font-family: var(--font-display);
    padding: .2rem .55rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.card__badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--primary-foreground);
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .65rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 2px 8px var(--primary-glow);
}

.card__badge--red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 8px rgba(239, 68, 68, .4);
}

.card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.card__title {
    font-size: 1.0625rem;
    font-weight: 700;
}

.card__desc {
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    flex: 1;
}

.card__meta {
    display: flex;
    gap: .75rem;
    font-size: .8125rem;
    color: var(--muted-foreground);
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .25rem;
}

.card__price { font-size: .875rem; color: var(--muted-foreground); }
.card__price strong {
    color: var(--primary);
    font-size: 1.1rem;
    font-family: var(--font-display);
}

/* ── SERVICES GRID ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

/* Animated gradient top bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--purple), var(--primary), transparent);
    transition: left .5s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Static glow on top edge */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
}

.service-card:hover {
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.15),
        var(--shadow-md);
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateY(-3px);
}

.service-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card__logo {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .875rem;
    color: var(--muted-foreground);
    line-height: 1.65;
}

/* ── LIMPIEZA ── */
.limpieza-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.limpieza__visual {
    position: relative;
}

.limpieza__img-block {
    position: relative;
    border-radius: 1.25rem 3rem 1.25rem 3rem;
    height: 380px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.limpieza__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.limpieza__img-block:hover .limpieza__img {
    transform: scale(1.04);
}

.limpieza__overlay-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .9rem;
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,.15);
    letter-spacing: .03em;
}

.limpieza__stat-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin-top: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.limpieza__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
}

.limpieza__stat strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.limpieza__stat span {
    font-size: .75rem;
    color: var(--muted-foreground);
}

.limpieza__stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--border);
}

.limpieza__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.limpieza__list li {
    font-size: .95rem;
    color: var(--foreground);
}

.limpieza__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .limpieza-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── ABOUT ── */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__img-block {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid var(--border);
    border-radius: 2rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.about__big-emoji {
    font-size: 8rem;
    animation: float 3.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%       { transform: translateY(-14px) rotate(2deg); }
}

.about__float-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: var(--radius-lg);
    padding: .875rem 1.25rem;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(56, 189, 248, 0.08);
}

.about__float-card--1 {
    bottom: -1.5rem;
    left: -1.5rem;
    max-width: 200px;
    animation: float-card-1 4s ease-in-out infinite;
}

@keyframes float-card-1 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.about__float-card--1 span { font-size: .875rem; }
.about__float-card--1 p {
    font-size: .8125rem;
    color: var(--muted-foreground);
    margin-top: .25rem;
    font-style: italic;
}

.about__float-card--2 {
    top: -1.5rem;
    right: -1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: float-card-2 4s ease-in-out infinite;
    animation-delay: -.8s;
}

@keyframes float-card-2 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.about__float-card--2 strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.about__float-card--2 span {
    font-size: .8125rem;
    color: var(--muted-foreground);
}

.about__content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: .375rem .75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(56, 189, 248, 0.2);
    background: rgba(56, 189, 248, 0.07);
    color: var(--primary);
    font-size: .8125rem;
    font-weight: 500;
    transition: all .2s ease;
}

.chip:hover {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.35);
}

/* ── CONTACT ── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact__info p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-list__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.contact-list strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .125rem;
}

.contact-list span,
.contact-list a {
    font-size: .875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color .15s;
}

.contact-list a:hover { color: var(--primary); }

.social-links {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .8125rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--foreground);
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(4px);
    transition: all .2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn--facebook {
    color: #fff;
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 2px 10px rgba(24, 119, 242, .3);
}
.social-btn--facebook:hover {
    background: #166fe5;
    border-color: #166fe5;
    color: #fff;
    box-shadow: 0 4px 16px rgba(24, 119, 242, .45);
}

.social-btn--tiktok {
    color: #fff;
    background: #010101;
    border-color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}
.social-btn--tiktok:hover {
    background: #1a1a1a;
    border-color: #555;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .55);
}

.social-btn--whatsapp {
    color: #fff;
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 2px 10px rgba(37, 211, 102, .3);
}
.social-btn--whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
}

/* ── FORM ── */
.form-card {
    background: var(--card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient glow on form card top */
.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
}

.form-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: .875rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .5rem .75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .875rem;
    font-family: var(--font-sans);
    background: rgba(255, 255, 255, 0.04);
    color: var(--foreground);
    outline: none;
    transition: all .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(56, 189, 248, 0.05);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.form-group select option { background: #1e293b; color: var(--foreground); }

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.form-error {
    font-size: .78rem;
    color: #ef4444;
    min-height: 1rem;
}

.form-success {
    margin-top: 1rem;
    padding: .875rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius);
    color: #34d399;
    font-size: .875rem;
    font-weight: 500;
    display: none;
}

.form-success.show { display: block; }

/* ── MAP ── */
.map-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    min-height: 420px;
}

.map-card__info {
    background: var(--card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    border-right: 1px solid var(--border);
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.map-info-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: .1rem;
}

.map-info-item div {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.map-info-item strong {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--primary);
    font-weight: 700;
}

.map-info-item span,
.map-info-item a {
    font-size: .95rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    text-decoration: none;
}

.map-info-item a:hover {
    color: var(--primary);
}

.map-card__iframe {
    position: relative;
    min-height: 380px;
}

.map-card__iframe iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .map-card {
        grid-template-columns: 1fr;
    }
    .map-card__info {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 2rem 1.5rem;
    }
    .map-card__iframe {
        min-height: 300px;
    }
}

/* ── COOKIES ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.25rem;
    background: rgba(10, 18, 36, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    flex: 1;
    min-width: 240px;
}

.cookie-banner__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: .1rem;
}

.cookie-banner__text strong {
    display: block;
    font-size: .9375rem;
    color: var(--foreground);
    margin-bottom: .2rem;
}

.cookie-banner__text p {
    font-size: .8125rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.5;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-link:hover {
    color: var(--primary-hover);
}

.cookie-banner__actions {
    display: flex;
    gap: .625rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: .5rem 1.125rem;
    border-radius: var(--radius);
    font-size: .8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    border: 1px solid transparent;
    font-family: var(--font-sans);
}

.cookie-btn--reject {
    background: transparent;
    border-color: var(--border);
    color: var(--muted-foreground);
}

.cookie-btn--reject:hover {
    border-color: var(--foreground);
    color: var(--foreground);
}

.cookie-btn--accept {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 2px 10px var(--primary-glow);
}

.cookie-btn--accept:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 4px 16px var(--primary-glow);
}

@media (max-width: 600px) {
    .cookie-banner__content {
        flex-direction: column;
        gap: 1rem;
    }
    .cookie-banner__actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ── FOOTER ── */
.footer {
    background: rgba(2, 6, 23, 0.95);
    border-top: 1px solid var(--border);
    color: #64748b;
    padding: 4rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__brand .nav__logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer__brand .logo-text {
    font-size: 1.75rem;
}

.footer__brand p {
    font-size: .875rem;
    line-height: 1.65;
    max-width: 260px;
}

.footer__links h4 {
    color: var(--foreground);
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: .03em;
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.footer__links a {
    color: #64748b;
    text-decoration: none;
    font-size: .875rem;
    transition: color .15s;
}

.footer__links a:hover { color: var(--primary); }

.footer-seo-link { opacity: .35; }
.footer-seo-link:hover { opacity: 1; }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 1.5rem 0;
    text-align: center;
}

.footer__bottom p { font-size: .8125rem; }

/* ── FAB WHATSAPP ── */
.fab-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 200;
    transition: transform .2s, box-shadow .2s;
    animation: fab-pulse 3s ease-in-out infinite;
}

@keyframes fab-pulse {
    0%, 100% {
        box-shadow:
            0 4px 12px rgba(37, 211, 102, .4),
            0 0 0 0 rgba(37, 211, 102, .4);
    }
    50% {
        box-shadow:
            0 4px 12px rgba(37, 211, 102, .4),
            0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .55) !important;
    animation: none;
}

/* ── CARD IMAGE ── */
.card__detail-btn { cursor: pointer; }

/* ── DETAIL MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 1.5rem;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(56, 189, 248, 0.08);
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    backdrop-filter: blur(4px);
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.modal__img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

.modal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.modal__size {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .25rem .75rem;
    border-radius: 9999px;
    font-size: .8125rem;
    font-weight: 600;
    background: var(--accent);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.3);
    width: fit-content;
}

.modal__size::before { content: '📐'; }

.modal__desc {
    font-size: .9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.modal__whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
    font-weight: 600;
    font-size: 1rem;
    padding: .875rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: all .2s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
    margin-top: .5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.modal__whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-15deg);
    transition: left .5s ease;
}

.modal__whatsapp:hover::after { left: 160%; }

.modal__whatsapp:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
    transform: translateY(-2px);
}

body.modal-open { overflow: hidden; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-wrap { grid-template-columns: 1fr; }
    .about__visual { max-width: 480px; margin: 0 auto; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav__links, .nav__cta { display: none; }

    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(2, 6, 23, 0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem;
        gap: .25rem;
        box-shadow: var(--shadow-md);
    }

    .nav__burger { display: flex; }

    .hero__stats { gap: 1rem; padding: 1rem 1.25rem; }
    .stat__divider { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__brand { grid-column: 1; }
    .about__float-card--1 { left: -.5rem; bottom: -.5rem; }
    .about__float-card--2 { right: -.5rem; top: -.5rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .catalog-grid { grid-template-columns: 1fr; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.1ms !important;
    }
}