
@font-face {
    font-family: 'Gantari';
    src: url(../fonts/Gantari-Regular.woff2);
    font-weight: 400;
}

@font-face {
    font-family: 'Gantari';
    src: url(../fonts/Gantari-Medium.woff2);
    font-weight: 500;
}

@font-face {
    font-family: 'Gantari';
    src: url(../fonts/Gantari-SemiBold.woff2);
    font-weight: 600;
}

@font-face {
    font-family: 'Gantari';
    src: url(../fonts/Gantari-Bold.woff2);
    font-weight: 700;
}

@font-face {
    font-family: 'Gantari';
    src: url(../fonts/Gantari-ExtraBold.woff2);
    font-weight: 800;
}

@font-face {
    font-family: 'Gantari';
    src: url(../fonts/Gantari-Black.woff2);
    font-weight: 900;
}

:root {
    /* Ibarra Mayoreo */  
    --blue-01: #0083BE;
    --blue-02: #34A9DB;
    --blue-03: #DFF5FF;
    --green-01: #94E11F;
    /* Ibarra Mayoreo */   
    /* suBodega! */   
    --red-01: #FC2217;
    --red-02: #C00D1B;
    --red-03: #FFE1E4;
    --golden: #C69B28;
    --green-02: #21A01A;
    /* suBodega! */
    --white: #FFF;
    --gray: #717171;   
    --gray-02: #F1F1F1;  
    --alert: #DD2A2A;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font);
}

p{
    color: var(--gray);
}

a{
    text-decoration: none;
}

small{
    color: var(--gray);
}

header{
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    min-height: 60px;
    display: flex;
    box-shadow: 0 4px 20px -6px rgba(0,0,0,0.3);
}

header .nav-link{
    border-width: 2px;
    border-style: solid;
    border-radius: 8px;
}

header .bi-list{
    font-size: 26px;
}

header .navbar-toggler{
    border-width: 2px;
}


.header-message{
    margin-bottom: 0;
    margin-left: auto;
    font-size: 14px;
    color: var(--gray);
}



.bg-general{
    background-image: url('../img/2025/bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.title-main{
    position: relative;
    margin-bottom: 40px;
}

.title-main::after{
    content: '';
    position: absolute;
    width: 100%;
    max-width: 345px;
    height: 8px;
    border-radius: 100px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

h1{
    font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 20px;
    color: var(--gray);
    font-weight: 700;
}

.clock {
    display:flex;
    flex-direction: row;
    justify-content:center;
    background: #00D6F1;
    background: linear-gradient(280deg, rgba(0, 214, 241, 1) 0%, rgba(0, 131, 190, 1) 100%);
    padding:15px 0;
    width:100%;
    max-width: 640px;
    border-radius: 34px;
    margin: 0 auto 10px;
    }
    
    .clock span {
    color:#fff;
    font-size:50px;
    padding:0 10px;
    font-display:optional;
    font-optical-sizing:auto;
    font-weight:700;
    text-align:center
    }
    
    .clock span .small {
    font-size:14px;
    margin:0;
    color: var(--white);
    font-display:optional;
    font-optical-sizing:auto;
    font-weight:600
    }
    
    .clock .puntos {
    position:relative
    }

    .containerspans{
        display: flex;
    }
    
    @media (max-width: 767px) {
    .clock {
    justify-content:center
    }
    
    .clock span {
    font-size:24px;
    padding:0 5px
    }
    
    .clock span .small {
    font-size:12px
    }
    }
    
    @media (max-width: 399px) {
    .clock {
    flex-wrap:wrap
    }
}

.autoservicio .clock{
    background: var(--white);
    background: var(--white);
}

.autoservicio .containerspans span,
.autoservicio .clock span .small{
    color: var(--golden);
}

.autoservicio .containerspans > span{
    border: 2px solid var(--golden);
    width: 110px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 15px;
}

.autoservicio .containerspans span.puntos{
    border-width: 0;
    width: auto;
}

/* Footer */
footer {
    background-color: #00274d;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #00bfff;
}

/* Contact Section */

.contact-section h2 {
    color: #0074B8;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: left;
    max-width: 300px;
    font-size: 14px;
    color: #555;
}

.contact-item a {
    color: #0074B8;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    background-color: #f9f9f9;
}

.carousel-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0s linear;
}

.carousel-track img {
    max-width: 8rem;
    height: auto;
    object-fit: contain;
    margin: 14px 0;
}

.bg-gray{
    background-color: var(--gray-02);
}

.bg-gray .l01{
    border-right: 1px solid rgba(0,0,0,.1);
}

.bg-gray .l02{
    border-top: 1px solid rgba(0,0,0,.1);
}

.contact-section{
    margin-top: 40px;
}

.contact-title{
    background-color: var(--white);
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 24px;
    color: var(--gray);
    max-width: 284px;
    display: inline-block;
}

.contant-item{
    display: flex;
    flex-direction: row;
    align-items: start;
    text-decoration: none;
    color: var(--gray);
    gap: 10px;
}

.contant-item-desc{
    display: flex;
    flex-direction: column;
}
.contant-item-title{
    margin-bottom: 0;
}
.contant-item-link{
    font-weight: 400;
    margin-bottom: 0;
}

.content-docs {
    width: 100%;
    height: 1200px;
}

@media screen and (max-width: 992px) {
    .content-docs{
        height: 820px;
    }
}

@media screen and (max-width:540px) {
    .content-docs{
        height: 480px;
    }
}

.cont-table{
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--white);
}

