:root {
--zitrix-orange: #f59e0b;
--zitrix-pink: #ec4899;
--zitrix-purple: #a855f7;
--dark-bg: #000;
--glass-bg: rgba(255, 255, 255, 0.03);
--glass-border: rgba(255, 255, 255, 0.08);
--gradient: linear-gradient(135deg, var(--zitrix-orange), var(--zitrix-pink), var(--zitrix-purple));
}

::selection {
    background: rgba(245,158,11,0.35);
    color: #fff;
}
::-moz-selection {
    background: rgba(245,158,11,0.35);
    color: #fff;
}


/* --- 1. CONFIGURACIÓN LENIS SCROLL --- */
html.lenis { height: auto; } 
.lenis.lenis-smooth { scroll-behavior: auto; } 
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; } 
.lenis.lenis-stopped { overflow: hidden; } 
.lenis.lenis-scrolling iframe { pointer-events: none; } 

html.lenis, html.lenis body {
    height: auto;
}
/* --- 2. GENERAL --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--zitrix-purple); }



html {
    height: auto;
    width: 100%;
    overflow-x: hidden; /* Adiós scroll horizontal fantasma */
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative; /* Necesario para que el contenido absoluto no se salga */
    background-color: var(--dark-bg);
    color: #d1d5db;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.section-padding {  padding: clamp(70px, 9vw, 90px) 0; }

/* --- 3. UI COMPONENTS (Glass, Text, Labels) --- */
.glass-card {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: 24px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
position: relative;
}

.glass-card:hover {
/* transform: translateY(-5px);*/
border-color: rgba(236, 72, 153, 0.3);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card::before {
content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
transition: 0.5s; transform: skewX(-25deg);
}
.glass-card:hover::before { left: 125%; transition: 0.7s; }

.text-gradient {
background: var(--gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 200% auto;
animation: gradientMove 5s ease infinite;
}
@keyframes gradientMove { 0% {background-position: 0% 50%;} 50% {background-position: 100% 50%;} 100% {background-position: 0% 50%;} }

.section-label {
text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; font-weight: 800;
color: var(--zitrix-pink); margin-bottom: 1rem; display: inline-block;
background: rgba(236, 72, 153, 0.1); padding: 5px 12px;
border-radius: 30px; border: 1px solid rgba(236, 72, 153, 0.2);
}

.hero-title {
font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 800; line-height: 1.1;
letter-spacing: -2px; color: #fff; margin-bottom: 1.5rem;
}
.section-title {
font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff;
margin-bottom: 1rem; letter-spacing: -1px;
}

/* ============================================
   RESUMEN DE ENTIDAD / ENTITY SUMMARY
   ============================================ */

#company-summary-tail {
    position: relative;
    background: #000;
}

#company-summary-tail .glass-card {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    border-top-color: rgba(236, 72, 153, 0.22);
}

/* Gradient accent line along the top edge of the card */
#company-summary-tail .glass-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--zitrix-pink) 35%, var(--zitrix-orange) 65%, transparent 100%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 2;
}

/* ---- Header row ---- */
.cs-header-intro p {
    font-size: 0.97rem;
    max-width: 560px;
    line-height: 1.65;
}

/* ---- Toggle button ---- */
.cs-toggle-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(236, 72, 153, 0.14) 100%);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #fff;
    border-radius: 100px;
    padding: 0.65rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    letter-spacing: 0.01em;
}

.cs-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.28) 0%, rgba(236, 72, 153, 0.22) 100%);
    border-color: rgba(245, 158, 11, 0.7);
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.32);
    transform: translateY(-1px);
}

.cs-toggle-btn.cs-is-expanded {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(168, 85, 247, 0.16) 100%);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 22px rgba(236, 72, 153, 0.22);
}

.cs-toggle-icon {
    transition: transform 0.35s ease;
    font-size: 0.78rem;
    opacity: 0.7;
}

.cs-toggle-btn.cs-is-expanded .cs-toggle-icon {
    transform: rotate(180deg);
}

/* ---- Divider ---- */
.cs-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin: 1.5rem 0 2rem;
}

/* ---- Info mini-cards ---- */
.cs-info-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 26px 24px;
    height: 100%;
    transition: border-color 0.28s ease, background 0.28s ease;
}

.cs-info-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.13);
}

.cs-info-card h3 {
    font-size: 0.95rem !important;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 0.75rem !important;
    display: flex;
    align-items: center;
    gap: 9px;
}

.cs-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.76rem;
    color: var(--zitrix-orange);
}

.cs-info-card p {
    font-size: 0.92rem;
    color: #9ca3af !important;
    line-height: 1.72;
    margin: 0;
}

.cs-info-card ul {
    margin: 0.5rem 0 0;
}

