:root {
    --blue-jbc: #193869;
    --gray-jbc: #4A4F55;
    --white: #F4F4F4;
    --black: #050505;
    --header-height: 60px;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/Acumin-RPro.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/Acumin-BdPro.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Acumin Pro', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#inicio {
    padding: 0;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(5,5,5,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 60px;
}

.section-padding {
    padding: 140px 0;
    overflow: hidden;
    position: relative;
}

.bg-light-theme {
    background-color: #f4f4f4;
    color: #000;
}

.walkthrough-card {
    --grosor-borde: 11px;
    --radio-exterior: 24px;
    --radio-interior: 18px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    margin: 0 auto;
    border: var(--grosor-borde) solid #ffffff;
    border-radius: var(--radio-exterior);
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 10;
    color: #fff;
}

@media (max-width: 992px) {
    .walkthrough-card {
        height: 530px;
    }
    #marca.section-padding {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
}

.wt-body, .wt-screens {
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wt-screen {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.wt-screen.active {
    opacity: 1; visibility: visible;
    z-index: 10;
}

.brand-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--radio-interior);
    z-index: 1;
}

.brand-content-glass {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 2;
    padding: 120px 30px 50px 30px;
    overflow: hidden;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.brand-content-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    border-radius: var(--radio-interior);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 70%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 70%);
}

.brand-content-glass h3 {
    font-size: 2rem;
    margin-bottom: 20px !important;
    color: #ffffff;
}

.brand-content-glass p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.6;
    font-size: 1.15rem !important;
}