.table > :not(caption) > * > *{
    background-color: inherit;
    border-color: var(--green-02);
}

.table th,
.table td{
    text-align: center;
}

.table th{
    color: var(--white);
}



footer{
    position: relative;
}

.modal-backdrop.show{
    opacity: .9;
}

.modal-content{
    border: 0;
    background: inherit;
    color: var(--white);
}

.modal .btn-close{
    background: inherit;
}

.bg-mayoreo-02{
    background-color: var(--blue-03);
    border-radius: 35px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,.1);
}

.card-mayoreo{
    background: #113394;
    background: linear-gradient(0deg, rgba(17, 51, 148, 1) 0%, rgba(6, 71, 255, 1) 100%);
    border-radius: 34px;
    color: var(--white);
    text-align: center;
    justify-content: center;
    height: 100%;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.card-mayoreo p{
    color: var(--white);
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 400;
}

.card-mayoreo a{
    color: var(--white) !important;
    font-weight: 600;
}

.card-mayoreo-number{
    font-weight: 700;
    font-size: 30px;
    background: #113394;
    background: linear-gradient(0deg, rgba(0, 214, 241, 1) 0%, rgba(0, 131, 190, 1) 100%);
    color: rgb(0, 131, 190);
    color: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-bottom: 10px;
}

.card-mayoreo-local{
    display: flex;
    flex-direction: row;
    align-items: start;
    padding: 10px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 20px 2px rgba(0, 116, 184,.2);
}

.card-mayoreo-local__title{
    font-weight: 700;
    margin-bottom: 0;
}

.card-mayoreo-local__desc{
    margin-bottom: 0;
}

.mayoreo a{
    color: var(--blue-01);
}

.mayoreo h1{
    color: var(--blue-01);
}

.mayoreo h2{
    color: var(--blue-01);
    font-weight: 700;
    font-size: 24px;
}

.mayoreo header .nav-link{
    border-color: var(--blue-01);
    color: var(--blue-01);
}

.mayoreo header .nav-link:hover{
    background-color: var(--blue-01);
    color: var(--white);
}

.mayoreo header .bi-list{
    color: var(--blue-01);
    border-width: 2px;
}

.mayoreo header .navbar-toggler{
    border-color: var(--green-01);
    border-color: var(--blue-01);
}

.mayoreo header .navbar-toggler:focus{
    box-shadow: 0 0 0 4px rgba(148, 225, 31,.4);
}

.mayoreo .title-main::after{
    background-color: var(--green-01);
}

.mayoreo footer{
    background-color: var(--blue-01);
}

.mayoreo .contact-title{
    box-shadow: 0 0 20px 2px rgba(0, 116, 184,.2);
}

.mayoreo footer::after{
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 100%;
    height: 30px;
    max-width: 1320px;
    transform: translateX(-50%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: var(--blue-02);
}

.mayoreo .footer-text{
    width: 100%;
    display: inline-block;
    margin-bottom: 0;
    color: var(--white);
    text-align: center;
}

/*  */

.bg-autoservicio-02{
    background-color: var(--red-03);
    border-radius: 35px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,.1);
}

.autoservicio a{
    color: var(--red-02);
}

.autoservicio h1{
    color: var(--red-02);
}

.autoservicio h2{
    color: var(--red-02);
    font-weight: 700;
    font-size: 24px;
}

.card-autoservicio-local{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 20px 2px rgba(192, 13, 27,.2);
}


.card-autoservicio-local__title{
    font-weight: 700;
    margin-bottom: 0;
}

.card-autoservicio-local__desc{
    margin-bottom: 0;
}

.autoservicio header .nav-link{
    border-color: var(--red-02);
    color: var(--red-02);
}

.autoservicio header .nav-link:hover{
    background-color: var(--red-02);
    color: var(--white);
}

.autoservicio header .bi-list{
    color: var(--red-02);
    border-width: 2px;
}

.autoservicio header .navbar-toggler{
    border-color: var(--green-02);
    border-color: var(--red-02);
}

.autoservicio header .navbar-toggler:focus{
    box-shadow: 0 0 0 4px rgba(148, 225, 31,.4);
}

.autoservicio .title-main::after{
    background-color: var(--golden);
}

.autoservicio footer{
    background-color: var(--red-02);
}

.autoservicio .contact-title{
    box-shadow: 0 0 20px 2px rgba(192, 13, 27,.2);
}

/* 
.autoservicio tbody th{
    color: var(--red-01);
} */
.autoservicio tbody th,
.autoservicio td{
    color: var(--gray);
}

.autoservicio thead{
    background-color: var(--red-01);
    color: var(--white);
}

.card-autoservicio{
    background: var(--red-02);
    /* background: linear-gradient(0deg, rgba(17, 51, 148, 1) 0%, rgba(6, 71, 255, 1) 100%); */
    border-radius: 34px;
    color: var(--white);
    text-align: center;
    justify-content: center;
    height: 100%;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 30px;
    position: relative;
}

.card-autoservicio p{
    color: var(--white);
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 400;
}

.card-autoservicio a{
    color: var(--white) !important;
    font-weight: 600;
}

.card-autoservicio-number{
    font-weight: 700;
    font-size: 30px;
    background: var(--white);
    /* background: linear-gradient(0deg, rgba(0, 214, 241, 1) 0%, rgba(0, 131, 190, 1) 100%); */
    color: rgb(0, 131, 190);
    color: var(--red-02);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-bottom: 10px;
}

.ca01::after,
.ca02::after{
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 14px);
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: var(--golden);
    border: 6px solid var(--white);
    border-radius: 100px;

}