.cs-info-card li {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- Service links ---- */
.cs-service-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.cs-service-link {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d1d5db;
    font-size: 0.91rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, gap 0.22s ease;
}

.cs-service-link i {
    color: var(--zitrix-orange);
    font-size: 0.76rem;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.cs-service-link:hover {
    background: rgba(245, 158, 11, 0.07);
    border-color: rgba(245, 158, 11, 0.22);
    color: #fff;
    gap: 13px;
}

.cs-service-link:hover i {
    transform: translateX(3px);
}

/* ---- FAQ heading ---- */
.cs-faq-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem !important;
}

.cs-faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--zitrix-purple);
    font-size: 0.88rem;
    flex-shrink: 0;
}

/* ---- Contact action links ---- */
.cs-contact-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 0.91rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.cs-contact-action i {
    font-size: 0.95rem;
    flex-shrink: 0;
    color: var(--zitrix-orange);
}

.cs-contact-action:hover {
    background: rgba(245, 158, 11, 0.07);
    border-color: rgba(245, 158, 11, 0.25);
    color: #fff;
}

.cs-contact-action--wa i {
    color: #25d366;
}

.cs-contact-action--wa:hover {
    background: rgba(37, 211, 102, 0.07);
    border-color: rgba(37, 211, 102, 0.25);
}

/* ---- Clamp / fade ---- */
.cs-clamp {
    max-height: 24rem;
    overflow: hidden;
    position: relative;
    transition: max-height 0.45s ease;
}

.cs-clamp::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 6rem;
    background: linear-gradient(to bottom, transparent 0%, rgba(3, 3, 3, 0.72) 55%, rgba(3, 3, 3, 0.97) 100%);
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.cs-clamp.cs-expanded {
    max-height: none;
}

.cs-clamp.cs-expanded::after {
    opacity: 0;
    pointer-events: none;
}

/* ---- Mobile ---- */
@media (max-width: 991px) {
    #company-summary-tail .glass-card {
        padding: 1.1rem !important;
    }

    .cs-info-card {
        padding: 17px 15px;
    }

    .cs-toggle-btn {
        padding: 0.55rem 1.2rem;
        font-size: 0.84rem;
    }
}

.breadcrumb-shell {
    display: inline-flex;
    max-width: 100%;
}

.breadcrumb-zitrix {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0.58rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.breadcrumb-zitrix .breadcrumb-item {
    color: #a8b0ba;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.breadcrumb-zitrix .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.32);
    content: "›";
    padding-right: 0.4rem;
}

.breadcrumb-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.breadcrumb-link:hover {
    color: #fff;
    text-shadow: 0 0 16px rgba(236, 72, 153, 0.5);
}

.breadcrumb-zitrix .breadcrumb-item.active {
    color: #fff;
}

#inicio.hero-section {
    isolation: isolate;
}

#inicio.hero-section > .container {
    position: relative;
    z-index: 2;
}

#hero-canvas { 
position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; 
opacity: 0.8; background: #000;
pointer-events: none;
}

#footer-canvas {
background: #000;
}

