
/* --- header.css --- */
header:not(:has(+ .banner-splide)) {
    margin-top: 24px;
}

.header__logo {
    width: 135px;
    height: 41px;
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.wizard-header-menu{
    display: flex;       
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.wizard-header-menu li a, .wizard-header-submenu-toggle, .wizard-header-submenu li a{
    color: var(--dark-blue-100);
    white-space: nowrap;
}

.wizard-header-menu li a:hover, .wizard-header-submenu-toggle:hover{
    color: var(--pure-red-40);
}

.wizard-header-submenu li {
    padding: 12px calc(var(--spacing) * 8);
    border-bottom: 1px solid var(--off-white);
    width: 100%;

}

.wizard-header-submenu li:hover{
    background-color: var(--off-white);
}

.wizard-header-submenu li:hover a{
    color: var(--dark-blue-100);
}

.wizard-header-menu li a.header-active-link{
    color: var(--pure-red-40);
    font-weight: 600;
}

.mobile-btn-toggle span{
    font-size: 40px;
    color: var(--dark-blue-100);
}

.wizard-header-submenu-toggle{
    cursor: pointer;
}

.wizard-header-submenu{
    display: none;
    width: fit-content;
    flex-direction: column;
    position: absolute;
    z-index: 3;
    background-color: white;
    top: 105%;
    right: 0;
}

.wizard-header-submenu-container{
    position: relative;
}

.active-menu{
    display: flex !important;
    animation: fade-in .3s forwards;
}

@media (max-width: 60rem){    
    .wizard-header-menu{
        display: none;       
        flex-direction: column;
        position: absolute;
        z-index: 3;
        background-color: white;
        width: 100%;
        top: 105%;
        right: 0;
        gap: 0;
    }

    .wizard-header-submenu{
        position: relative;
        width: 100%;
        background-color: white;
        gap: 0;
    }

    .wizard-header-menu li, .wizard-header-submenu li{
        padding: 16px;
        border-bottom: 1px solid var(--off-white);
        width: 100%;
    }

    .wizard-header-menu li:last-child, .wizard-header-submenu li:last-child{
        border: none;
    }

    .wizard-header-submenu-container{
        width: 100%;
    }
    
}


@media (max-width:768px) {
    header {
        margin-top: 15px;
    }
    
    .super__bar {
        display: none;
    }
}

.super__bar h1{
    font-size: var(--text-xs);
    line-height: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 53%;
    white-space: nowrap;
}

/* --- breadcrumbs.css --- */
section.breadcrumbs {
    margin: 70px 0;
    color: var(--dark-blue-100);
}

section.breadcrumbs a {
    color: var(--dark-blue-100);
}

section.breadcrumbs span {
    font-weight: bold;
}


@media all and (max-width:768px) {
    section.breadcrumbs .container {
        max-width: 90%;
    }
}

/* --- title-section.css --- */
section.title {
    margin: 60px 0;
    text-align: center;
    color: var(--dark-blue-100);
}

section.title .title__heading {
    font-size: 42px;
    line-height: 2.5rem;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 15px;
}

section.title .title__subtitle {
    font-size: 18px;
    line-height: 1.2;
}

section.title a {
    background: var(--dark-blue-100);
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    padding: 10px 30px;
    display: table;
    margin: auto;
    margin-top: 60px;
}

section.title a:hover {
    background: var(--light-blue-100);
}

section.title .title__image {
    display: block;
    width: 800px;
    max-width: 80%;
    border-radius: 16px;
    margin: auto;
    margin-top: 60px;
}

/* --- cards-content.css --- */
section.cards__content {
    margin: 60px 0;
}

section.cards__content .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

section.cards__content .container.colls-1 { grid-template-columns: repeat(1, 1fr); }
section.cards__content .container.colls-2 { grid-template-columns: repeat(2, 1fr); }
section.cards__content .container.colls-3 { grid-template-columns: repeat(3, 1fr); }
section.cards__content .container.colls-4 { grid-template-columns: repeat(4, 1fr); }
section.cards__content .container.colls-5 { grid-template-columns: repeat(5, 1fr); }
section.cards__content .container.colls-6 { grid-template-columns: repeat(6, 1fr);}

section.cards__content .cards__content-box {
    overflow: hidden;
    text-align: center;
    color: var(--dark-blue-100);
    position: relative;
    padding-bottom: 45px;
}


section.cards__content .cards__content-box .cards__content-image {
    position: relative;
}


section.cards__content .cards__content-box .cards__content-image .tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    background: #FFF0C9;
    color: var(--dark-blue-100);
    padding: 5px 20px;
    border-radius: 6px;
    font-size: 14px;
}

section.cards__content .cards__content-box img {
    border-radius: 30px;
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
}

section.cards__content .cards__content-box .cards__content-image--icon img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-blue-10);
    width: auto;
    height: auto;
    border-radius: 0;
    aspect-ratio: unset;
    margin: auto;
}

