/* ========================================
   LOGALI CONSULTING - GLOBAL STYLES
   ======================================== */

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #0d9488;
    --accent-light: #14b8a6;
    --accent-dark: #0f766e;
    --accent-glow: rgba(13, 148, 136, 0.3);
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --bg-dark: #020617;
    --bg-card: rgba(30, 41, 59, 0.5);
    --border: rgba(148, 163, 184, 0.1);
    --gradient-1: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    --gradient-2: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nacelle', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(8, 145, 178, 0.06) 0%, transparent 50%);
    animation: bgMove 20s ease-in-out infinite;
}

@keyframes bgMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5%, -5%); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 0.8rem 2rem;
    backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, 0.85);
    border-bottom: 1px solid var(--border);
    transition: transform 0.2s ease-out;
}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
}

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

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
}

/* Botón experto en nav - compacto */
.nav-expert-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    white-space: nowrap;
    margin: 0 0.25rem 0 0.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Dropdown abierto con clase (controlado por JS) */
.dropdown.open .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.dropdown-content a:hover {
    background: var(--bg-card);
}

.dropdown-content a::after {
    display: none;
}

.nav-cta {
    background: var(--gradient-1);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.nav-cta::after {
    display: none !important;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.25rem;
    padding-left: 0.5rem;
    border-left: 1px solid var(--border);
    align-items: center;
}

.lang-switch a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.lang-switch a.active {
    opacity: 1;
}

.lang-switch a .flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-card);
    padding: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lang-switch a:hover .flag {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

.lang-switch a.active .flag {
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.4);
}

.lang-switch .lang-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.lang-switch a::after {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    min-height: 80vh;
    height: 80vh;
    overflow: hidden;
    background: #020617;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
}

/* Fondos individuales por slide */
.slide-1::before {
    background-image: url('../assets/hero-bg.jpg');
}

.slide-2::before {
    background-image: url('../assets/hero-bg-2.jpg');
}

.slide-3::before {
    background-image: url('../assets/hero-bg-3.jpg');
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    opacity: 0;
    transform: translateX(-100%);
}

.slide.next-slide {
    opacity: 0;
    transform: translateX(100%);
}

/* Slide 1 - Hero original */
.slide-1 .content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-end;
}

.slide-1 .hero-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-main h1 {
    font-family: 'Nacelle', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-main h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}

