@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --bn-blue: #445DF2;
    --bn-cian: #2AFBDD;
    --bn-dark: #020818;
    --bn-greydark: rgba(247, 247, 252, 0.05);
    --bn-gradient: -webkit-linear-gradient(45deg, #445DF2, #2AFBDD 50%);
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--bn-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    position: relative;
}

body.pace-running:before {
    opacity: 1;
}

.pace .pace-progress {
    background: var(--bn-gradient);
}

.pace-done #main-container {
    opacity: 1 !important;
}

.secondary-font {
    font-family: "Big Shoulders Display", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
    font-weight: 700;
}

.text-gradient {
    background: var(--bn-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h4.text-gradient {
    font-family: "Big Shoulders Display", sans-serif;
}

.bkg-gradient {
    background: var(--bn-gradient);
}

.btn.btn-primary {
    background: var(--bn-gradient);
    border: none;
    font-family: "Big Shoulders Display", sans-serif;
}

header {
    background: -webkit-linear-gradient(#020818, #02081800);
}

#logo {
    width: 70px;
}

nav {
    position: fixed;
    bottom: 30px;
    z-index: 999;
}

.navbar {
    padding: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #333;
}

.navbar a {
    padding: 8px 16px;
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

.navbar a.active {
    border-radius: 50px;
    background-color: var(--bn-greydark);
}

.navbar a:hover {
    background: var(--bn-gradient);
    color: var(--bn-dark);
}

.panel {
    scroll-snap-align: start;
    height: 100vh;
}

/* Video */
.hero-video {
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Opcional: Hero adjustments */
#hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.separator {
    background-color: var(--bn-dark);
    height: 2px;
    width: 100%;
    border: 2px solid var(--bn-dark);
}

.separator.top {
    margin-bottom: -1px;
}

.separator.bottom {
    margin-top: -1px;
}

#mission {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.gradients {
    z-index: -80;
    background-image: linear-gradient(#020818, #020818ad 14%, #02081800 28%, #0208182e 68%, #020818c9 82%, #020818 95%), radial-gradient(circle, #020818, #020818 18%, #020818b3 64%, #02081833 88%);
    width: 100%;
    height: 100%;
    position: absolute;
}

#mission-mockups-bkg {
    z-index: -99;
    width: 110%;
    display: flex;
    position: absolute;
    transform: rotate(-7deg) scale(1.1);
}

.mockups-column img {
    padding: 15px;
    max-width: 250px;
}

/*About*/
#about,
#inspire,
#values,
#workspace {
    margin-top: 10rem;
    margin-bottom: 10rem;
}

#about .col-lg-5,
#inspire .col-lg-5,
#values .col-lg-5 {
    margin-top: 5rem;
}

/* Talent Marquee */
#talent .marquee-container p {
    /*font-size: 15rem;*/
    font-size: 4rem;
    background: -webkit-linear-gradient(45deg, #445DF2, #2AFBDD 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "Big Shoulders Display", sans-serif;
    margin-bottom: 0;
}

@media (min-width: 740px) {
    #talent .marquee-container p {
        font-size: 7rem;
    }
}



/* Carrousel Testimonios */
.swiper {
    /*    -webkit-mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
    mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
*/
}

.swiper-slide {
    display: flex;
    justify-content: center;
    height: unset;
}

.swiper-slide .card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: show;
    transition: all 0.3s ease;
}

.swiper-btn-prev,
.workswiper-btn-prev {
    position: absolute;
    border-radius: 100px;
    background-color: #171717;
    width: 30px;
    height: 30px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 9999;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-btn-next,
.workswiper-btn-next {
    position: absolute;
    border-radius: 100px;
    background-color: #171717;
    width: 30px;
    height: 30px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 9999;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-disabled {
    opacity: 0.1;
}

/* Contacto */
#contact {
    position: relative;
    background: url('../img/stars-00.webp'), rgb(2, 8, 24);
    background: url('../img/stars-00.webp'), -moz-linear-gradient(180deg, rgba(2, 8, 24, 1) 0%, rgba(4, 31, 81, 1) 100%), url('../img/stars.webp');
    background: url('../img/stars-00.webp'), -webkit-linear-gradient(180deg, rgba(2, 8, 24, 1) 0%, rgba(4, 31, 81, 1) 100%), url('../img/stars.webp');
    background: url('../img/stars-00.webp'), linear-gradient(180deg, rgba(2, 8, 24, 1) 0%, rgba(4, 31, 81, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020818", endColorstr="#041f51", GradientType=1);
    background-size: 100%, auto;
    padding-bottom: 5rem;
}

/*#contact h1,
#contact p {
    color: var(--bn-dark);
}*/

.form-control {
    background-color: transparent;
    border-width: 0px 0px 1px 0px;
    border-color: var(--bn-dark);
    border-radius: 0;
    padding: 10px 0px;
}

.form-control:focus {
    background-color: transparent;
}

button {
    transition: all 0.5s linear;
}

button i {
    display: none;
    transition: all 0.5s linear;
}

button:hover i {
    display: inline-block;
}

#logos {
    overflow: hidden;
}

.logos-row {
    width: auto;
}

.logos-row .card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: show;
    padding: 30px;
    transition: all 0.3s ease;
    width: auto;
}

.logos-row .card img {
    width: 100%;
    min-width: 80px;
}

.flair {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    background: var(--bn-gradient);
    filter: blur(2px);
}

#ray {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(-45deg);
    filter: blur(5px);
}

/* Workspace */
.swiper.workSwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper.workSwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    height: auto;
}

.swiper.workSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.swiper-pagination-bullet {
    background: #fff;
}

#workspace .swiper-pagination-bullet-active {
    background: var(--bn-blue);
}

#workspace .swiper-slide {
    overflow: hidden;
}

#workspace .swiper-slide div {
    opacity: 0;
    transition: all 0.2s linear;
}

#workspace .swiper-slide img {
    transition: all 0.2s linear;
}

#workspace .swiper-slide h5 {
    position: absolute;
    left: 25px;
    bottom: 15px;
    z-index: 2;
    text-shadow: -1px 1px 4px rgba(0, 0, 0, 0.6);
}

#workspace .swiper-slide-active:hover img {
    transform: rotate(-2deg) scale(1.1);
    z-index: 1;
}

/* MODAL */
.modal {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    --bs-modal-border-radius: 1rem;
    --bs-modal-border-width: 0;
    overflow: hidden;
}

.modal-body {
    padding: 0;
}

.modal span {
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 1);
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

/*Media Queries */
@media (min-width: 992px) {

    #about .row,
    #inspire .row,
    #values .row {
        height: 100vh;
        margin-top: 0;
        margin-bottom: 0;
    }

    #workspace {
        margin-top: 0rem;
        margin-bottom: 5rem;
    }

    #contact {
        padding-bottom: 0rem;
    }
}

@media (max-width: 767px) {
    .hero-video {
        object-fit: contain;
        min-width: 1300px;
        background-color: #001C36;
    }
}