/* --- 4. NAVBAR --- */
.navbar { background: transparent; padding: 20px 0; transition: all 0.4s ease; }
.navbar.scrolled {
background: rgba(3, 3, 3, 0.85); backdrop-filter: blur(20px);
padding: 10px 0; border-bottom: 1px solid var(--glass-border);
}
.nav-link { 
color: #9ca3af !important; font-weight: 500; font-size: 0.95rem; 
margin: 0 10px; transition: 0.3s; position: relative;
}
.nav-link:hover { color: #fff !important; }
.nav-link::after {
content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%;
transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-link:hover::after { width: 100%; }

@media (max-width: 991px) {
.navbar-collapse {
background: rgba(3, 3, 3, 0.95); backdrop-filter: blur(20px);
padding: 20px; border-radius: 0 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-title { font-size: 2.8rem; }
.section-padding { padding: 80px 0; }
.services-grid-mini { grid-template-columns: repeat(2, 1fr); margin-top: 50px; }
.breadcrumb-zitrix {
    padding: 0.52rem 0.8rem;
    gap: 0.35rem;
}
.breadcrumb-zitrix .breadcrumb-item {
    font-size: 0.78rem;
}
}

/* --- 5. MINI SERVICES (HERO) --- */
.services-grid-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-item-mini {
background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border);
border-radius: 20px; padding: 30px 15px; text-align: center;
transition: 0.4s; backdrop-filter: blur(5px);
}
.service-item-mini:hover {
transform: translateY(-5px) scale(1.02); border-color: var(--zitrix-pink);
background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.service-item-mini i {
font-size: 2rem; margin-bottom: 15px; display: block;
background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.service-item-mini h5 {
font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
letter-spacing: 1px; margin: 0; color: #fff;
}

/* --- 6. MARQUEE & CLIENTS --- */
.marquee-container {
overflow: hidden; display: flex; user-select: none; gap: 30px;
mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
padding: 30px 0;
}
.marquee-content {
flex-shrink: 0; display: flex; gap: 30px; min-width: 100%;
animation: scroll-marquee 40s linear infinite;
}
.marquee-container:hover .marquee-content { animation-play-state: paused; cursor: grab; }
@keyframes scroll-marquee { from { transform: translateX(0); } to { transform: translateX(calc(-100% - 30px)); } }

.client-box {
width: 140px; height: 100px; background: #ffffff !important;
border-radius: 16px; display: flex; align-items: center; justify-content: center;
padding: 20px; position: relative; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1);
}
.client-box:hover {
transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); border-color: var(--zitrix-pink);
}
.client-box img { max-width: 100%; width: auto; height: 100px; object-fit: contain; filter: none; }

.flag-badge { 
position: absolute; top: 10px; right: 10px; width: 24px; height: 16px; 
border-radius: 4px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
border: 1px solid #f3f4f6; z-index: 2;
}
.flag-badge svg { width: 100%; height: 100%; display: block; }

.tech-box {
width: 120px; height: 120px; background: #ffffff !important;
border-radius: 20px; display: flex; align-items: center; justify-content: center;
padding: 20px; transition: 0.3s; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.tech-box img { width: 100%; height: 100%; object-fit: contain; }
.tech-box:hover { 
transform: translateY(-8px) rotate(5deg); box-shadow: 0 15px 25px rgba(245, 158, 11, 0.2);
}

/* --- 7. SERVICIOS PREMIUM --- */
.service-card-premium {
background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px; padding: 40px 30px; height: 100%; position: relative;
overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 1;
}
.service-card-premium::after {
content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 40%);
opacity: 0; transition: 0.4s; z-index: -1;
}
.service-card-premium:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.04); }
.service-card-premium:hover::after { opacity: 1; }

/* Variantes Color */
.hover-purple:hover { border-color: var(--zitrix-purple); box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15); }
.hover-purple:hover .service-icon-lg { color: var(--zitrix-purple); transform: scale(1.1) rotate(-5deg); text-shadow: 0 0 20px rgba(168, 85, 247, 0.5); }

.hover-pink:hover { border-color: var(--zitrix-pink); box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15); }
.hover-pink:hover .service-icon-lg { color: var(--zitrix-pink); transform: scale(1.1) rotate(5deg); text-shadow: 0 0 20px rgba(236, 72, 153, 0.5); }

.hover-orange:hover { border-color: var(--zitrix-orange); box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15); }
.hover-orange:hover .service-icon-lg { color: var(--zitrix-orange); transform: scale(1.1) rotate(-5deg); text-shadow: 0 0 20px rgba(245, 158, 11, 0.5); }

.service-icon-lg { font-size: 3.5rem; margin-bottom: 25px; display: inline-block; color: #4b5563; transition: 0.4s ease; }
.service-link {
color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem;
display: inline-flex; align-items: center; margin-top: 20px;
opacity: 0; transform: translateY(10px); transition: 0.3s;
}
.service-card-premium:hover .service-link { opacity: 1; transform: translateY(0); }

/* --- 8. BOTONES & FLOATS --- */
.btn-premium {
background: var(--gradient); color: #fff; padding: 16px 40px; border-radius: 100px;
font-weight: 700; border: none; text-decoration: none;
display: inline-flex; align-items: center; transition: 0.3s;
box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}
.btn-premium:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(236, 72, 153, 0.5); color: #fff; }

.whatsapp-float {
position: fixed; bottom: 50px; right: 30px; background: #25D366; color: white;
width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
font-size: 30px; z-index: 1000; text-decoration: none;
box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); transition: 0.3s; animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20bd5a; color: #fff; }
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- 9. PORTAFOLIO & FILTROS --- */
.filter-container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; }
.filter-btn {
background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
color: #9ca3af; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
font-weight: 600; cursor: pointer; transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--gradient); color: #fff; border-color: transparent; }

.portfolio-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.portfolio-item.hide { display: none; }