.hero-description {
    font-size: 1.1rem;
    color: #f8fafc;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    background: var(--gradient-1);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* Botón verde para Slide 1 - Servicios */
.slide-1 .btn-secondary {
    background: #14b8a6;
    color: white;
}

.slide-1 .btn-secondary:hover {
    background: #0d9488;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

/* Botón azul para Slide 2 - Proyectos */
.slide-2 .btn-secondary {
    background: #3b82f6;
    color: white;
}

.slide-2 .btn-secondary:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Botón morado para Slide 3 - Novedades */
.slide-3 .btn-secondary {
    background: #a855f7;
    color: white;
}

.slide-3 .btn-secondary:hover {
    background: #9333ea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: rgba(2, 6, 23, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.stat-number-large {
    font-family: 'Nacelle', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1.1;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.stat-text {
    font-size: 0.85rem;
    color: #f8fafc;
    line-height: 1.4;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Tarjeta de países */
.stat-countries-new {
    padding: 1.5rem;
}

.countries-header {
    font-size: 0.95rem;
    color: #f8fafc;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.countries-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: fit-content;
}

.countries-left {
    text-align: center;
}

.countries-left .stat-number-large {
    font-size: 3.5rem;
    margin-bottom: 0.2rem;
}

.stat-text-small {
    font-size: 0.9rem;
    color: #f8fafc;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.countries-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.country-flag-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.country-flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-item span {
    font-size: 0.85rem;
    color: #f8fafc;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Tarjeta certificación */
.stat-certified {
    text-align: center;
}

/* Tarjeta presencia global */
.stat-global {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.global-title {
    font-family: 'Nacelle', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.global-subtitle {
    font-size: 0.85rem;
    color: #f8fafc;
    line-height: 1.4;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Slides 2 & 3 - Alineados a la izquierda como slide 1 */
.content-wrapper-center {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.slide-2 h1,
.slide-3 h1 {
    font-family: 'Nacelle', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.slide-2 h1 .gradient-text,
.slide-3 h1 .gradient-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}

.slide-2 p,
.slide-3 p {
    font-size: 1.2rem;
    color: #f8fafc;
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Indicadores de línea */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.indicator-line {
    height: 4px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.5s ease;
    width: 60px;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.indicator-line:active,
.indicator-line:focus {
    outline: none;
}

/* Colores fijos para cada línea */
.indicator-line[data-slide="0"] {
    background: rgba(20, 184, 166, 0.3);
}

.indicator-line[data-slide="0"].active {
    width: 120px;
    background: #14b8a6;
}

.indicator-line[data-slide="1"] {
    background: rgba(59, 130, 246, 0.3);
}

.indicator-line[data-slide="1"].active {
    width: 120px;
    background: #3b82f6;
}

.indicator-line[data-slide="2"] {
    background: rgba(168, 85, 247, 0.3);
}

.indicator-line[data-slide="2"].active {
    width: 120px;
    background: #a855f7;
}

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

.slide.active .content-wrapper > *,
.slide.active .content-wrapper-center > * {
    animation: fadeInUp 0.8s ease forwards;
}

.slide.active .content-wrapper > *:nth-child(1),
.slide.active .content-wrapper-center > *:nth-child(1) { 
    animation-delay: 0.1s; 
}

.slide.active .content-wrapper > *:nth-child(2),
.slide.active .content-wrapper-center > *:nth-child(2) { 
    animation-delay: 0.2s; 
}

.slide.active .content-wrapper > *:nth-child(3),
.slide.active .content-wrapper-center > *:nth-child(3) { 
    animation-delay: 0.3s; 
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Botón más compacto para el nav */
.nav-right .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 8px;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background: var(--gradient-2);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Nacelle', sans-serif; font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(20, 184, 166, 0.3),
        inset 0 0 60px rgba(20, 184, 166, 0.1);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(20, 184, 166, 0.05) 100%);
}

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

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

.service-card:hover h3 {
    color: var(--accent-light);
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
    color: var(--accent-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
    font-family: 'Nacelle', sans-serif; font-weight: 700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--accent);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Imagen de fondo con parallax y blur */
.why-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    filter: blur(0px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

/* Imágenes de fondo específicas */
.why-card[data-bg="resultados"] .why-bg-image {
    background-image: url('why-choose/resultados.png');
}

.why-card[data-bg="global"] .why-bg-image {
    background-image: url('why-choose/global.png');
}

.why-card[data-bg="certificados"] .why-bg-image {
    background-image: url('why-choose/certificados.png');
}

.why-card[data-bg="entrega"] .why-bg-image {
    background-image: url('why-choose/entrega.png');
}

/* Efecto parallax y blur al hover */
.why-card:hover .why-bg-image {
    transform: scale(1.1);
    filter: blur(8px);
    opacity: 0.5;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 16px;
}

.why-card:hover::before {
    opacity: 0.05;
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Crear un pseudo-elemento para el icono en la esquina */
.why-card::after {
    content: attr(data-icon);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Al hacer hover: ocultar icono principal y mostrar el de la esquina */
.why-card:hover .why-icon {
    opacity: 0;
    transform: scale(0.8);
}

.why-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.why-card h3 {
    font-family: 'Nacelle', sans-serif; font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-group select option {
    background: var(--primary);
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Service Page Hero */
.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-family: 'Nacelle', sans-serif; font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Value Props */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.value-card h3 {
    font-family: 'Nacelle', sans-serif; font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Help Section */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.help-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.help-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.help-card h4 {
    font-family: 'Nacelle', sans-serif; font-weight: 700;
    margin-bottom: 0.5rem;
}

.help-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradient-2);
    border-radius: 24px;
    margin: 4rem auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: 'Nacelle', sans-serif; font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    position: relative;
}

.cta-section .btn-primary {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--primary);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-family: 'Nacelle', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-email {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.footer-contact-title {
    font-family: 'Nacelle', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.contact-item,
.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item:hover,
.phone-item:hover {
    background: rgba(20, 184, 166, 0.1);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
    flex-shrink: 0;
}

.contact-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.phone-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.phone-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.phone-item span:not(.copy-feedback) {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.copy-feedback {
    position: absolute;
    right: 0.5rem;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.copy-feedback.show {
    opacity: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Sección SOMOS */
.footer-somos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.somos-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.somos-btn {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.somos-btn img {
    height: 40px;
    width: auto;
    display: block;
}

.somos-btn:hover {
    border-color: var(--accent-light);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* Clients Logos */
.clients-section {
    text-align: center;
}

/* Clients Carousel - Círculos Estáticos */
.clients-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 0;
}

.clients-carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.client-circle {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.client-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.25s ease;
    filter: none;
}

/* Círculo central más grande */
.client-circle.client-center {
    width: 180px;
    height: 180px;
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.3);
    z-index: 10;
}

/* Fondos de marca - Fondo blanco */
.client-toyota,
.client-seidor,
.client-sura,
.client-cbc,
.client-justtime,
.client-repsol,
.client-bbva,
.client-ecopetrol {
    background: #ffffff;
}

/* Fondos de marca - Fondo del sitio */
.client-deloitte {
    background: var(--bg);
}

/* Bordes de marca - Toyota (rojo) */
.client-toyota {
    background: #eb0a1e;
    border-color: #eb0a1e;
}

.client-toyota.client-center {
    box-shadow: 0 10px 40px rgba(235, 10, 30, 0.4);
}

/* Bordes de marca - Seidor (azul) */
.client-seidor {
    border-color: #0066cc;
}

.client-seidor.client-center {
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.4);
}

/* Bordes de marca - Sura (azul corporativo) */
.client-sura {
    border-color: #003d82;
}

.client-sura.client-center {
    box-shadow: 0 10px 40px rgba(0, 61, 130, 0.4);
}

/* Bordes de marca - CBC (verde con glow amarillo) */
.client-cbc {
    border-color: #00a651;
}

.client-cbc.client-center {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

/* Bordes de marca - JustTime (naranja) */
.client-justtime {
    border-color: #ff6600;
}

.client-justtime.client-center {
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.4);
}

/* Bordes de marca - Repsol (naranja corporativo) */
.client-repsol {
    border-color: #ff6600;
}

.client-repsol.client-center {
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.4);
}

/* Bordes de marca - BBVA (azul) */
.client-bbva {
    border-color: #004481;
}

.client-bbva.client-center {
    box-shadow: 0 10px 40px rgba(0, 68, 129, 0.4);
}

/* Bordes de marca - Ecopetrol (verde) */
.client-ecopetrol {
    border-color: #00a651;
}

.client-ecopetrol.client-center {
    box-shadow: 0 10px 40px rgba(0, 166, 81, 0.4);
}

/* Bordes de marca - Deloitte (verde) */
.client-deloitte {
    border-color: #86bc25;
}

.client-deloitte.client-center {
    box-shadow: 0 10px 40px rgba(134, 188, 37, 0.4);
}

.client-circle:hover {
    transform: scale(1.05);
}

/* Animación de fade para cambio de logos */


/* Responsive */
@media (max-width: 768px) {
    .clients-carousel-track {
        gap: 2rem;
    }
    
    .client-circle {
        width: 100px;
        height: 100px;
        padding: 1.5rem;
    }
    
    .client-circle.client-center {
        width: 130px;
        height: 130px;
    }
}
    font-style: italic;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Certifications */
.certifications-section {
    text-align: center;
    padding: 6rem 2rem;
    overflow: hidden;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cert-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.cert-icon {
    font-size: 2rem;
}

.cert-badge span {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(2, 6, 23, 0.98);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-links .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        min-width: auto;
        display: none;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .lang-switch {
        margin: 1rem 0 0 0;
        padding: 1rem 0 0 0;
        border-left: none;
        border-top: 1px solid var(--border);
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .slide-1 .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        order: -1;
    }

    .slider-indicators {
        bottom: 2rem;
    }

    .slider-labels {
        display: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-somos {
        align-items: center;
    }

    .footer-column:first-child {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb-container {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    margin-top: 70px; /* Altura del nav fijo */
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.breadcrumb-home {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.breadcrumb-home svg {
    width: 18px;
    height: 18px;
    color: var(--accent-light);
}

.breadcrumb-home:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-weight: 300;
}

.breadcrumb-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-light);
}

.breadcrumb-current {
    color: var(--accent-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .breadcrumb-home {
        width: 32px;
        height: 32px;
    }
    
    .breadcrumb-home svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   OTHER SERVICES SECTION
   ======================================== */
.other-services {
    background: var(--bg-alt);
    padding: 4rem 0;
    margin-top: 4rem;
}

.other-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.other-services-header h3 {
    font-family: 'Nacelle', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.other-services-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.other-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: bounce 2s infinite;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.scroll-indicator.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.scroll-indicator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator-content svg {
    width: 24px;
    height: 24px;
}

.scroll-indicator-content span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 2rem;
    }
}

/* ========================================
   CONTACT MODAL
   ======================================== */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.contact-modal-content {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Estilizar scrollbar del modal */
.contact-modal-content::-webkit-scrollbar {
    width: 8px;
}

.contact-modal-content::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 4px;
}

.contact-modal-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.contact-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

.contact-modal.active .contact-modal-content {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.contact-modal-close:hover {
    color: var(--text);
}

.contact-modal-content h2 {
    margin: 0 0 0.5rem 0;
    color: var(--accent-light);
    font-family: 'Nacelle', sans-serif;
    font-size: 2rem;
}

.contact-modal-content > p {
    margin: 0 0 2rem 0;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .contact-modal-content {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   CONTACT POPUP
   ======================================== */
.contact-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.contact-popup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-popup-overlay.active .contact-popup {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--bg);
    color: var(--text);
}

.popup-header h2 {
    font-family: 'Nacelle', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.popup-header p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.popup-form .form-group {
    margin-bottom: 1.5rem;
}

.popup-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.popup-form textarea {
    min-height: 100px;
    resize: vertical;
}

.popup-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Botón Outline */
.btn-outline {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: transparent;
    border: 2px solid #14b8a6;
    color: #14b8a6;
}

.btn-outline:hover {
    background: #14b8a6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

/* Validación visual de campos requeridos */
/* Estado por defecto - sin validación */
.form-group input:required,
.form-group select:required,
.form-group textarea:required {
    border-color: var(--border);
}

/* Estado inválido - borde rojo cuando el usuario ha interactuado */
.form-group input:required:invalid:not(:placeholder-shown),
.form-group select:required:invalid:not([value=""]),
.form-group textarea:required:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

/* Estado válido - borde verde */
.form-group input:required:valid,
.form-group select:required:valid:not([value=""]),
.form-group textarea:required:valid {
    border-color: #14b8a6;
}

/* Para select, también validar cuando se ha tocado */
.form-group select:required:invalid:focus,
.form-group select:required:invalid.touched {
    border-color: #ef4444;
}

.form-group label .required-mark {
    color: #ef4444;
    margin-left: 0.25rem;
}

/* Campos condicionales */
#sector-otro-group,
#servicio-otro-group,
#popup-sector-otro-group,
#popup-servicio-otro-group {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-popup {
        padding: 1.5rem;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-outline,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CERTIFICATIONS CAROUSEL
   ======================================== */
.certifications-carousel {
    overflow: hidden;
    padding: 3rem 0;
    width: 100%;
}

.certifications-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.certification-item {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

/* Certificación central más grande */
.certification-item.certification-center {
    width: 240px;
    height: 240px;
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.3);
}

.certification-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out, filter 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(100%) brightness(0.8);
}

/* Imagen del centro sin grayscale */
.certification-item.certification-center img {
    filter: grayscale(0%) brightness(1);
}

/* Hover en imágenes laterales */
.certification-item:hover img {
    filter: grayscale(0%) brightness(1.1);
}

/* Hover en imagen central (ya está a color) */
.certification-item.certification-center:hover img {
    filter: grayscale(0%) brightness(1.1);
}

.certification-item img.fade-out {
    opacity: 0;
}

@media (max-width: 768px) {
    .certifications-track {
        gap: 1.5rem;
    }
    
    .certification-item {
        width: 120px;
        height: 120px;
    }
    
    .certification-item.certification-center {
        width: 160px;
        height: 160px;
    }
    
    .certifications-carousel {
        padding: 2rem 0;
    }
}


/* ========================================
   CASE STUDY PAGES - SPECIFIC STYLES
   ======================================== */

body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bg-dark);
            color: var(--text);
            line-height: 1.7;
        }

        /* Background */

        /* Dropdown */

        /* Banderas */

        /* Hero */
        .case-hero {
            padding: 10rem 2rem 4rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        .case-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .case-tag {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 0.4rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            color: var(--accent-light);
        }
        .case-hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .case-hero h1 .gradient-text {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .case-intro {
            font-size: 1.15rem;
            color: var(--text-muted);
            border-left: 3px solid var(--accent);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .client-logo {
            background: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            display: inline-block;
            margin-bottom: 2rem;
        }
        .client-logo img {
            height: 50px;
            width: auto;
        }

        /* Stats Banner */
        .stats-banner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid rgba(20, 184, 166, 0.3);
            border-radius: 16px;
            padding: 2rem;
            margin: 3rem 0;
            backdrop-filter: blur(10px);
        }
        .stat-item { text-align: center; }
        .stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-light);
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* Content Sections */
        .case-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }
        .content-section {
            margin-bottom: 4rem;
        }
        .section-label {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        .content-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--text);
        }
        .content-section p {
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        /* Challenge/Solution Grid */
        .challenge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .challenge-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
        }
        .challenge-card h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            color: var(--text);
        }
        .challenge-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* Timeline */
        .timeline {
            margin-top: 2rem;
            border-left: 2px solid var(--accent);
            padding-left: 2rem;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.35rem;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
        }
        .timeline-phase {
            display: inline-block;
            background: var(--bg-card);
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--accent-light);
            margin-bottom: 0.5rem;
        }
        .timeline-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 0.25rem;
        }
        .timeline-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* Tech Tags */
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1rem;
        }
        .tech-tag {
            background: rgba(13, 148, 136, 0.15);
            border: 1px solid rgba(13, 148, 136, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--accent-light);
        }

        /* Quote */
        .quote-block {
            background: var(--bg-card);
            border-left: 4px solid var(--accent);
            padding: 2rem;
            margin: 3rem 0;
            border-radius: 0 12px 12px 0;
        }
        .quote-text {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text);
            margin-bottom: 1rem;
        }
        .quote-author {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Results Grid */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .result-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        .result-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .result-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        .result-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-light);
        }
        .result-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* Architecture Diagram */
        .architecture-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }
        .architecture-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--accent-light);
        }
        .architecture-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 1rem;
            align-items: center;
        }
        .arch-component {
            background: var(--primary-light);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
        }
        .arch-component.highlight {
            border-color: var(--accent);
            background: rgba(13, 148, 136, 0.1);
        }
        .arch-component h5 {
            font-size: 0.9rem;
            color: var(--accent-light);
            margin-bottom: 0.25rem;
        }
        .arch-component p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin: 0;
        }
        .arch-arrow {
            color: var(--accent);
            font-size: 1.5rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 24px;
            margin-top: 3rem;
            position: relative;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            position: relative;
        }
        .cta-section p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            position: relative;
        }
        .btn-primary {
            background: var(--gradient-1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px var(--accent-glow);
        }

        /* Footer */
        footer {
            background: var(--primary);
            border-top: 1px solid var(--border);
            padding: 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-info { display: flex; align-items: center; gap: 2rem; }
        .footer-info p { color: var(--text-muted); font-size: 0.9rem; }
        .footer-social { display: flex; gap: 1rem; }
        .footer-social a {
            width: 40px; height: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s;
        }
        .footer-social a:hover { border-color: var(--accent); color: var(--accent); }
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            
            .case-hero { padding: 8rem 1.5rem 3rem; }
            .architecture-grid { grid-template-columns: 1fr; }
            .arch-arrow { transform: rotate(90deg); }
        }
    
        /* Lang Switch */
/* ========================================
   FOOTER - IMPROVED NAVIGATION LAYOUT
   ======================================== */

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

.footer-column.footer-nav > h4 {
    margin-bottom: 0.5rem;
}

.footer-nav-section {
    margin-bottom: 0;
}

.footer-nav-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav-section .footer-links {
    margin-top: 0;
    padding-left: 0;
}

.footer-nav-section .footer-links li {
    margin-bottom: 0.4rem;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column.footer-nav {
        gap: 1rem;
    }
    
    .footer-nav-section {
        margin-bottom: 1rem;
    }
}


/* ========================================
   SERVICE NAVIGATION / BREADCRUMB
   ======================================== */

.service-nav-container {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    position: sticky;
    top: 0;
    margin-top: 80px;
    z-index: 1500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-nav-container.hide-on-scroll {
    transform: translateY(-100%);
}

.service-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.service-nav > .nav-btn:first-child {
    margin-left: 0;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.nav-btn-text {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-btn-text:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.nav-separator {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .service-nav-container {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    position: sticky;
    top: 0;
    margin-top: 80px;
    z-index: 1500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
    
    .service-nav {
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-btn-text {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   FOOTER - V1.1 IMPROVEMENTS
   ======================================== */

/* Footer content - 4 columnas ajustadas */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Navegación - Servicios (columna completa) */
.footer-column.footer-nav-services {
    display: flex;
    flex-direction: column;
}

.footer-column.footer-nav-services > h4 {
    margin-bottom: 1rem;
}

/* Navegación - Proyectos + Novedades */
.footer-column.footer-nav-other {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Social Icons - Grayscale to Color */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-icon:hover svg {
    filter: grayscale(0%);
    opacity: 1;
}

/* LinkedIn */
.social-icon[data-network="linkedin"]:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

.social-icon[data-network="linkedin"]:hover svg {
    color: white;
}

/* YouTube */
.social-icon[data-network="youtube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-icon[data-network="youtube"]:hover svg {
    color: white;
}

/* Twitter/X */
.social-icon[data-network="twitter"]:hover {
    background: #000000;
    border-color: #000000;
}

.social-icon[data-network="twitter"]:hover svg {
    color: white;
}

/* Instagram */
.social-icon[data-network="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-icon[data-network="instagram"]:hover svg {
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column.footer-nav-services,
    .footer-column.footer-nav-other {
        gap: 1rem;
    }
}

/* Facebook */
.social-icon[data-network="facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon[data-network="facebook"]:hover svg {
    color: white;
}

/* Footer subtitle color override - WHITE instead of green */
.footer-nav-subtitle {
    color: white !important;
    font-weight: 600;
}

/* Footer links hover - WHITE instead of green */
.footer-links a:hover {
    color: white !important;
}

/* Footer column h4 - WHITE and semibold */
.footer-column h4 {
    color: white;
    font-weight: 600;
}


/* ========================================
   FOOTER SPACING FIXES - V1.5
   ======================================== */

/* Reducir espacio en teléfonos */
.footer-phones {
    gap: 0.5rem !important;
    margin-top: 1rem !important;
}

.phone-item {
    padding: 0.4rem 0.6rem !important;
    gap: 0.4rem !important;
}

.phone-item span {
    font-size: 0.85rem !important;
}

/* Reducir espacio en redes sociales */
.footer-social {
    gap: 0.75rem !important;
    margin-top: 1rem !important;
}

.social-icon {
    width: 36px !important;
    height: 36px !important;
}

.social-icon svg {
    width: 18px !important;
    height: 18px !important;
}

/* Ajustar columna de contacto */
.footer-column.footer-contact {
    padding-right: 1.5rem;
}

.footer-contact-title {
    margin-bottom: 0.75rem !important;
    margin-top: 1rem !important;
}

.contact-item {
    margin-bottom: 0.75rem !important;
}

/* ========================================
   NAV TYPOGRAPHY FIX - V1.5
   ======================================== */

nav {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-links a,
.dropdown-toggle,
.dropdown-content a,
.nav-cta {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
}




/* Cuando el nav se oculta (scroll down), el breadcrumb se pega arriba */
nav.hide-on-scroll ~ .service-nav-container {
    top: 0;
}

/* El breadcrumb se oculta cuando se hace scroll down */
.service-nav-container.hide-on-scroll {
    transform: translateY(-100%);
}

/* Nav hide on scroll */

