/* * INDEX STYLES - CoworkingByVimod 
 * Main layout and component styles for the landing page */
:root {
    --primary: #052D61;
    --primary-glow: rgba(5, 45, 97, 0.4);
    --radius-custom: 16px;
    --font-main: 'Century Gothic', 'Questrial', sans-serif;
    --glass: rgba(30, 42, 55, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #d1d5db;
    --text-dim: #9ca3af;
    --bg-main: #1E1E1E;
    --bg-surface: #222A37;
    --bg-card: #393939;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    margin: 0;
    overflow-x: hidden;
}

.app-hero {
    background: linear-gradient(135deg, #222A37 0%, #1E1E1E 100%) !important;
    padding: 40px 2rem !important;
    border-radius: var(--radius-custom);
    margin-bottom: 1.5rem;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-custom);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.app-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

footer {
    order: 99999 !important;
}

/* ── Botones fluidos (override transition:none de index-page.css) ── */
.btn,
.btn-primary,
.btn-sm,
.pc-srv-button,
.trial-cta-btn,
.instagram-card-btn,
.location-btn-map,
.tira-btn,
.sidebar-menu-item,
.instagram-nav-btn {
    transition:
        transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        opacity 0.18s ease !important;
}

.btn:active,
.btn-primary:active,
.pc-srv-button:active,
.trial-cta-btn:active,
.instagram-card-btn:active {
    transform: scale(0.97) !important;
    transition-duration: 0.08s !important;
}

/* Reducir movimiento si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hero Header visibility in Light Mode */
body.light-mode #desktop-hero h1,
body.light-mode #desktop-hero h1 span,
body.light-mode .app-hero h1,
body.light-mode .app-hero h1 span,
body.light-mode #desktop-hero p,
body.light-mode .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    -webkit-text-fill-color: #ffffff !important;
}

body.light-mode .hero-badge span {
    color: #ffffff !important;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Spaces Grid */
.spaces-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
}

.premium-carousel-card {
    flex: 0 1 380px;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #000;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.premium-carousel-card:hover {
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(5, 45, 97, 0.3);
}

.premium-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
    z-index: 2;
}

.card-overlay h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vimod-swiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.vimod-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 10px;
}

/* QR Zoom Overlay */
.qr-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: zoom-out;
}

body.light-mode .qr-zoom-overlay {
    background: rgba(255, 255, 255, 0.9);
}

/* Splash Screen */
#vimod-splash {
    position: fixed;
    inset: 0;
    background: #1E1E1E;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    visibility: visible;
}

.splash-logo-tiny {
    height: 40px;
    margin-bottom: 2rem;
}

#splash-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #ffffff, #052D61);
    -webkit-text-fill-color: transparent;
}

/* VIMOD Info Carousel */
.vimod-carousel {
    position: relative;
    margin: 2rem 0;
    overflow: visible;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 28px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
}

.carousel-card {
    min-width: calc(50% - 0.75rem);
    flex: 0 0 calc(50% - 0.75rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
    transition: none;
    cursor: default;
    position: relative;
    backdrop-filter: blur(10px);
}

.carousel-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(5, 45, 97, 0.1);
}

.carousel-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-glow);
}

.carousel-card-body {
    padding: 2rem 2.25rem 2.25rem;
}

.carousel-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.carousel-card p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.carousel-btn:active {
    transform: scale(0.95);
}

@media (max-width: 900px) {
    .carousel-card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .carousel-card img {
        height: 260px;
    }

    .carousel-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-card img {
        height: 210px;
    }

    .carousel-card-body {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .carousel-card h3 {
        font-size: 1.3rem;
    }
}

/* Light Mode Aesthetic Overhaul */
body.light-mode {
    --grid-line: rgba(5, 45, 97, 0.15);
}

body.light-mode .explore-card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
}

body.light-mode .explore-card .title {
    color: #0f172a !important;
}

body.light-mode .explore-card .subtitle {
    color: #405470 !important;
}

body.light-mode .explore-card i,
body.light-mode .explore-card svg {
    background: transparent !important;
    color: var(--primary) !important;
    stroke: var(--primary) !important;
    stroke-width: 2.2px !important;
    border: none !important;
}

body.light-mode .explore-card svg,
body.light-mode .explore-card i svg {
    width: 24px !important;
    height: 24px !important;
}

body.light-mode .explore-card:hover i,
body.light-mode .explore-card:hover svg {
    background: var(--primary) !important;
    color: #ffffff !important;
    stroke: #ffffff !important;
}

body.light-mode .explore-card:hover {
    background: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 15px 35px rgba(5, 45, 97, 0.1) !important;
}

/* Membership Plans: Light Mode */
body.light-mode .plan-card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02), 0 15px 35px rgba(15, 23, 42, 0.04) !important;
}

body.light-mode .plan-card h3,
body.light-mode .plan-card .plans-price span,
body.light-mode .plan-card ul li {
    color: #0f172a !important;
}

body.light-mode .plan-card:hover {
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08) !important;
    border-color: var(--primary) !important;
}

body.light-mode .plan-card-recommended {
    background: #0f172a !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2), 0 5px 15px var(--primary-glow) !important;
}

body.light-mode .plan-card-recommended h3,
body.light-mode .plan-card-recommended .plans-price span:first-child,
body.light-mode .plan-card-recommended ul li {
    color: #ffffff !important;
}