section.cards__content .cards__content-content {
    padding: 35px 15px;
}

section.cards__content .cards__content-title {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
}

section.cards__content .cards__content-text {
    margin-bottom: 30px;
}

section.cards__content .cards__content-cta {
    display: flex;
    width: max-content;
    padding: 10px 30px;
    color: #fff;
    background: var(--dark-blue-100);
    border-radius: 40px;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}

section.cards__content .cards__content-cta:hover {
    color: var(--light-blue-80);
}

@media all and (max-width: 1140px) {
    section.cards__content .container {
        max-width: 90%;
    }
}


@media all and (max-width: 768px) {
    section.cards__content .container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media all and (max-width: 556px) {
    section.cards__content .container {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* --- extensive-content.css --- */
section.extensive__content {
    margin: 60px 0;
    color: var(--dark-blue-100);
}

section.extensive__content .container {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

section.extensive__content-inverter .container {
    flex-direction: row-reverse;
}

section.extensive__content img.left__img {
    max-width: 370px;
    min-width: 370px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

section.extensive__content .extensive__content-title {
    font-weight: bold;
    font-size: 28px;
    text-transform: uppercase;
    font-style: italic;
}

section.extensive__content .extensive__content-stamps {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

section.extensive__content .extensive__content-stamps img {
    max-width: 100px;
    width: 100px;
    min-width: 100px;
    max-height: 100px;
    height: auto;
    object-fit: contain;
}

section.extensive__content .extensive__content-stamps .stamps__box-wrap {
    background: #FBF5F2;
    border-radius: 50%;
    overflow: hidden;
    padding: 25px;
    max-width: 100px;
    max-height: 100px;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 10px #0000001f;
}

section.extensive__content .extensive__content-stamps .stamps__box-wrap img {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    max-height: 100%;
}

section.extensive__content .extensive__content-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    border-radius: 30px;
    padding: 60px 40px;
    flex: 1;
    overflow: hidden;
}

section.extensive__content .extensive__content-content ul,
section.extensive__content .extensive__content-content ol {
    list-style: initial;
    list-style-position: inside;
    margin-bottom: 30px;
}

section.extensive__content .extensive__content-text p:not(:last-child) {
    margin-bottom: 30px;
}

section.extensive__content .extensive__content-button {
    display: table;
    padding: 10px 30px;
    color: #fff;
    background: var(--dark-blue-100);
    border-radius: 40px;
    width: fit-content;
}

section.extensive__content .extensive__content-button:hover {
    color: var(--light-blue-40);
}

/*LAYOUT TYPE B*/
section.extensive__content .extensive__content-img-title {
    min-width: 200px;
    max-width: 200px;
}

section.extensive__content .extensive__content-button-b {
    display: table;
    padding: 10px 30px;
    color: #fff;
    background: var(--light-blue-100);
    border-radius: 40px;
    width: fit-content;
}

section.extensive__content .extensive__content-button-b:hover {
    color: var(--light-blue-40);
}


/* Galeria */
section.extensive__content .extensive__content-gallery {
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.extensive__content .extensive__content-gallery_center {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

section.extensive__content .first_img_large .gallery_item:first-child {
    min-width: 100%;
    flex: 1;
}

section.extensive__content .blocks_img .gallery_item {
    min-width: 100%;
    flex: 1;
}


section.extensive__content .gallery_item {
    max-width: calc(50% - 8px);
}

section.extensive__content .extensive__content-gallery img {
    aspect-ratio: 1/1;
    min-width: 100%;
    width: 100%;
    min-height: auto;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

@media all and (max-width:1170px) {
    section.extensive__content .container {
        max-width: 90%;   
    }        
}

@media all and (max-width: 768px) {
    section.extensive__content .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    section.extensive__content img {
        min-width: 100%;        
    }

    section.extensive__content .extensive__content-content {
        padding: 30px;
    }

    section.extensive__content .extensive__content-gallery {
        min-width: 100%;
        flex: 1;
    }
}

/* --- gallery.css --- */
section.gallery {
    margin-top: 120px;
    position: relative;
    padding-bottom: 90px;
    display: flex;
    justify-content: center;
    max-width: 100%;
    min-width: 100%;
}

section.gallery .container {
    margin-top: -50px;
}

section.gallery .splide__arrow {
    background: var(--dark-blue-100);
}

section.gallery .splide__arrow svg {
    fill: #fff;
}


section.gallery .gallery__full {
    margin-bottom: 30px;
}

section.gallery .gallery__full .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.gallery .gallery__full img {
    margin: auto;
    width: 770px;
    max-width: 90%;
    height: auto;
    display: block;
    border-radius: 30px;
}

section.gallery .gallery__thumbnail .splide__track {
    justify-content: center;
}

section.gallery .gallery__thumbnail .splide__track--nav>.splide__list>.splide__slide {
    border: 0 !important; 
    background: #000;   
    border-radius: 32px;
    overflow: hidden;
}

section.gallery .gallery__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .4;
}

section.gallery .gallery__thumbnail li.splide__slide.is-active img {
    opacity: 1;
}

@media all and (max-width: 768px) {

    section.gallery .container {
        max-width: 90%;
    }

    section.gallery .gallery__full img {
        max-width: 70%;
    }


    section.gallery .gallery__thumbnail .splide__track {
        padding: 0 40px;
    }

    section.gallery .gallery__thumbnail .splide__slide {
        width: 70px !important;
        height: 70px !important;
        border-radius: 15px !important;
    }
}

/* --- footer.css --- */
footer {
    width: 100%;
    display: block;
    color: #fff;
}

footer .container {
    max-width: 1170px;
}

.footer__primary {
    padding: 60px 0;
    background: var(--dark-blue-100);
}

.footer__primary .container {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}

.footer__right {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex: 1;
}

footer b {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
}

footer a {
    font-size: 16px;
    display: block;
}

footer a:hover {
    color: var(--light-blue-40);
}

.footer__logo {
    margin-bottom: 60px;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: nowrap;
    margin-top: 35px;
}

.footer__copyright {
    background: #969696;
    font-size: 16px;
}

.footer__copyright .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 0;
}


/*
    Reponsivo 
*/
@media all and (max-width: 1170px) {
    footer .container {
        max-width: 90%;
    }
}

@media all and (max-width: 992px) {
    .footer__primary .container,
    .footer__right {
        flex-wrap: wrap;
    }
}

@media all and (max-width: 768px) {
    .footer__primary .container {
        gap:30px;
    }

    .footer__logo {
        margin-bottom: 30px;
    }

    .footer__left {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__social {
        margin-top: 20px;
    }

    .footer__right {
        gap: 30px;
        justify-content: center;
        text-align: center;
        margin-top: 30px;
    }

    .footer__copyright .container {
        justify-content: center;
        gap: 15px;
    }

    .footer__copyright p {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 20px;
    }
}