.portfolio-card { transition: all 0.4s ease; cursor: pointer; }
.portfolio-img-wrapper { position: relative; overflow: hidden; border-radius: 20px; aspect-ratio: 16/10; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.portfolio-card:hover .portfolio-img { transform: scale(1.1); }
.portfolio-overlay {
position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
opacity: 0.6; transition: 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 0.8; }
.portfolio-badge {
background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 5px 12px;
border-radius: 20px; font-size: 0.75rem; font-weight: 700;
text-transform: uppercase; display: inline-block; margin-bottom: 10px;
}
.portfolio-link-btn {
width: 45px; height: 45px; background: var(--gradient); border-radius: 50%;
display: flex; align-items: center; justify-content: center; color: white;
transform: scale(0); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.portfolio-card:hover .portfolio-link-btn { transform: scale(1); }

/* --- 10. ABOUT & TESTIMONIOS --- */
.about-image-container { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.about-image-container img { transition: transform 0.7s ease; }
.about-image-container:hover img { transform: scale(1.03); }
.about-border-glow {
position: absolute; inset: 0; border-radius: 24px; padding: 1px;
background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent 50%, var(--zitrix-purple));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 2;
}

.testimonial-card {
height: 100%; padding: 40px 30px; background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 24px; position: relative;
transition: all 0.4s ease; overflow: hidden;
}
.testimonial-card:hover {
background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.1);
transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.quote-icon-bg {
position: absolute; top: 20px; right: 30px; font-size: 8rem;
color: rgba(255, 255, 255, 0.02); font-family: serif; line-height: 1;
pointer-events: none; transition: 0.4s;
}
.testimonial-card:hover .quote-icon-bg { transform: translateY(-10px) rotate(10deg); color: rgba(255, 255, 255, 0.04); }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--zitrix-purple); }
.star-rating { color: var(--zitrix-orange); font-size: 0.9rem; margin-bottom: 20px; }

/* --- 11. CTA --- */
.cta-section-wrapper { position: relative; padding: 100px 0; overflow: hidden; }
.cta-card-portal {
position: relative; background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(20px);
border-radius: 30px; padding: 80px 40px; overflow: hidden; z-index: 2;
box-shadow: 0 30px 60px rgba(0,0,0,0.8); transition: transform 0.5s ease;
}
.cta-card-portal:hover { transform: scale(1.01); }
.cta-card-portal::before {
content: ''; position: absolute; inset: 0; border-radius: 30px; padding: 2px;
background: linear-gradient(90deg, var(--zitrix-orange), var(--zitrix-pink), var(--zitrix-purple), var(--zitrix-orange));
background-size: 300% 100%; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor; mask-composite: exclude; animation: border-flow 4s linear infinite;
}
@keyframes border-flow { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.cta-glow-back {
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 100%; height: 100%; max-width: 600px;
background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, rgba(168, 85, 247, 0.1) 50%, transparent 70%);
filter: blur(60px); z-index: 1; animation: pulse-glow 3s infinite alternate;
}
@keyframes pulse-glow {
0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}
.btn-cta-giant {
font-size: 1.1rem; padding: 18px 50px; background: #fff; color: #000;
font-weight: 800; border-radius: 100px; transition: 0.3s;
box-shadow: 0 0 20px rgba(255,255,255,0.3); border: none; text-transform: uppercase; letter-spacing: 1px;
}
.btn-cta-giant:hover {
background: var(--zitrix-pink); color: #fff;
box-shadow: 0 0 40px rgba(236, 72, 153, 0.6); transform: translateY(-5px);
}

