/*RESET*/
@import "https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css";
*{
  margin:0; padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: all .2s linear;
  text-decoration: none;
  font-family: 'montserrat';

}
.container-service {
    align-items: center;
    overflow-x: hidden;
}
.carrousel,
.carrousel * {
  box-sizing: border-box;
}
.carrousel {
  font-size: 1rem;
  height: 70vh;
  position: relative;
  display: grid;
  place-items: center;
  grid-template-columns: max-content 1fr max-content;
  grid-template-rows: max-content 1fr max-content;
  grid-template-areas:
    ". . f"
    "l . r"
    "p b c";
  border-radius: 0.25rem;
  color: #0057aa;

}
.carrousel:focus {
  outline: 1px solid currentcolor;
}

.carrousel.full-view {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  font-size: 1.5rem;
  --object-fit: contain !important;
  border-radius: 0;
}
.carrousel.hide-controls .control {
  opacity: 0;
  pointer-events: 0;
}
.carrousel .slides {
  grid-column: 1/-1;
  grid-row: 1/-1;
  display: flex;
  flex-grow: grow;
  height: 100%;
  overflow: hidden;
  border-radius:inherit;
}

.carrousel > *:not(.slides) {
  margin: 0.5em;
}
.carrousel .slides img {
  --backgroundOverlay: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background: #1d1e22;
  object-fit: var(--object-fit, cover);
  transition: margin-left 1s ease;
  background-size: cover;
  background-position: center center;
}
.slides:before{
  content: '';
  background: rgba(0,0,0,0.4);
  position: absolute;
  width: 100%;
  height: 70vh;
  left: 0;
  z-index: 1;
}

.carrousel .icon {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 2;
  color:white;
}
.carrousel .arrow-left {
  grid-area: l;
  font-size: 1.5em;
  color:white;
}
.carrousel .arrow-right {
    grid-area: r;
    font-size: 1.5em;
    color: white;
}
.carrousel .full-view-btn {
  grid-area: f;
}
.carrousel .auto-play-btn {
  grid-area: p;
}
.carrousel .controls-hide-btn {
  grid-area: c;
}
.carrousel .bullets {
  grid-area: b;
  display: flex;
  gap: 0.5rem;
}

@media only screen and (max-width: 980px){
    .slides:before{
        content: '';
        background: rgba(0,0,0,0.4);
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .carrousel {
        font-size: 1rem;
        height: 100%;
    }
}
.btn-abrir{
    background: #0063a5;
    color:#fff;
    padding: 10px;
    display: inline-block;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: none;
}
.pop-up{
    background: rgba(48, 48, 48, 0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 100;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.pop-up-wrap{
    display: flex;
    align-items: center;
    margin-top: 60px;
    width: 90%;
    max-width: 1050px;
    transform: scale(0.6);
    opacity: 0;
    transition: .3s ease all;
}

.container-pop::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.container-pop{
    background: #fff;
    flex-basis: 0;
    flex-grow: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
}

.sub-content{
    width: 90%;
}

.sub-content h2{
    font-weight: 500;
    font-size: 40px;
	margin-top: 20px;
    color: #1F4068;
    margin-bottom: 15px;
}

.sub-content .im{
width: 80%;
margin-bottom: 50px;
animation: movimiento 3.5s linear infinite;
}
@keyframes movimiento{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0);
    }
}
.-pop-row  a img{
	width: 100%;
	padding-bottom: 20px;
	animation: scale 1s 2.5s backwards;
	max-width: 80%;
    transition: .5s;
}
.-pop-row a img:hover{
    transform: scale(1.1);
    transition: .5s;
    cursor: pointer;
}
@keyframes scale{
	0%{
		transform: scale(0%);
	}
}
.-pop-row{
	display: flex;
	justify-content: space-around;
}

.line{
    width: 100%;
    height: 20px;
    background: #0057aa;
}
.line > span{
    font-size: 14px;
    font-weight: 200;
    color: #fff;
}

#close{
    position: absolute;
    top: 40px;
    right: 25px;
    font-size: 45px;
    color: #0057aa;
    cursor: pointer;
    transition: .5s;
}
#close:hover{
	transform: scale(1.1);
	color: #009adc;
    transition: .5s;
}

.pop-up.show{
    visibility: visible;
}

.pop-up-wrap.show{
    transform: scale(1);
    opacity: 1;
}

@media only screen and (max-width: 980px){
    .pop-up-title{
        display: none;
    }
    .sub-content h2{
	   font-size: 30px;
    }
}