body.light-mode .plan-card-recommended .plans-price span:last-child {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.light-mode .plan-card .btn-outline {
    border-color: rgba(15, 23, 42, 0.1) !important;
    color: #0f172a !important;
    background: rgba(15, 23, 42, 0.01) !important;
}

body.light-mode .plan-card .btn-outline:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

body.light-mode .plan-card .icon-bullet {
    background: rgba(5, 45, 97, 0.08) !important;
}

body.light-mode .plan-card-recommended .icon-bullet {
    background: var(--primary) !important;
}

body.light-mode .app-hero h1,
body.light-mode .app-hero h1 span {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    background: none !important;
    text-shadow: none !important;
}

/* Countdown Timer */
.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.time-val {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.time-lab {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    #countdown-timer {
        gap: 1rem !important;
    }

    .time-val {
        font-size: 2.5rem;
    }

    .time-block {
        min-width: 60px;
    }
}

/* Desktop Hero Overlay */
#desktop-hero {
    position: relative;
    padding: clamp(3rem, 8vw, 8rem) 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: clamp(50vh, 65vh, 80vh);
    width: 100%;
}

#desktop-hero h1,
#desktop-hero h1 *,
#desktop-hero p,
#desktop-hero .hero-subtitle {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.desktop-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.desktop-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.desktop-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.desktop-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.desktop-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.desktop-hero-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    font-weight: 500;
}

body.light-mode #desktop-hero {
    background: #0f172a !important;
}

body.light-mode .desktop-hero-overlay {
    background: rgba(0, 0, 0, 0.4) !important;
}

#desktop-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#desktop-hero .hero-badge span {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* VIMOD Spaces Carousel — mobile-first, responsive */
.blueprint-background {
    background-color: transparent;
    padding: clamp(2rem, 5vw, 4rem) 0;
    position: relative;
    overflow: visible;
}

#info-carousel {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.instagram-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.instagram-carousel-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x pan-y;
    box-sizing: border-box;
}

.instagram-carousel-container::-webkit-scrollbar {
    display: none;
}

.instagram-carousel-track {
    display: flex;
    gap: clamp(0.75rem, 3vw, 2rem);
    padding: 1.25rem 1.25rem 2.5rem;
    align-items: stretch;
    width: max-content;
    box-sizing: border-box;
}

.instagram-card {
    flex: 0 0 auto;
    width: min(420px, 92vw);
    max-width: min(420px, 92vw);
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* variables locales para adaptar claro/oscuro */
    --card-bg: rgba(12, 18, 34, 0.92);
    --card-border: rgba(255,255,255,0.08);
    --card-text: #cbd5e1;
    --card-title: #ffffff;
    --card-desc: rgba(203, 213, 225, 0.9);
    --card-brand: rgba(148, 163, 184, 0.75);
    --card-feature-bg: rgba(255,255,255,0.06);
    --card-feature-border: rgba(255,255,255,0.12);
    --card-feature-text: #e2e8f0;
    --card-price-bg: rgba(45, 120, 255, 0.16);
    --card-price-border: rgba(37, 99, 235, 0.28);
    --btn-bg: linear-gradient(135deg, #2563eb, #3b82f6);
    --btn-text: #ffffff;
    --btn-hover-bg: linear-gradient(135deg, #3b82f6, #60a5fa);

    background: var(--card-bg);
    border-radius: 32px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: 0 32px 90px rgba(0,0,0,0.28);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 1;
    transform: none;
}

.instagram-dot.active {
    width: 28px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

@media (max-width: 767px) {
    .instagram-dot.active {
        width: 22px;
    }
}

/* Aesthetic enhancements: delicate borders, shadows and transitions */
.instagram-carousel-container {
    scroll-behavior: smooth;
}

.instagram-carousel-track {
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.instagram-carousel-track > .instagram-card {
    transition: none;
}

.instagram-card {
    position: relative;
    overflow: visible;
    background-clip: padding-box;
}

.instagram-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 42%);
    filter: blur(10px);
    opacity: 0.25;
    pointer-events: none;
}

.instagram-card:hover::before {
    opacity: 0.35;
    transform: translateY(-1px);
}

.instagram-card.active,
.instagram-card:hover {
    transform: none;
    box-shadow: 0 32px 90px rgba(0,0,0,0.28);
    opacity: 1;
}

.instagram-card-img-wrapper img {
    transition: none;
}

.instagram-card-btn {
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

@media (hover: hover) {
    .instagram-card-btn:hover {
        transform: translateY(-2px) scale(1.01);
        background: linear-gradient(135deg, #60a5fa, #2563eb);
        box-shadow: 0 18px 40px rgba(37,99,235,0.32);
    }
}

.instagram-nav-btn {
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

/* Slightly soften nav buttons and add focus styles */
.instagram-nav-btn:focus {
    outline: none;
    box-shadow: 0 6px 18px rgba(37,99,235,0.14);
    transform: translateY(-50%) scale(1.02);
}

/* End of Instagram Carousel Styles */

/* Imagen — todas las resoluciones */
.instagram-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* Horizontal en móvil/tablet para mayor compacidad */
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px 32px 0 0;
}

.instagram-card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.3) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

@media (hover: hover) {
    .instagram-card.active:hover .instagram-card-img-wrapper img {
        transform: scale(1.04);
    }
}

/* Contenido — base móvil / tablet / escritorio */
.instagram-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.85rem;
    padding: 1.5rem 1.5rem 1.75rem;
    background: transparent;
    color: var(--card-text);
    min-width: 0;
}

.instagram-card-header-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.instagram-card-brand {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--card-brand);
}

.instagram-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--card-title);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.instagram-card-desc {
    font-size: 0.9rem;
    color: var(--card-desc);
    line-height: 1.55;
    margin: 0;
}

.instagram-card-features {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.instagram-card-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--card-feature-text);
    background: rgba(255,255,255,0.06);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
}

.instagram-card-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.1rem;
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 999px;
    color: #dbeafe;
    font-weight: 700;
    font-size: 0.95rem;
    width: fit-content;
    margin-top: 0.45rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.instagram-card-price-pill i,
.instagram-card-price-pill svg {
    width: 16px;
    height: 16px;
    color: #93c5fd;
    stroke-width: 2.25;
}

.instagram-card-footer {
    margin-top: auto;
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: stretch;
}