/* --- 12. FOOTER IZQUIERDO (Contact Cards) --- */
.contact-card-action {
display: flex; align-items: center; background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1); padding: 15px 20px;
border-radius: 16px; text-decoration: none; transition: all 0.3s ease;
}
.contact-card-action:hover {
background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2);
transform: translateX(5px);
}
.contact-card-action:hover .icon-box { transform: scale(1.1); }
.icon-box {
width: 45px; height: 45px; background: rgba(255,255,255,0.1);
border-radius: 12px; display: flex; align-items: center; justify-content: center;
color: #fff; font-size: 1.2rem; margin-right: 20px; transition: transform 0.3s ease;
}
.whatsapp-glow { background: rgba(37, 211, 102, 0.2); color: #25D366; border: 1px solid rgba(37, 211, 102, 0.3); }
.social-btn {
width: 45px; height: 45px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
display: flex; align-items: center; justify-content: center; color: #9ca3af;
text-decoration: none; transition: all 0.3s; background: rgba(0,0,0,0.3);
}
.social-btn:hover { background: var(--gradient); border-color: transparent; color: #fff; transform: translateY(-3px); }

/* --- 13. FORMULARIO CYBERPUNK (Updated) --- */
.form-group-cyber { position: relative; margin-bottom: 0; height: 58px; }
.form-control-cyber {
width: 100%; height: 100%; background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px;
padding: 1rem 1rem; color: #fff; outline: none;
transition: all 0.3s ease; font-size: 1rem;
}
.form-control-cyber:focus {
border-color: var(--zitrix-purple); box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
background: rgba(255, 255, 255, 0.02);
}
.label-cyber {
position: absolute; left: 1rem; top: 1rem; padding: 0 0.25rem;
color: #9ca3af; pointer-events: none; transition: 0.3s ease all;
background: transparent;
}
.form-control-cyber:focus ~ .label-cyber,
.form-control-cyber:not(:placeholder-shown) ~ .label-cyber {
top: -0.6rem; left: 0.8rem; font-size: 0.75rem;
color: var(--zitrix-purple); font-weight: 600;
background: #000; border-radius: 4px;
}
select.form-control-cyber { padding-top: 0.5rem; }

#submitBtn,
.contact-submit-btn {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

#submitBtn:active,
.contact-submit-btn:active {
    transform: scale(0.98);
}

/* =========================================
   INTL-TEL-INPUT FIX (MOBILE CENTERED)
   ========================================= */

/* Estilos base */
.iti { width: 100%; }
.iti__input { 
    background-color: transparent !important; 
    color: #fff !important; 
    padding-top: 1rem; padding-bottom: 1rem; 
}

/* FIX DEL BOTÓN DE LA BANDERA (Para que reciba el clic) */
.iti__selected-flag {
    z-index: 20 !important; /* Asegurar que esté sobre el input */
    position: relative;
    border-radius: 10px 0 0 10px; /* Estética */
}

/* El Contenedor Global */
.iti--container {
    z-index: 1000000 !important;
    position: absolute !important;
}

/* La Lista (Desktop y General) */
.iti__country-list {
    background-color: #0a0a0a !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
}

/* Hover en Desktop */
.iti__country-list .iti__country:hover, 
.iti__country-list .iti__country.iti__highlight {
    background-color: var(--zitrix-orange, #ff6b00) !important;
}

/* Scrollbar */
.iti__country-list::-webkit-scrollbar { width: 8px !important; display: block !important; }
.iti__country-list::-webkit-scrollbar-track { background: #111 !important; }
.iti__country-list::-webkit-scrollbar-thumb { background-color: #555 !important; border-radius: 4px; }

/* =========================================
   MEDIA QUERY: SOLUCIÓN MÓVIL (Menú Centrado)
   ========================================= */
@media (max-width: 991px) {
    .iti__country-list {
        /* Truco para centrarlo como un Modal nativo */
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        
        /* Dimensiones seguras */
        width: 85% !important;
        max-width: 350px !important;
        max-height: 50vh !important; /* Mitad de pantalla */
        
        /* Estética "Glass" fuerte para destacar */
        box-shadow: 0 0 0 100vh rgba(0,0,0,0.7) !important; /* Fondo oscuro detrás */
        border: 1px solid rgba(255,255,255,0.3) !important;
        border-radius: 15px !important;
        z-index: 1000001 !important;
    }
}
/* Alerts */
.alert-cyber {
padding: 15px; border-radius: 12px; font-weight: 500; font-size: 0.95rem;
display: flex; align-items: center; justify-content: center; gap: 10px;
animation: slideUpFade 0.4s ease-out;
}
.alert-cyber-success { background: rgba(37, 211, 102, 0.15); border: 1px solid #25D366; color: #25D366; box-shadow: 0 0 15px rgba(37, 211, 102, 0.1); }
.alert-cyber-error { background: rgba(255, 51, 51, 0.15); border: 1px solid #ff3333; color: #ff3333; box-shadow: 0 0 15px rgba(255, 51, 51, 0.1); }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shake {
0%, 100% { transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); } 20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.shake-animation { animation: shake 0.4s ease-in-out; }
.form-control-cyber.is-invalid { border-color: #ff3333 !important; box-shadow: 0 0 10px rgba(255, 51, 51, 0.2); }

/* --- 14. MODAL --- */
.glass-modal { background: #0a0a0a; border-radius: 20px; box-shadow: 0 50px 100px -20px rgba(0,0,0,0.9); }
.bg-dark-glass { background: linear-gradient(145deg, rgba(20,20,20,1) 0%, rgba(5,5,5,1) 100%); border-left: 1px solid rgba(255,255,255,0.05); height: 100%; }
.btn-close-custom {
position: absolute; top: 20px; right: 20px; z-index: 1050; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.2);
color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
cursor: pointer; transition: 0.3s; backdrop-filter: blur(5px);
}
.btn-close-custom:hover { background: var(--zitrix-pink); transform: rotate(90deg); }
#modalMediaContent { background-color: #000; position: relative; overflow: hidden; }
#modalMediaContent img { width: 100%; height: 100%; object-fit: contain; max-height: 80vh; }
#modalMediaContent iframe { width: 100%; height: 100%; min-height: 400px; }
.project-specs { background: rgba(255, 255, 255, 0.03); border-radius: 12px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
.spec-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.9rem; }
.spec-row:last-child { margin-bottom: 0; }
.spec-label { color: #9ca3af; } .spec-value { color: #fff; font-weight: 600; text-align: right; }

/* --- SELECTOR DE IDIOMA (GLASS DROPDOWN) --- */
.glass-dropdown {
background: rgba(10, 10, 10, 0.9);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 10px;
min-width: 180px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
margin-top: 15px; /* Espacio desde el navbar */
}

.glass-dropdown .dropdown-item {
color: #d1d5db;
border-radius: 8px;
padding: 10px 15px;
font-weight: 500;
transition: all 0.2s ease;
}

.glass-dropdown .dropdown-item:hover {
background: rgba(236, 72, 153, 0.1); /* Rosa suave */
color: #fff;
transform: translateX(5px);
}

.glass-dropdown .dropdown-item:active {
background: var(--zitrix-pink);
color: white;
}

/* Animación de entrada */
@keyframes slideInDropdown {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}

.animate.slideIn {
animation: slideInDropdown 0.3s ease forwards;
}

/* Ajuste para móvil: centrar items */
@media (max-width: 991px) {
.glass-dropdown {
background: transparent;
border: none;
box-shadow: none;
text-align: center;
}
.glass-dropdown .dropdown-item {
justify-content: center;
}
}
.cta-option-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.5) !important;
}
.hover-white:hover {
    color: #fff !important;
}
.bg-gradient-primary {
    background: linear-gradient(45deg, var(--zitrix-orange, #ff6b00), #ff9e42);
}

/* --- HOME BACKGROUND UNIFICATION --- */
.home-page {
    background-color: #000;
}

.home-page > section {
    background-color: #000;
}

/* --- 15. SERVICE DETAIL --- */
.service-page {
    position: relative;
}

.service-page .section-padding {
     padding: clamp(70px, 9vw, 90px) 0;
}

.service-page .service-block {
    position: relative;
}

.service-page .service-block:not(.service-lp-hero) {
    background-color: #000;
}

.service-page .service-block + .service-block,
.service-page .service-lp-hero + .service-block {
    border-top: 0;
}

.service-page .service-lp-hero + .service-block {
    padding-top: clamp(72px, 7vw, 94px);
}

.service-page .section-title {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    line-height: 1.14;
    letter-spacing: -1px;
    margin-bottom: 0.9rem;
}

.service-page p {
    line-height: 1.78;
}

.service-section-head {
    max-width: 820px;
    margin: 0 auto clamp(2.6rem, 5vw, 4rem);
}

.service-section-head .section-label,
.service-faq-intro .section-label {
    margin-bottom: 1rem;
}

.service-page .section-title .text-gradient {
    display: inline;
}

.service-section-head p,
.service-section-lead {
    max-width: 680px;
    font-size: clamp(1rem, 1.45vw, 1.1rem);
    line-height: 1.85;
}

.service-grid-row {
    --bs-gutter-x: 1.55rem;
    --bs-gutter-y: 1.55rem;
}

.service-grid-problems,
.service-grid-solutions,
.service-grid-offers,
.service-grid-process,
.service-grid-related {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.service-lp-hero {
    overflow: hidden;
    position: relative;
    isolation: isolate;
    padding-top: clamp(136px, 13vw, 176px);
    padding-bottom: clamp(76px, 7vw, 108px);
    border-top: none !important;
}

.service-page .service-lp-hero #hero-canvas {
    z-index: 0;
    opacity: 0.48;
    pointer-events: none;
}

.service-lp-hero .container {
    max-width: 1240px;
}

.service-lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.04), transparent 44%),
        radial-gradient(circle at 14% 82%, rgba(255, 255, 255, 0.02), transparent 46%);
    pointer-events: none;
    z-index: 1;
}

.service-lp-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(100px, 11vw, 150px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
    pointer-events: none;
    z-index: 1;
}

.service-hero-layout {
    display: grid;
    gap: clamp(1.5rem, 2.2vw, 2.35rem);
    grid-template-columns: 1fr;
    grid-template-areas:
        "main"
        "form"
        "secondary";
}

.service-hero-main {
    grid-area: main;
    display: grid;
    align-content: start;
    gap: clamp(0.85rem, 1.4vw, 1.2rem);
    position: relative;
    z-index: 0;
}

.service-hero-main::before {
    content: "";
    position: absolute;
    inset: clamp(-12px, -1vw, -8px) clamp(-24px, -2.4vw, -18px) clamp(-14px, -1.4vw, -10px) clamp(-10px, -0.9vw, -6px);
    border-radius: 24px;
    pointer-events: none;
    z-index: -1;
}

.service-hero-main > * {
    position: relative;
    z-index: 1;
}

.service-hero-form {
    grid-area: form;
    display: flex;
    justify-content: flex-end;
}

.service-hero-secondary {
    grid-area: secondary;
    display: grid;
    align-content: start;
    gap: clamp(1.1rem, 1.9vw, 1.8rem);
}

.service-breadcrumb-shell {
    margin-bottom: 0;
    opacity: 0.66;
}

.service-breadcrumb-shell .breadcrumb-zitrix {
    font-size: 0.78rem;
}

.service-breadcrumb-shell .breadcrumb-item,
.service-breadcrumb-shell .breadcrumb-link {
    color: #95a0ae;
}

.service-breadcrumb-shell .breadcrumb-item.active {
    color: #b3bcc9;
}

.service-hero-badge {
    margin: 0;
    display: inline-flex;
    width: fit-content;
    align-self: flex-start;
    max-width: max-content;
}

.service-hero-title {
    margin: 0;
    line-height: 1.18;
    letter-spacing: -0.02em;
    max-width: 650px;
    font-size: clamp(2.2rem, 3.7vw, 3.45rem);
}

.service-hero-text {
    margin: 0;
    max-width: 58ch;
    line-height: 1.72;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-hero-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    max-width: 610px;
}

.service-hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d1d5db;
    font-size: 0.96rem;
    line-height: 1.76;
}

.service-hero-points li i {
    color: var(--zitrix-orange);
    margin-top: 0.33em;
    font-size: 0.94rem;
}

.service-hero-actions {
    margin: 0;
    row-gap: 0.9rem !important;
    column-gap: 0.85rem !important;
}

.service-hero-actions .btn-premium,
.service-hero-actions .btn {
    min-height: 52px;
    align-items: center;
}

.service-hero-actions .btn-premium {
    box-shadow: 0 10px 26px rgba(236, 72, 153, 0.2);
}

.service-hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.26);
    color: #d4dbe5;
    background: rgba(255, 255, 255, 0.03);
    min-height: 50px;
}

.service-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 650px;
}

.service-trust-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-trust-chip i {
    color: var(--zitrix-pink);
    font-size: 0.84rem;
}

.service-hero-form .contact-form-component {
    width: 100%;
    max-width: 420px;
}

.service-offer-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    padding: 36px 34px;
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.35);
}