.ro01::before,
.ro02::before{
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% - 14px);
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 100px;
    background-color: var(--white);
}

.ro02::before{
    right: inherit;
    left: calc(100% - 14px);
}

.autoservicio footer::after{
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 100%;
    height: 30px;
    max-width: 1320px;
    transform: translateX(-50%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: var(--golden);
}

.autoservicio .footer-text{
    width: 100%;
    display: inline-block;
    margin-bottom: 0;
    color: var(--white);
    text-align: center;
}

/*  */

@media screen and (min-width:991px){
    .header-message.hm02{
        display: none;
    }
} 

@media screen and (max-width:991px) {
    header .nav-link{
        text-align: center;
        padding-left: .5rem;
        padding-right: .5rem;
    }
    .header-message{
        margin-right: auto;
        font-size: 10px;
        text-align: center;
    }
    .header-message.hm01{
        display: none;
    }

    .card-mayoreo p br{
        display: none !important;
    }
}

@media screen and (max-width:767px) {
    .text-break{
        display: none;
    }    

    .bg-gray .l01{
        border-right:0;
    }
    
    .bg-gray .l02{
        border-top:0;
    }

    .ca01::after,
    .ca02::after{
        display: none;

    }

    .ro01::before,
    .ro02::before{
        display: none;
    }

    .ro02::before{
        display: none;
    }
}

@media screen and (max-width:500px) {
    .contant-item-link{
        font-size: 12px;
    }

    .autoservicio .containerspans > span{
        width: 82px;
    }
}