.instagram-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ancho completo por defecto en móvil */
    min-height: 48px;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff !important;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none !important;
    border: none;
    box-shadow: 0 12px 30px rgba(37,99,235,0.24);
}

.instagram-card-btn:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .instagram-carousel-wrapper {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .instagram-carousel-container {
        --carousel-gap: 0.75rem;
        --carousel-slide-ratio: 0.94;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0.5rem 0.35rem 1.25rem;
        gap: var(--carousel-gap);
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0.35rem;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .instagram-carousel-track {
        display: flex;
        align-items: stretch;
    }

    .instagram-card {
        flex: 0 0 auto;
        width: min(94vw, 420px);
        max-width: min(94vw, 420px);
        min-width: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        opacity: 0.65;
        transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        filter: none;
    }

    .instagram-card.active {
        opacity: 1;
        z-index: 1;
    }

    /* Proporción de imagen en móvil */
    .instagram-card-img-wrapper {
        aspect-ratio: 4 / 3;
    }

    .instagram-card-content {
        padding: 0.85rem 0.95rem 1rem;
        gap: 0.45rem;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .instagram-card-header-group {
        gap: 0.15rem;
    }

    .instagram-card-brand {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    .instagram-card-title {
        font-size: 1.1rem;
        line-height: 1.1;
    }

    .instagram-card-desc {
        font-size: 0.76rem;
        line-height: 1.45;
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    /* Remove mobile expand/collapse controls and show full card content */
    .instagram-card-toggle {
        display: none !important;
    }

    .instagram-card-toggle-icon {
        display: none !important;
    }

    .instagram-card-expandable {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .instagram-card.is-expanded .instagram-card-expandable {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible;
    }

    .instagram-card.is-expanded .instagram-card-desc {
        margin-top: 0.1rem;
    }

    .instagram-card-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.35rem;
        margin: 0.15rem 0 0;
    }

    .instagram-card-features li {
        min-width: 0;
        font-size: 0.55rem;
        padding: 0.38rem 0.45rem;
        gap: 0.3rem;
        letter-spacing: 0.02em;
        border-radius: 8px;
    }

    /* Tercer feature (Sala Común) en una sola fila */
    .instagram-card-features li:nth-child(3):last-child {
        grid-column: 1 / -1;
    }

    .instagram-card-features i,
    .instagram-card-features svg {
        width: 13px;
        height: 13px;
    }

    .instagram-card-price-pill {
        font-size: 0.72rem;
        padding: 0.32rem 0.65rem;
        margin-top: 0.1rem;
    }

    .instagram-card-price-pill i,
    .instagram-card-price-pill svg {
        width: 13px;
        height: 13px;
    }

    .instagram-card-footer {
        margin-top: 0.25rem;
        padding-top: 0;
    }

    .instagram-card-btn {
        min-height: 38px;
        padding: 0.6rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 10px;
        width: 100%;
    }

    .instagram-nav-btn {
        display: none !important;
    }

    /* ── Optimizaciones de rendimiento para móvil ── */

    /* Eliminar backdrop-filter costoso en items de features */
    .instagram-card-features li {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    /* Desactivar el blur del pseudo-elemento ::before */
    .instagram-card::before {
        filter: none !important;
        opacity: 0 !important;
        display: none !important;
    }

    /* Transición mínima: solo opacidad rápida para el foco */
    .instagram-card {
        transition: opacity 0.1s ease !important;
    }

    /* Eliminar will-change innecesario del track (no usa transform) */
    .instagram-carousel-track {
        will-change: auto !important;
        transition: none !important;
    }

    /* Promover el container a capa GPU para scroll nativo fluido */
    .instagram-carousel-container {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: scroll-position;
    }

    /* Desactivar animaciones de imagen en hover (no aplican en táctil) */
    .instagram-card-img-wrapper img {
        transition: none !important;
        will-change: auto !important;
    }

    /* Desactivar efectos hover que no aplican en móvil */
    .instagram-card.active,
    .instagram-card:hover {
        transform: none !important;
    }
}

/* Tablet+ : contenido siempre visible */
@media (min-width: 768px) {
    .instagram-card-toggle {
        display: none !important;
    }

    .instagram-card-expandable {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
}

/* Forzar contenido siempre visible: eliminar comportamiento de colapso en todas las resoluciones */
.instagram-card-toggle {
    display: none !important;
}

.instagram-card-expandable {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    transition: none !important;
    gap: 0.75rem;
}

.instagram-card-footer {
    margin-top: auto !important;
}

.instagram-card.is-expanded .instagram-card-toggle-icon {
    transform: none !important;
}

/* Tablet (solo ≥768 para no pisar reglas móvil) */
@media (min-width: 768px) and (max-width: 1023px) {
    .instagram-carousel-container {
        display: block;
        scroll-padding-inline: max(1.5rem, calc((100% - min(75vw, 560px)) / 2));
    }

    .instagram-carousel-track {
        display: flex;
        padding-inline: max(1.5rem, calc((100% - min(75vw, 560px)) / 2));
        gap: 1.5rem;
    }

    .instagram-card {
        flex: 0 0 min(75vw, 560px);
        width: min(75vw, 560px);
        border-radius: 22px;
    }

    .instagram-card-content {
        padding: 1.5rem 1.5rem 1.75rem;
        gap: 0.85rem;
    }

    .instagram-card-title {
        font-size: 1.6rem;
    }

    .instagram-card-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin: 0.25rem 0 0;
    }

    .instagram-card-features li {
        font-size: 0.72rem;
    }
}

/* Escritorio — layout horizontal */
@media (min-width: 1024px) {
    .instagram-carousel-container {
        display: block;
        scroll-padding-inline: max(2rem, calc((100% - min(1000px, 88vw)) / 2));
    }

    .instagram-carousel-track {
        display: flex;
        gap: clamp(1.5rem, 3.5vw, 3rem);
        /* centrar slides con padding calculado según ancho de tarjeta */
        padding: 2rem max(2rem, calc((100% - min(820px, 80vw)) / 2)) 3rem;
    }

    .instagram-card {
        flex-direction: row;
        flex: 0 0 auto;
        width: clamp(750px, 58vw, 840px);
        max-width: 860px;
        min-width: 0;
        height: 420px; /* Altura fija para consistencia visual */
        align-items: stretch;
        border-radius: 24px;
        overflow: hidden;
        padding: 0;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    }

    .instagram-card-img-wrapper {
        flex: 0 0 42%;
        width: 42%;
        height: 100%;
        aspect-ratio: auto;
        display: block;
        padding: 0;
        box-sizing: border-box;
        border-radius: 24px 0 0 24px;
        overflow: hidden;
        background: transparent;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .instagram-card-img-wrapper img {
        border-radius: 24px 0 0 24px;
        box-shadow: none;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        display: block;
    }

    .instagram-card-img-wrapper::after {
        display: none;
    }

    .instagram-card-content {
        justify-content: space-between;
        padding: 2rem 2rem 2rem 2.25rem;
        gap: 1rem;
        overflow: visible;
        min-height: 0;
        flex: 1;
        border-left: none;
        background: transparent;
        box-shadow: none;
    }

    .instagram-card-header-group {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .instagram-card-brand {
        color: var(--card-brand);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .instagram-card-title {
        font-size: clamp(1.4rem, 2vw, 1.85rem);
        margin-top: 0.1rem;
        font-weight: 900;
    }

    .instagram-card-desc {
        font-size: 0.88rem;
        line-height: 1.5;
        color: var(--card-desc);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .instagram-card-expandable {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        flex: 1;
        min-height: 0;
        overflow: visible;
        max-height: none;
        opacity: 1;
    }

    .instagram-card-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin: 0;
    }

    .instagram-card-features li {
        font-size: 0.65rem;
        font-weight: 700;
        padding: 0.4rem 0.75rem;
        border-radius: 10px;
        display: flex;
        align-items: flex-start;
        gap: 0.45rem;
        box-sizing: border-box;
        white-space: normal;
        word-break: break-word;
        line-height: 1.35;
    }

    .instagram-card-features li i,
    .instagram-card-features li svg {
        flex-shrink: 0;
        width: 13px;
        height: 13px;
        margin-top: 1px;
    }

    .instagram-card-features li:nth-child(3):last-child {
        grid-column: 1 / -1;
    }

    .instagram-card-footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
        width: 100%;
        padding-top: 0.5rem;
        box-sizing: border-box;
    }

    .instagram-card-price-pill {
        font-size: 0.9rem;
        padding: 0.55rem 1rem;
        margin: 0;
        flex-shrink: 0;
    }

    .instagram-card-btn {
        min-height: 44px;
        padding: 0.65rem 1.25rem;
        border-radius: 12px;
        font-size: 0.85rem;
        width: auto;
        flex-shrink: 0;
        margin: 0;
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    }

    /* Permite ver la tarjeta adyacente en pantallas de alta resolución */
    .instagram-carousel-container {
        overflow-x: visible;
    }

    /* Ajustes específicos para pantallas anchas */
    @media (min-width: 1280px) {
        .instagram-card {
            width: 820px;
            height: 420px;
        }
        .instagram-card-img-wrapper {
            flex: 0 0 42%;
            width: 42%;
        }
        .instagram-card-content {
            padding: 2.25rem 2.25rem 2.25rem 2.5rem;
        }
        .instagram-card-desc {
            font-size: 0.9rem;
            line-height: 1.55;
        }
    }
}

/* Navegación */
.instagram-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.instagram-nav-btn i,
.instagram-nav-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

@media (hover: hover) {
    .instagram-nav-btn:hover {
        background: rgba(37, 99, 235, 0.9);
        transform: translateY(-50%) scale(1.06);
        box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
    }
}

.instagram-nav-prev {
    left: 0.5rem;
}

.instagram-nav-next {
    right: 0.5rem;
}

@media (min-width: 768px) {
    .instagram-nav-btn {
        display: flex;
    }

    .instagram-nav-prev {
        left: max(0.25rem, calc(50% - min(500px, 42vw) - 2.5rem));
    }

    .instagram-nav-next {
        right: max(0.25rem, calc(50% - min(500px, 42vw) - 2.5rem));
    }
}

@media (min-width: 1024px) {
    .instagram-nav-prev {
        left: max(0.5rem, calc(50% - min(500px, 44vw) - 3rem));
    }

    .instagram-nav-next {
        right: max(0.5rem, calc(50% - min(500px, 44vw) - 3rem));
    }

    .instagram-nav-btn {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }
}

/* Indicadores */
.instagram-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-bottom: 1.5rem;
}

.instagram-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    font: inherit;
    transition: width 0.35s ease, background 0.35s ease, transform 0.2s ease;
}

.instagram-dots .instagram-dot {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .instagram-dot {
        width: 28px;
        height: 6px;
        min-width: 28px;
        min-height: 6px;
        border-radius: 4px;
    }
}

.instagram-dot:hover {
    background: rgba(255, 255, 255, 0.45);
}

.instagram-dot.active {
    width: 28px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

@media (max-width: 767px) {
    .instagram-dot.active {
        width: 22px;
    }
}

/* End of Instagram Carousel Styles */
/* Ajustes de Tema (Light Mode) */
body.light-mode .instagram-card {
    --card-bg: #ffffff !important;
    --card-border: rgba(15, 23, 42, 0.08) !important;
    --card-text: #111827 !important;
    --card-title: #0f172a !important;
    --card-desc: rgba(51, 65, 85, 0.8) !important;
    --card-brand: rgba(55, 65, 81, 0.82) !important;
    --card-feature-bg: rgba(15, 23, 42, 0.04) !important;
    --card-feature-border: rgba(15, 23, 42, 0.08) !important;
    --card-feature-text: rgba(51, 65, 85, 0.9) !important;
    --card-price-bg: rgba(59, 130, 246, 0.06) !important;
    --card-price-border: rgba(59, 130, 246, 0.18) !important;
    --btn-bg: var(--primary) !important;
    --btn-text: #ffffff !important;
    --btn-hover-bg: rgba(3, 30, 65, 0.95) !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08) !important;
}

body.light-mode .instagram-card-brand {
    color: #2563eb;
    opacity: 0.8;
}

body.light-mode .instagram-card-title {
    color: #0f172a;
}

body.light-mode .instagram-card-desc {
    color: #475569;
}

body.light-mode .instagram-card-features li {
    color: #1e293b;
    background: rgba(5, 45, 97, 0.03);
    border-color: rgba(5, 45, 97, 0.05);
}

body.light-mode .instagram-card-features i {
    color: #3b82f6;
}

body.light-mode .instagram-card-price-pill {
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

body.light-mode .instagram-nav-btn {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.08);
    color: #2563eb;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}

body.light-mode .instagram-dot {
    background: #cbd5e1;
}

body.light-mode .instagram-dot.active {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

body.light-mode .blueprint-background {
    background-image: none;
}

/* End of Instagram Carousel Styles */

@media (max-width: 990px) {
    .coverflow-carousel-wrapper {
        height: 820px;
        perspective: none;
    }

    .coverflow-item.active {
        width: 92%;
        max-width: 420px;
        flex-direction: column;
    }

    .coverflow-item.active .coverflow-img-wrapper {
        width: 100%;
        height: 280px;
        border-radius: 24px 24px 0 0;
    }

    .coverflow-item.active .coverflow-info {
        width: 100%;
        padding: 2rem;
    }

    .coverflow-nav-btn {
        top: 30%;
        width: 40px;
        height: 40px;
    }

    .coverflow-title-vimod {
        font-size: 1.4rem;
    }

    .coverflow-tagline {
        font-size: 1.25rem;
    }

    .coverflow-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Service Strip */
.modern-service-strip {
    background: #191a19;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    border-top: 1px solid #3f4040;
    border-bottom: 1px solid #3f4040;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.modern-service-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.modern-service-text {
    flex: 0 1 420px;
    min-width: 240px;
}

.modern-service-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 0;
    letter-spacing: -2px;
}

.modern-service-cards {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modern-card {
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 380px;
    height: 420px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #212635;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modern-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.modern-card:hover img {
    opacity: 1;
}

.modern-card-glass {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    border-radius: 18px;
    background: rgba(15, 20, 30, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.9rem 1.1rem;
    transition:
        background  0.3s ease,
        transform   0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.3s ease,
        padding     0.3s ease;
    will-change: transform;
}

.modern-card:hover .modern-card-glass {
    background: rgba(15, 20, 30, 0.82);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-6px);
    padding: 1.1rem 1.2rem;
}

.modern-card-glass h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.modern-card-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.modern-card-icon-wrapper {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-card-icon-wrapper i {
    width: 14px;
    color: white;
}

.modern-card-badge-text {
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Description — colapsa por defecto, se revela en hover */
.modern-card-desc {
    color: #cbd5e1;
    font-size: 0.82rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition:
        max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        opacity    0.24s ease 0.06s,
        margin-top 0.24s ease;
}

.modern-card:hover .modern-card-desc {
    max-height: 5rem;
    opacity: 1;
    margin-top: 0.4rem;
}

/* Botón — colapsa por defecto, se revela en hover */
.modern-card-glass .btn {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    pointer-events: none !important;
    transition:
        max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        opacity    0.22s ease 0.1s,
        margin-top 0.24s ease,
        padding    0.28s ease !important;
}

.modern-card:hover .modern-card-glass .btn {
    max-height: 3.5rem !important;
    opacity: 1 !important;
    margin-top: 0.75rem !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    pointer-events: auto !important;
}

.tira-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.tira-btn:hover {
    background: white;
    color: #052D61;
    box-shadow: 0 10px 20px rgba(5, 45, 97, 0.4);
}

/* Fixes for the greeting name */
.greeting-name {
    color: inherit;
}

body.light-mode .greeting-name {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000000;
    color: #000000;
}

/* Light mode: glass más opaco para que el texto sea legible */
/* Las tarjetas de impresión usan el mismo tono oscuro en ambos modos */
body.light-mode .modern-card {
    background: #212635 !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

body.light-mode .modern-card img {
    opacity: 0.92;
}

body.light-mode .modern-card-glass {
    background: rgba(15, 20, 30, 0.55);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

body.light-mode .modern-card:hover .modern-card-glass {
    background: rgba(15, 20, 30, 0.82);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

/* Forzar texto e iconos blancos dentro del glass (el global light-mode los hace oscuros) */
body.light-mode .modern-card-glass h3,
body.light-mode .modern-card-glass h3 *,
body.light-mode .modern-card-glass .modern-card-badge-text {
    color: #ffffff !important;
}

body.light-mode .modern-card-glass .modern-card-desc {
    color: #cbd5e1 !important;
}

body.light-mode .modern-card-glass .modern-card-icon-wrapper i,
body.light-mode .modern-card-glass .modern-card-icon-wrapper svg {
    color: #ffffff !important;
}

body.light-mode .modern-card-glass .modern-card-icon-wrapper {
    background: none !important;
    border: none !important;
}

/* Dark mode hover: glass stays dark, keep white text */
body:not(.light-mode) .modern-card:hover .modern-card-glass h3,
body:not(.light-mode) .modern-card:hover .modern-card-badge-text,
body:not(.light-mode) .modern-card:hover .modern-card-icon-wrapper i {
    color: #ffffff;
}

body:not(.light-mode) .modern-card:hover .modern-card-desc {
    color: #cbd5e1;
}

body:not(.light-mode) .modern-card:hover .modern-card-icon-wrapper {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .modern-service-strip {
    background: #f5f7fa !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: none !important;
}


body.light-mode .modern-service-text h2 {
    color: #0f172a !important;
}

@media (max-width: 1000px) {
    .modern-service-strip-inner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }

    .modern-service-text {
        flex: none !important;
        width: 100% !important;
        min-width: unset !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .modern-service-cards {
        width: 100% !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        flex-wrap: wrap !important;
    }

    .modern-card {
        height: 380px !important;
        max-width: 400px !important;
        flex: 1 1 280px !important;
    }
}

@media (max-width: 768px) {
    .instagram-carousel-track {
        padding-bottom: 2rem !important;
    }

    .blueprint-background {
        padding-bottom: 2rem !important;
    }

    .modern-service-strip {
        margin-top: 4rem !important;
        padding-top: 1rem !important;
    }

    .modern-service-text h2 {
        font-size: 2.2rem !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
    }

    .modern-service-cards {
        flex-direction: column !important;
        align-items: center !important;
    }

    .modern-card {
        height: 360px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
        flex: none !important;
    }
}

@media (max-width: 480px) {
    .modern-card {
        height: 320px !important;
        min-width: unset !important;
        border-radius: 20px !important;
    }

    .modern-service-text h2 {
        font-size: 1.9rem !important;
        letter-spacing: -1px !important;
    }

    .modern-service-strip-inner {
        padding: 1.5rem 1rem !important;
    }
}

/* ── Móvil táctil: imagen arriba · panel expandible abajo ─────────────────── */
@media (hover: none) {

    /* 1. Card en columna: imagen encima, panel debajo */
    .modern-card {
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        background: #1c2030 !important;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5) !important;
        border-radius: 18px !important;
        position: relative !important;
    }

    /* 2. Imagen con bordes superiores redondeados */
    .modern-card img {
        height: 230px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 18px 18px 0 0 !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        flex-shrink: 0 !important;
        position: static !important;
        display: block !important;
    }

    .modern-card:hover img {
        transform: none !important;
        opacity: 1 !important;
    }

    /* 3. Badge con icono: flujo estático encima del título */
    .modern-card-badge {
        display: inline-flex !important;
        position: static !important;
        align-items: center !important;
        gap: 5px !important;
        margin: 0 0 6px 0 !important;
        padding: 4px 9px !important;
        background: rgba(255, 255, 255, 0.07) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 20px !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .modern-card-badge .modern-card-icon-wrapper {
        width: 16px !important;
        height: 16px !important;
    }

    .modern-card-badge .modern-card-icon-wrapper i {
        width: 11px !important;
        height: 11px !important;
    }

    /* 4. Panel de texto: flujo normal debajo de la imagen */
    .modern-card-glass {
        position: relative !important;
        border-radius: 0 0 18px 18px !important;
        background: #1c2030 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        padding: 0.9rem 1rem !important;
        transform: none !important;
        cursor: pointer !important;
        user-select: none !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        overflow: visible !important;
        z-index: 2 !important;
    }

    /* Gradiente que suaviza la transición imagen → panel */
    .modern-card-glass::before {
        content: '' !important;
        position: absolute !important;
        top: -60px !important;
        left: 0 !important;
        right: 0 !important;
        height: 60px !important;
        background: linear-gradient(to bottom, transparent 0%, #1c2030 100%) !important;
        pointer-events: none !important;
        z-index: 1 !important;
    }

    /* Flecha indicadora de expansión */
    .modern-card-glass::after {
        content: '›' !important;
        position: absolute !important;
        right: 1rem !important;
        top: 0.9rem !important;
        color: rgba(255, 255, 255, 0.35) !important;
        font-size: 1.6rem !important;
        font-weight: 300 !important;
        line-height: 1 !important;
        transform: rotate(90deg) !important;
        transition: transform 0.3s ease !important;
    }

    .modern-card-glass.expanded::after {
        transform: rotate(-90deg) !important;
    }

    .modern-card:hover .modern-card-glass {
        transform: none !important;
        padding: 0.9rem 1rem !important;
        background: #1c2030 !important;
        border-color: rgba(255, 255, 255, 0.06) !important;
    }

    /* 5. Título con espacio para la flecha */
    .modern-card-glass h3 {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        margin: 0 !important;
        padding-right: 1.8rem !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* 6. Descripción: colapsada por defecto, visible al expandir */
    .modern-card-desc {
        max-height: 0 !important;
        opacity: 0 !important;
        margin-top: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s ease, opacity 0.28s ease, margin-top 0.28s ease !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .modern-card-glass.expanded .modern-card-desc {
        max-height: 5rem !important;
        opacity: 1 !important;
        margin-top: 0.45rem !important;
    }

    /* 7. Botón siempre visible */
    .modern-card-glass .btn {
        max-height: 3rem !important;
        opacity: 1 !important;
        margin-top: 0.65rem !important;
        padding: 9px 12px !important;
        font-size: 0.84rem !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* 8. Separación entre cards */
    .modern-service-cards {
        gap: 1.25rem !important;
    }
}

/* Rules & Location Container */
.rules-location-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
    align-items: center;
    padding-bottom: 1rem;
}

@media (min-width: 850px) {
    .rules-location-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.rules-card,
.location-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.rules-card {
    margin-bottom: 2rem;
    max-height: 500px;
    background: #151B23;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.location-card {
    background: #151B23;
    padding: 0;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

@media (min-width: 850px) {
    .rules-card {
        margin-bottom: 0;
        max-height: none;
    }

    .location-card {
        margin-top: 0;
    }
}

.location-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.section-glow-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, var(--primary-glow), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.modern-section-badge {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.6rem;
}

.modern-section-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -1.5px;
    margin-bottom: 0.8rem;
}

.rules-list {
    list-style: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

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

.rule-icon-box {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-icon-box i {
    width: 16px;
    color: var(--primary);
    stroke-width: 2.5;
}

.rule-text {
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-main);
}

.location-address-card {
    background: #0D1B2A;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.location-address-label {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.location-address-text {
    font-size: 1.3rem;
    color: var(--text-main);
    line-height: 1.3;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.location-city {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.location-btn-map {
    width: 100%;
    justify-content: center;
    padding: 1.5rem !important;
    border-radius: 18px !important;
    font-weight: 900 !important;
    font-size: 0.85rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

body.light-mode .rules-card {
    background: #ffffff;
}

body.light-mode .location-card {
    background: #f8fafc;
}

body.light-mode .location-address-card {
    background: #ffffff;
}

/* Footer */
.modern-footer {
    margin-top: 3rem;
    padding: 3rem 1.5rem 4rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(5, 45, 97, 0.05));
    width: 100%;
}

.footer-logo-main {
    font-family: 'Outfit', sans-serif;
    font-weight: 200;
    font-size: 2.5rem;
    color: var(--text-main);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.footer-logo-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 2px;
}

.footer-logo-sub span {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.75rem;
    text-transform: lowercase;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.footer-social-link {
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.footer-social-link:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
}

.footer-social-link svg {
    width: 32px;
    height: 32px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    letter-spacing: 1px;
    opacity: 0.5;
}

/* =============================================
   TRIAL SECTION — Premium Coverflow Style
   ============================================= */
.trial-section-premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0D1B2A 0%, #1B263B 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 30px rgba(5, 45, 97, 0.08),
        0 24px 56px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Glow corner — top right */
.trial-glow-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at top right, rgba(5, 45, 97, 0.45), rgba(74, 158, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative floating shapes */
.trial-decorative-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.trial-decorative-shapes::before {
    content: '';
    position: absolute;
    top: 12%;
    left: -30px;
    width: 130px;
    height: 130px;
    border: 2px solid rgba(74, 158, 255, 0.12);
    border-radius: 24px;
    transform: rotate(25deg);
    opacity: 0.7;
}

.trial-decorative-shapes::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(74, 158, 255, 0.1);
    border-radius: 50%;
    opacity: 0.6;
}

/* Content wrapper */
.trial-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    max-width: 480px;
    margin: 0 auto;
}

/* Badge */
.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #6db3f8;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(5, 45, 97, 0.25);
    border: 1px solid rgba(74, 158, 255, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    margin-bottom: 1rem;
}

.trial-badge i {
    width: 14px;
    height: 14px;
    color: #6db3f8;
}

/* Icon */
.trial-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(5, 45, 97, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 24px rgba(5, 45, 97, 0.3), 0 0 16px rgba(74, 158, 255, 0.08);
    animation: trialIconFloat 4s ease-in-out infinite;
}

.trial-icon-wrapper i {
    width: 24px;
    height: 24px;
    color: #6db3f8;
}

@keyframes trialIconFloat {

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

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

/* Title */
.trial-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.trial-highlight {
    background: linear-gradient(135deg, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Description */
.trial-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto 1.5rem;
}

.trial-desc strong {
    color: #ffffff;
    font-weight: 800;
}

/* CTA Button */
.trial-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    padding: 0.95rem 2rem !important;
    background: #004AAD !important;
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none !important;
    border-radius: 16px !important;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(5, 45, 97, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.trial-cta-btn:hover {
    transform: translateY(-3px);
    background: #003B89;
    box-shadow: 0 18px 40px rgba(5, 45, 97, 0.5);
}

.trial-cta-btn:active {
    transform: translateY(0);
}

.trial-cta-btn i {
    width: 18px;
    height: 18px;
}

/* Light mode */
body.light-mode .trial-section-premium {
    background: linear-gradient(145deg, #f1f5f9 0%, #ffffff 100%);
    border-color: rgba(5, 45, 97, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

body.light-mode .trial-glow-corner {
    background: radial-gradient(circle at top right, rgba(5, 45, 97, 0.08), transparent 70%);
}

body.light-mode .trial-decorative-shapes::before,
body.light-mode .trial-decorative-shapes::after {
    border-color: rgba(5, 45, 97, 0.08);
}

body.light-mode .trial-title {
    color: #0f172a !important;
}

body.light-mode .trial-highlight {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #0f172a;
    color: #0f172a;
}

body.light-mode .trial-desc {
    color: #475569 !important;
}

body.light-mode .trial-desc strong {
    color: #0f172a !important;
}

body.light-mode .trial-icon-wrapper {
    background: rgba(5, 45, 97, 0.08);
    border-color: rgba(5, 45, 97, 0.15);
}

body.light-mode .trial-badge {
    background: rgba(5, 45, 97, 0.06);
    border-color: rgba(5, 45, 97, 0.12);
}

/* Responsive */
@media (max-width: 768px) {

    /* Hero Adjustments */
    #desktop-hero {
        padding: 2rem 1.5rem !important;
        min-height: auto !important;
    }

    .desktop-hero-title {
        font-size: 3.5rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1 !important;
    }

    .desktop-hero-subtitle {
        font-size: 1.15rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
    }

    /* Remove extra space below greeting */
    #cms-greeting-wrapper {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    #cms-greeting-wrapper h2 {
        font-size: 3rem !important;
    }

    #cms-greeting-wrapper>div {
        margin-top: 0.75rem !important;
    }

    /* General Typography — mobile scale */
    .desktop-hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
    }

    .modern-section-title {
        font-size: 1.6rem !important;
    }

    .trial-title {
        font-size: clamp(1.6rem, 6vw, 2rem) !important;
    }

    p,
    .rule-text,
    .modern-card-desc,
    .trial-desc {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
    }

    .trial-section-premium {
        padding: 3rem 1.5rem;
        border-radius: 24px;
        margin-top: 2rem;
    }

    .trial-title {
        font-size: 2rem !important;
        letter-spacing: -1px;
    }

    .trial-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }

    .trial-icon-wrapper i {
        width: 24px;
        height: 24px;
    }

    .trial-cta-btn {
        padding: 1.1rem 1.5rem !important;
        font-size: 0.9rem !important;
        letter-spacing: 1.5px;
    }

    .trial-decorative-shapes::before {
        width: 80px;
        height: 80px;
        left: -25px;
    }

    .trial-decorative-shapes::after {
        width: 60px;
        height: 60px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .trial-section-premium {
        padding: 2.5rem 1.25rem;
    }

    .trial-badge {
        font-size: 0.6rem;
        letter-spacing: 2px;
        padding: 5px 14px;
    }
}

/* =============================================
   PC SERVICE CARD — Premium Custom Card Style
   ============================================= */
.pc-service-section {
    margin: 4.5rem auto;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.pc-srv-card {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 0;
    background: rgba(16, 31, 61, 0.95);
    border: 1px solid rgba(92, 157, 255, 0.14);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.42);
    min-height: 460px;
    margin: 0 auto;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Left panel — full-bleed image */
.pc-srv-panel {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.pc-srv-panel:first-child {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 300px;
}

.pc-srv-panel:last-child {
    background: linear-gradient(160deg, #0d1e3e 0%, #08101f 100%);
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    border-left: 1px solid rgba(92, 157, 255, 0.1);
}

.pc-srv-panel h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 2.3rem);
    line-height: 1.15;
    color: #eef4ff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.pc-srv-panel p {
    margin: 0;
    color: #8da3c8;
    line-height: 1.75;
    font-size: 0.97rem;
}

/* Label floats over the image */
.pc-srv-label {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(6, 12, 30, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(92, 157, 255, 0.25);
    width: fit-content;
}

/* Visual fills the entire left panel */
.pc-srv-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.pc-srv-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.pc-srv-card:hover .pc-srv-visual img {
    transform: none;
}

.pc-srv-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 12, 30, 0.28) 0%, transparent 38%);
    pointer-events: none;
    z-index: 2;
}

.pc-srv-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.pc-srv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f93ff, #1e62f5);
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 32px rgba(30, 98, 245, 0.28);
    transition: transform .22s ease, box-shadow .22s ease;
    border: none;
    cursor: pointer;
}

.pc-srv-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(30, 98, 245, 0.38);
}

.pc-srv-details {
    display: grid;
    gap: 10px;
}

.pc-srv-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7b95c0;
    font-size: 0.88rem;
    line-height: 1.4;
}

.pc-srv-detail::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f93ff;
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 820px) {
    .pc-srv-card {
        grid-template-columns: 1fr;
    }

    .pc-srv-panel:first-child {
        min-height: 280px;
    }

    .pc-srv-panel:last-child {
        border-left: none;
        border-top: 1px solid rgba(92, 157, 255, 0.12);
    }
}

@media (max-width: 540px) {
    .pc-srv-card {
        border-radius: 22px;
    }

    .pc-srv-panel:last-child {
        padding: 1.75rem 1.5rem;
        gap: 1rem;
    }

    .pc-srv-bottom-row {
        flex-direction: column;
        align-items: stretch;
    }

    .pc-srv-button {
        width: 100%;
        justify-content: center;
    }
}

/* Light Mode Overrides */
body.light-mode .pc-srv-card {
    background: rgba(248, 250, 255, 0.98);
    border: 1px solid rgba(5, 45, 97, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

body.light-mode .pc-srv-panel:last-child {
    background: linear-gradient(160deg, #f8faff 0%, #eef2fb 100%);
    border-left-color: rgba(5, 45, 97, 0.08);
}

body.light-mode .pc-srv-panel h3 {
    color: #0f172a;
}

body.light-mode .pc-srv-panel p {
    color: #475569;
}

body.light-mode .pc-srv-label {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.22);
}

body.light-mode .pc-srv-detail {
    color: #475569;
}

body.light-mode .pc-srv-detail::before {
    background: #2563eb;
}

/* =============================================
   ELEGANT FOOTER
   ============================================= */
.elegant-footer {
    background: #0a0f1e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem 2rem 0;
    width: 100%;
    --footer-title: rgba(255, 255, 255, 0.45);
    --footer-text-bright: rgba(255, 255, 255, 0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--footer-text-bright);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 0.5rem;
}

.footer-logo-container {
    justify-content: center;
    align-items: flex-start;
}

.footer-contact-item {
    display: flex;
    align-items: center;
}

.contact-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.85rem 0;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-container {
    width: 100%;
}

.footer-social-container {
    display: flex;
    align-items: center;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.instagram-btn:hover { background: rgba(225, 48, 108, 0.15); border-color: rgba(225, 48, 108, 0.4); }
.whatsapp-btn:hover  { background: rgba(37, 211, 102, 0.15); border-color: rgba(37, 211, 102, 0.4); }
.tiktok-btn:hover    { background: rgba(255, 255, 255, 0.1);  border-color: rgba(255, 255, 255, 0.3); }

body.light-mode .elegant-footer {
    background: #f1f5f9;
    border-top-color: rgba(0, 0, 0, 0.08);
    --footer-title: rgba(0, 0, 0, 0.45);
    --footer-text-bright: #1e293b;
}

body.light-mode .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .social-icon-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .contact-icon-box {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .footer-column h4 {
    color: #1e293b;
}

.invert-light { filter: none; }
body.light-mode .invert-light { filter: invert(1); }

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

    .footer-logo-container {
        grid-column: 1 / -1;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-logo-container {
        grid-column: auto;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}