.service-offer-card--form .contact-fields {
    margin-top: 0.2rem;
}

.service-offer-card--form {
    padding: clamp(26px, 2.5vw, 32px) clamp(22px, 2.4vw, 30px);
}

@media (min-width: 992px) {
    .service-hero-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(340px, 420px);
        grid-template-areas:
            "main form"
            "secondary form";
        align-items: start;
        column-gap: clamp(2.2rem, 3.8vw, 3.8rem);
        row-gap: clamp(1.2rem, 1.7vw, 1.9rem);
    }

    .service-offer-card {
        position: sticky;
        top: 122px;
    }

    .service-hero-form {
        padding-top: clamp(1.2rem, 1.8vw, 1.9rem);
    }
}

.service-summary-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: #fff;
    background: var(--gradient);
}

.service-offer-compact,
.service-offer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.service-offer-compact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: 15px;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-offer-compact li i,
.service-offer-item i {
    color: var(--zitrix-orange);
    margin-top: 3px;
    font-size: 1rem;
}

.service-offer-compact li span {
    color: #e5e7eb;
    line-height: 1.5;
    font-size: 0.94rem;
}

.service-offer-item h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1.03rem;
    font-weight: 700;
    line-height: 1.35;
}

.service-offer-item p {
    margin: 0;
    color: #aeb6c0;
    font-size: 0.94rem;
    line-height: 1.65;
}

