:root {
    --primary: #00244BCC;
}


/* Component styles */
.btn-primary {
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #00244B;
    border: 1px solid #00244B;
}

.cta {
    display: block;
    margin: auto;
    max-width: 260px;
    font-weight: bold;
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
}

li {
    list-style: none;
}

.slick-slider {
    width: 92%;
    margin: 0 auto;
}

.slick-dots {
    bottom: -36px;
}

.accordion-item {
    border: none;
    border-bottom: 2px dotted #E0E0E0;
}

.accordion-button {
    color: #334155;
    font-weight: 700;
}

.accordion-button:focus {
    box-shadow: none;
    background: none;
}

.accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

header {
    z-index: 2;
    width: 100%;
    background-color: black;
}

header .navbar-nav .nav-link {
    color: var(--primary);
}

header .navbar-nav .nav-link:hover {
    color: #9c8f15;
}

.navbar-toggler {
    border: none;
}

footer {
    background-color: var(--primary);
    color: white;
    border-radius: 16px 16px 0 0;
    margin-top: 16px;
}

footer li {
    margin-bottom: 8px;
}

footer a {
    color: #dfe7ef;
    font-size: 0.875rem;
}

footer a:hover {
    color: #9c8f15;
}

footer h5 {
    font-size: 1rem;
    font-weight: 700;
}

footer .phone-button {
    background-color: white;
    border-radius: 999px;
    padding: 12px 24px;
    align-items: center;
    gap: 0.5rem;
    color: #2c4765;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer .accordion-item, .accordion-button, .accordion-header {
    background: none;
}

footer .accordion-button {
    color: white;
    font-weight: bold;
}

footer .accordion-button:focus,
footer .accordion-button:not(.collapsed) {
    color: white;
}

footer .accordion-button::after {
    filter: brightness(0) invert(1);
}

footer .follow-us a {
    transition: transform 0.2s ease-in-out;
}

footer .follow-us a:hover {
    transform: scale(1.2);
}


/* Sections styles */
section {
    padding: 10px 0px;
}

section h2 {
    margin-bottom: 12px;
    color: var(--primary);
}

section h3 {
    font-size: 1.25rem;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    color: white;
    bottom: 32px;
}

.certifications-slider {

    .certification-item {
        position: relative;
        height: 50px;
        display: inline-block;
        width: 134px;
    }

    img {
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
}

.brand-item {
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item:hover {
    color: var(--primary);
}

.brand-item img {
    position: absolute;
    z-index: 1;
}

.brand-item img {
    transition: transform 0.3s ease-in-out;
}

.brand-item img:hover {
    transform: scale(1.1);
}

.brand-item h3 {
    position: absolute;
    color: white;
    font-weight: 700;
    bottom: 16px;
    left: 24px;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(89, 88, 88, 0.05) 60%, rgba(0, 0, 0, 0.5));
    z-index: 0;
    border-radius: 16px;
}

.section-expertise {
    .card {
        border: none;
        background-color: var(--primary);
        text-align: center;
        border-radius: 15px;
        color: white;
        height: 100%;

        img {
            height: 76px;
        }

        h6 {
            font-size: 0.9375rem;
        }

        p {
            font-size: 0.75rem;
        }
    }
}

.flip-card {
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    width: 100%;
    height: 240px;
    transform-style: preserve-3d;
    transition: transform 0.6s;

    .card-body {
        display: flex;
        align-items: center;
    }
}

.flip-card-inner-large {
    height: 300px;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-back {
    transform: rotateY(180deg);
}

.value-item-container {
    background-color: var(--primary);
    border-radius: 16px;
}

.value-item {
    padding: 16px;
}

.value-item-content {
    background-color: white;
    border-radius: 16px;
    padding: 16px;
    height: 500px;
}

.card-destination-wrapper {
    margin-right: 26px;
    display: block;
    margin-left: -18px;
}

.card-destination {
    position: relative;
    border-radius: 16px;
}

.card-destination img {
    border-radius: 16px;
}

.card-destination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
}

.card-destination .title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.unosel-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.teams-container .img-container {
    height: 230px;
    width: 230px;
    position: relative;
    border-radius: 16px;
    border: 5px solid var(--primary);
}

.teams-container .img-container img {
    border-radius: 16px;
}

.teams-container h3 {
    font-weight: bold;
    color: var(--primary);
    font-size: 1rem;
}

.teams-container h5 {
    color: var(--primary);
    font-size: 1rem;
}

.teams-container .slick-dots {
    bottom: -10px;
}

@media (min-width: 768px) {
    .slick-slider {
        width: auto;
    }
}

@media (min-width: 1024px) {

    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 26px;
    }


    .hero-section {
        height: 600px;
    }

    .hero-section::before {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        bottom: unset;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .teams-container h3,
    .teams-container h5 {
        font-size: 1.25rem;
    }

    .card-destination-wrapper {
        margin-left: 0;
    }

    .card-destination {
        height: 400px;
        width: 400px;
        margin-right: 26px;
    }

    .teams-container .slick-dots {
        bottom: -30px;
    }

    .unosel-text {
        font-size: 2.5rem;
    }

    .slick-dots {
        bottom: -48px;
    }
}