@media only screen and (max-width: 550px){
    .sub-content h2{
        font-size: 18px;
    }
    #close{
    position: absolute;
    top: 40px;
    right: 25px;
    font-size: 25px;
    color: #0057aa;
    cursor: pointer;
	}
    .menu__logo img{
        padding-top: 5px;
        width: 85px;
        transition: .5s;
    }
    .menu__img{
        width: 25px;
    }
    header.abajo{
        height: 70px;
    }
    .menu__links{
        top: 65px;
    }
  }

  @media only screen and (max-width: 370px){
  	#close{
    position: absolute;
    top: 40px;
    right: 5px;
    font-size: 25px;
    color: #0057aa;
    cursor: pointer;
	}

  }


.btn-whatsapp {
    display:block;
    width:70px;
    height:70px;
    color:#fff;
    position: fixed;
    right:20px;
    bottom:20px;
    border-radius:50%;
    line-height:80px;
    text-align:center;
    z-index:999;
}


.btn-whatsapp img:hover{
    transform: scale(1.1);
    transition: .5s;
}


.text {
    font-size: 32px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.9);
    z-index: 1;
    padding-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
    transition: 0.5s;
}

.marcas-hcc > img {
    width: 270px;
    height: 100px;
    animation: scroll 60s linear infinite;
}

    .marcas-hcc > img:hover {
        cursor: pointer;
        transform: scale(1.1);
        transition: .3s;
    }

.slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
}

.slider {
    background-color: whitesmoke;
    padding: 5em 2em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-1000%);
    }
}

¿#us{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    margin-top: 60px;
}
.contenedor-us{
    display: flex;
    justify-content: center;
    width: 90%;
    padding: 20px;
}
.us-derecha{
    width: 50%;
    text-align: center;
    align-items: center;
}

.us-izquierda{
    width: 50%;
    text-align: center;
    align-items: center;
}
.us-izquierda h3{
    text-transform: uppercase;
    text-align: center;
}
.us-izquierda p{
    text-transform: uppercase;
    text-align: justify;
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
}
.us-derecha > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.datos{
display: flex;
justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  .contenedor-us{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .us-izquierda{
    width: 100%;
  }
  .us-derecha{
    width: 100%;
  }
}


#datos-i{
    display: flex;
    margin: auto;
    box-sizing: border-box;
}
.container-num{
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: 0.7s;
}
.container-num:hover{
    transform: scale(1.1);
    border-radius: 6px;
    transition: all 300ms;
    transition: 0.7s;
}
.contador_cantidad{
    font-size: 30px;
    align-items: center;
    display: flex;

}

.txt-col{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contador i{
    font-size: 60px;
    padding: 10px;
    box-sizing: border-box;
}
.contador_cantidad {
    font-size: 60px;
    color: #0057aa;
    font-weight: 800;
}
.tex{
    font-size: 20px;
    font-weight: 900;
}
.contador p{
    text-align: justify;
    line-height: 1.8;
    font-size: 14px;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 20px;
}
@keyframes aparecer{
    0%{
        transform: translateY(50px);
    }
    100%{
        transform: translateY(0px);
    }
}
    .ocultar{
        opacity: 0;
    }
    .animar{
        animation: aparecer 3s ;
        opacity: 1;
    }

@media (max-width: 720px){
    #datos-i{
        display: flex;
    }
    .contador-col{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    }
}
.title-cards{
    text-align: center;
    font-size: 20px;
    padding: 30px;
    text-transform: uppercase;
}
@media (max-width: 400px){
    #datos-i{
        display: flex;
        flex-direction: column;
    }
    .container-num{
        display: block;
        box-sizing: border-box;
        text-align: center;
        transition: .7s;
        padding: 20px;
    }
    .title-cards{
        font-size: 20px;
    }
}


.container-service {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.carousel-service {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-out;
    padding: 1.5rem 0;
}

.card-service {
    flex: 0 0 350px;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transform-origin: center;
}

    .card-service:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

.card-img {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
        transform-origin: center;
    }

.card-service:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: justify;
    height: 40%;
    line-height: 2;
}

.card-tag {
    font-size: 0.85rem;
    color: #0057aa;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-text {
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.card-button {
    align-self: flex-start;
    padding: 0.2rem 0.2rem;
    background: linear-gradient(90deg, #009ADC, #0057AA);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 87, 170,0.5);
}

    .card-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 87, 170,0.7);
    }

.navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    color: #009adc;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    .nav-btn:active {
        transform: scale(0.95);
    }

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6a6a6a;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: #009adc;
        transform: scale(1.3);
    }

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #0057aa, #009adc);
    width: 16.66%;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .card-service {
        flex: 0 0 300px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .card-service {
        flex: 0 0 250px;
        height: 400px;
    }

    .card-title {
        font-size: 1.2rem;
    }
}
html{
  scroll-behavior: smooth;
}