.service-offer-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    height: 100%;
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 31px 29px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    transition: all 0.32s ease;
    backdrop-filter: blur(9px);
}

.service-offer-item-large {
    height: 100%;
    padding: 31px 29px;
    border-radius: 24px;
    background: transparent;
}

.service-offer-item-large i {
    font-size: 1.1rem;
    margin-top: 2px;
}



.service-problem-card,
.service-solution-card,
.service-process-card,
.service-related-card {
    display: block;
    height: 100%;
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 31px 29px;
    transition: all 0.32s ease;
    backdrop-filter: blur(9px);
}

.service-problem-card h3,
.service-solution-card h3,
.service-process-card h3,
.service-related-card h3 {
    margin-bottom: 0.75rem !important;
    line-height: 1.34;
}

.service-problem-card p,
.service-solution-card p,
.service-process-card p,
.service-related-card p {
    margin-bottom: 0;
    font-size: 0.98rem;
    color: #b6bec8 !important;
    line-height: 1.72;
}

.service-problem-card:hover,
.service-solution-card:hover,
.service-process-card:hover,
.service-related-card:hover,
.service-offer-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--zitrix-orange);
    margin-bottom: 16px;
    font-size: 1.06rem;
}

.service-process-card {
    padding-top: 28px;
}

.service-process-icon {
    color: var(--zitrix-orange);
    margin-left: 12px;
    font-size: 1.02rem;
}

.service-process-step {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.17);
    font-size: 0.92rem;
}

.service-faq-layout {
    margin: 0 auto;
}

.service-faq-layout .section-title {
    margin-bottom: 1rem;
}

.service-faq-intro p {
    max-width: 470px;
}