.wt-badge {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 0.75em;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-adjustment {
    margin-top: 40px;
    position: relative;
}

.wt-btn {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 20;
}

.wt-btn:hover:not(:disabled) {
    transform: translateY(-5px);
    background-color: #f8f9fa;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #d6d6d6;
}

.arrow-svg {
    width: 28px;
    height: 28px;
    fill: #333333;
    transition: fill 0.3s ease;
}

.wt-btn:hover .arrow-svg {
    fill: #000000;
}

.wt-btn:disabled {
    background-color: #e9ecef !important;
    border-color: #e9ecef !important;
    cursor: default;
    opacity: 0.6;
    box-shadow: none !important;
    transform: none !important;
}

.wt-btn:disabled .arrow-svg {
    fill: #a0a0a0;
}

.wt-text-group {
    position: relative;
    min-height: 50px;
    display: grid;
    grid-template-areas: "stack";
}

.wt-text-item {
    grid-area: stack;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.wt-text-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.bg-custom-light {
    background-color: rgba(244, 244, 244, 1) !important;
}

.team-accordion {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 500px;
    gap: 15px;
}

.team-card {
    position: relative;
    flex: 1;
    max-width: 280px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), max-width 0.5s ease;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    border: 8px solid #ffffff;
    background-color: #ffffff;
}

.team-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.team-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.team-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.team-info {
    margin-bottom: 0;
    transition: margin-bottom 0.5s ease;
}

.team-bio {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.team-bio p {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.team-card:hover {
    flex: 3;
    max-width: 600px;
}
.team-card:hover .team-bg { filter: grayscale(0%); transform: scale(1.05); }
.team-card:hover .team-bio { opacity: 1; max-height: 200px; }

#equipo .tagline { color: #666666 !important; }
#equipo h2.display-4 { color: #050505 !important; }
#equipo p.opacity-75 { color: #333333 !important; opacity: 1 !important; }

#equipo {
    background-color: rgba(244, 244, 244, 1) !important;
    padding-top: 80px !important;
    padding-bottom: 140px !important;
    position: relative;
    z-index: 1;
}

.team-tab-btn {
    background: transparent;
    border: none;
    color: rgb(5, 5, 5);
    font-weight: 400 !important;
    letter-spacing: 1.5px;
    font-size: 1.2rem;
    padding: 10px 5px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kumbh Sans', sans-serif !important;
}

.team-tab-btn:hover {
    color: rgba(0, 0, 0, 0.8);
}

.team-tab-btn.active {
    color: #000000;
}

.team-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.team-tab-btn.active::after {
    width: 100%;
}

.team-tabs-wrapper {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

@media (max-width: 992px) {
    .team-tabs-wrapper {
        overflow-y: hidden !important;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-wrap: wrap !important;
        row-gap: 15px;
        padding-bottom: 20px !important;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
    }

    .team-accordion {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 12px;
    }

    .team-card {
        height: 350px;
        max-width: 100%;
        flex: none;
        transition: all 0.4s ease;
    }

    .team-card.active {
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        transform: scale(1.02);
        z-index: 20;
    }

    .team-card.active .team-bg {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

    .team-card.active .team-bio {
        opacity: 1;
        max-height: 200px;
        margin-top: 10px;
    }

    .team-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .team-info h4 { font-size: 1rem; }
    .team-info span { font-size: 0.7rem; }
    .team-bio p { font-size: 0.75rem; margin-top: 8px; }
}

.quiz-box {
    background: rgba(20, 20, 20, 0.8);
    padding: 60px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.1);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.quiz-opt {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1rem;
    background: rgba(255,255,255,0.02);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
}

.quiz-opt:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.form-control:focus {
    background-color: #222;
    color: white;
    border-color: var(--bs-primary, #0d6efd);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

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

.d-none { display: none !important; }
.z-2 { z-index: 2; }

.card-icon {
    color: #ffffff;
    font-size: 24px;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.card-icon i { color: inherit; }
.bg-dark-blue { background-color: #123150; }

@media (max-width: 768px) {
    .container { width: 94%; padding: 0 15px; }
    .quiz-box { padding: 30px; }
    .options-grid { grid-template-columns: 1fr; }
}

.quiz-glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.quiz-progress-container {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}
.quiz-progress-bar {
    height: 100%;
    background: #007bff;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-select-card {
    height: 140px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.service-select-card span {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.service-select-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.service-select-card:hover span {
    transform: scale(1.05);
}

.quiz-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 15px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}
.quiz-input:focus {
    background: rgba(255,255,255,0.1);
    border-color: #007bff;
}

.glass-bg-glow {
    position: absolute;
    top: -10%; right: -10%;
    width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#nosotros {
    margin-top: -60px;
    padding-top: 100px !important;
    padding-bottom: 120px !important;
    z-index: 5;
    overflow: hidden;
}

#nosotros h2.display-4,
#nosotros .lead,
#nosotros p {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

#nosotros .tagline {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.about-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid #ffffff !important;
    border-radius: 24px !important;
    padding: 35px 30px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-card .card-icon {
    background: rgba(25, 56, 105, 0.15);
    color: #193869;
    border: 1px solid rgba(25, 56, 105, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(25, 56, 105, 0.2);
}

#contacto {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.privacy-hero {
    background: linear-gradient(135deg, #193869 0%, #0a1629 100%);
    padding: 120px 0 60px;
    color: #ffffff;
    text-align: center;
}

.privacy-section {
    padding: 60px 0 80px;
    background-color: #f8f9fa;
    color: #333333;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nav-privacy .nav-link {
    color: #555555;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.nav-privacy .nav-link:last-child {
    border-bottom: none;
}

.nav-privacy .nav-link:hover {
    color: #193869;
    font-weight: 700;
    padding-left: 5px;
}

.privacy-content h3 {
    color: #193869;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-content h3:first-child {
    margin-top: 0;
}

.privacy-content p, .privacy-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
    text-align: justify;
}

.btn-brand-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 20px;
}

.btn-brand-cta:hover {
    background-color: #f2f2f2;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cookie-tech-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 400px;
    max-width: 90%;
    background-color: rgba(21, 35, 58, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(24, 116, 149, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    visibility: hidden;
    font-family: 'Kumbh Sans', sans-serif;
}

.cookie-tech-container.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.cookie-tech-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.cookie-icon-box {
    font-size: 1.5rem;
    color: #187495;
    background: rgba(24, 116, 149, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.cookie-info {
    flex: 1;
}

.cookie-title {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cookie-desc {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 400;
}

.cookie-tech-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.cookie-link {
    color: #94a3b8;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.cookie-link:hover {
    color: #187495;
    text-decoration: underline;
}

.btn-tech-accept {
    background-color: #187495;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 116, 149, 0.3);
    font-family: 'Kumbh Sans', sans-serif;
}

.btn-tech-accept:hover {
    background-color: #135d78;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-tech-container {
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%) translateY(20px);
        width: 92%;
    }

    .cookie-tech-container.show {
        transform: translateX(-50%) translateY(0);
    }
}

.hero-swiper .swiper-slide .row {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hero-swiper .swiper-slide-active .row {
    opacity: 1;
    transition: opacity 0.4s ease-in-out 0.6s;
}

.team-content .team-info h4,
.team-content .team-info span,
.team-content .team-bio p {
    font-family: 'Kumbh Sans', sans-serif !important;
}

.team-content .team-info h4 {
    font-weight: 700 !important;
}

.team-content .team-info span,
.team-content .team-bio p {
    font-weight: 400 !important;
}

.director-profile .director-img-wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    border: 11px solid #ffffff;
    overflow: hidden;
}

.director-profile .director-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-profile .director-text-wrapper h3,
.director-profile .director-text-wrapper span,
.director-profile .director-text-wrapper p {
    font-family: 'Kumbh Sans', sans-serif !important;
}

.fade-in-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpText 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fadeInUpText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .director-profile .director-text-wrapper {
        padding-top: 30px;
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .director-profile .director-img-wrapper {
        aspect-ratio: 4 / 5;
    }

    .director-profile .director-img-wrapper img {
        object-position: top center;
    }
}

.wt-screen .brand-isotipo {
    position: absolute !important;
    top: 30px !important;
    right: 30px !important;
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    z-index: 99 !important;
    display: block !important;
}

@media (max-width: 768px) {
    .wt-screen .brand-isotipo {
        top: 20px !important;
        right: 20px !important;
        width: 60px !important;
        height: 60px !important;
    }
}

.main-header .nav-list .nav-item a {
    font-family: 'Kumbh Sans', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px;
}

.gptw-hero-img {
    max-width: 80px;
}

.text-ceo-role {
    color: #0056b3;
}

.text-ceo-quote,
.text-ceo-desc {
    font-size: 18.4px;
}

.bg-nosotros-section {
    background-image: linear-gradient(rgba(25, 56, 105, 0.88), rgba(5, 5, 5, 0.92)), url('../img/fondo-nosotros.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.text-nosotros-desc {
    font-size: 18px;
}

.gptw-logo-vision {
    position: absolute;
    top: 0px;
    right: 50px;
    width: 60px !important;
    height: auto !important;
}

.bg-contacto-section {
    background: linear-gradient(180deg, #193869 0%, #0a1629 100%);
    position: relative;
    overflow: hidden;
}

.diagnostico-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.service-bg-1 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/brand1.webp'); }
.service-bg-2 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/brand2.webp'); }
.service-bg-3 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/brand3.webp'); }
.service-bg-4 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/brand4.webp'); }
.service-bg-5 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/brand5.webp'); }
.service-bg-6 { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/brand6.webp'); }

.form-lead-container {
    max-width: 500px;
}

.honeypot-hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
}





/* ==========================================================================
   ESTILOS EXCLUSIVOS: DIAGNÓSTICO DE SOLUCIONES (FORMULARIO DE CONTACTO)
   ========================================================================== */

/* --- ESTILOS BASE DEL CONTENEDOR --- */
.quiz-glass-box {
    background: rgb(255, 255, 255, 0);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 5px solid rgb(255, 255, 255);
    border-radius: 24px;
    box-shadow: 1px 5px 30px rgba(0, 0, 0, 0.9);
    position: relative;
    padding-bottom: 80px !important;
    color: #ffffff;
}

.quiz-glass-box h3,
.quiz-glass-box h4 {
    color: #ffffff;
    font-weight: 700;
}

.quiz-glass-box p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

/* ==========================================================================
   SOLUCIÓN A LOS BOTONES: SEPARAMOS "FORMA" DE "COLOR"
   ========================================================================== */
.btn-white-compact,
#result-content .btn,
#result-content .badge {
    display: inline-block;
    width: auto !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 5px;
    border: 2px solid transparent !important;
}

.btn-white-compact:hover,
#result-content .btn:hover,
#result-content .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

/* --- COLORES ESPECÍFICOS --- */
.btn-white-compact,
#result-content .btn-white-action {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

.btn-white-compact:hover,
#result-content .btn-white-action:hover {
    background-color: #f2f2f2 !important;
}

#result-content .btn-transparent-action {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
}

#result-content .btn-transparent-action:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

#result-content .btn-blue-action {
    background-color: #0D6EFD !important;
    color: #ffffff !important;
    border-color: #0D6EFD !important;
}

#result-content .btn-blue-action:hover {
    background-color: #0D6EFD !important;
    border-color: #0D6EFD !important;
}

/* --- ESTILOS DE BARRA Y TARJETAS --- */
.quiz-progress-container {
    position: absolute;
    bottom: 30px;
    left: 5%;
    width: 90%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    z-index: 10;
}

.quiz-progress-bar {
    height: 100%;
    background-color: #33c4ff;
    border-radius: 20px;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    transition: width 0.6s ease;
    animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
    0% { background-position: 20px 0; }
    100% { background-position: 0 0; }
}

.service-select-card {
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-card:hover {
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.quiz-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    width: 100%;
}

.quiz-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    outline: none;
}

.quiz-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   NUEVA FUENTE KUMBH SANS (EXCLUYENDO EL TÍTULO H2)
   ========================================================================== */
#contacto h3,
#contacto h4,
#contacto p,
#contacto span,
#contacto button,
#contacto a,
#contacto input {
    font-family: 'Kumbh Sans', sans-serif !important;
}

/* Ajuste de grosores para la nueva fuente */
#contacto h3,
#contacto h4 {
    font-weight: 700 !important;
}

#contacto p,
#contacto span,
#contacto input {
    font-weight: 400 !important;
}