@media (min-width: 992px) {
    .service-faq-layout > .col-lg-5 {
        position: sticky;
        top: 128px;
    }
}

.service-faq .accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.service-faq .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1.03rem;
    line-height: 1.5;
    box-shadow: none !important;
    padding: 1.2rem 1.35rem;
}

.service-faq .accordion-button:not(.collapsed) {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.service-faq .accordion-button::after {
    filter: invert(1) grayscale(1);
    opacity: 0.8;
}

.service-faq .accordion-body {
    background: rgba(255, 255, 255, 0.01);
    font-size: 0.98rem;
    line-height: 1.74;
    padding: 0.3rem 1.35rem 1.3rem;
}

.service-related-card {
    display: flex;
    flex-direction: column;
}

.service-related-card .service-icon-lg {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.service-related-card .service-link-inline {
    margin-top: 20px;
}

.service-link-inline {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.85;
    transition: 0.2s ease;
}

.service-related-card:hover .service-link-inline {
    opacity: 1;
    transform: translateX(4px);
}

.service-grid-row > [class*="col-"] {
    display: flex;
}

.service-grid-row > [class*="col-"] > * {
    width: 100%;
}

.service-block-alt {
    position: relative;
    overflow: hidden;
}

.service-block-alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.service-block-alt > .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) and (max-width: 1279px) {
    .service-grid-offers > .col-lg-4,
    .service-grid-process > .col-lg-4,
    .service-grid-related > .col-lg-4 {
        flex: 0 0 auto;
        width: 50%;
    }

    .service-grid-problems > .col-xl-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 991px) {
    .service-page .section-padding {
         padding: clamp(70px, 9vw, 90px) 0;
    }

    .service-page .section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .service-section-head {
        margin-bottom: 2.4rem;
    }

    .service-lp-hero {
        padding-top: 118px;
        padding-bottom: 72px;
    }

    .service-hero-layout {
        gap: 1.2rem;
    }

    .service-page .service-lp-hero + .service-block {
        padding-top: clamp(56px, 9vw, 74px);
    }

    .service-trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-hero-main {
        gap: 0.9rem;
    }

    .service-hero-secondary {
        gap: 1.2rem;
    }

    .service-grid-row {
        --bs-gutter-x: 1.15rem;
        --bs-gutter-y: 1.15rem;
    }

    .service-offer-card {
        padding: 28px 24px;
        position: static;
    }

    .service-hero-form .contact-form-component {
        max-width: none;
    }

    .service-offer-card,
    .service-offer-item,
    .service-problem-card,
    .service-solution-card,
    .service-process-card,
    .service-related-card {
        padding: 24px 22px;
    }

    .service-faq-layout > .col-lg-5 {
        position: static;
    }
}

@media (max-width: 767px) {
    .service-trust-row {
        grid-template-columns: 1fr;
    }

    .service-hero-title {
        line-height: 1.18;
        max-width: 16ch;
    }

    .service-hero-text {
        font-size: 1.02rem;
        line-height: 1.7;
    }

    .service-hero-actions .btn-premium,
    .service-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .service-summary-icon {
        width: 72px;
        height: 72px;
        font-size: 1.72rem;
    }

    .service-offer-item-large {
        padding: 24px 22px;
    }

    .service-faq .accordion-button {
        font-size: 0.98rem;
        padding: 1rem 1.05rem;
    }

    .service-faq .accordion-body {
        font-size: 0.94rem;
        padding: 0.15rem 1.05rem 1rem;
    }
}

/* =============================================
   SERVICE BENEFIT CARDS
   ============================================= */
.service-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.service-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.14);
}

.service-benefit-metric {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}

.service-benefit-metric.hover-purple { color: var(--zitrix-purple); }
.service-benefit-metric.hover-pink   { color: var(--zitrix-pink);   }
.service-benefit-metric.hover-orange { color: var(--zitrix-orange); }

/* =============================================
   SERVICE DIFFERENTIATOR CARDS (Trust section)
   ============================================= */
.service-differentiator-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 18px;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-differentiator-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.14);
}

.service-differentiator-card .service-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

/* =============================================
   SERVICE GEO BADGES
   ============================================= */
.service-geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.service-geo-badge i {
    color: var(--zitrix-orange);
    font-size: 0.75rem;
}

/* =============================================
   SERVICE FINAL CTA SECTION
   ============================================= */
.service-final-cta {
    padding: clamp(70px, 9vw, 90px) 0; 
    background: #000;
    border-top: 0;
    border-bottom: 0;
}

#ecosistema {
    background-color: #000;
}

.service-final-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .service-final-cta .btn-premium,
    .service-final-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .service-benefit-metric {
        font-size: 1.7rem;
    }

    .service-differentiator-card {
        flex-direction: column;
        gap: 12px;
    }
}
