@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
/* AZUL #30AADA
VERDE #97BF10 */

body{
    font-family: 'Open Sans', sans-serif;
}

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

/* header {
    height: auto;
    width: 100%;
    /* background-color: #281e4c; */
    /* background-image: url("../img/background_nave.png");
    background-size: 100% 120vh; */
    /* background-image: linear-gradient(to right bottom, #1f456b, #204870, #224b75, #234f7a, #24527f); */
/*     
} */ 

header {
    width: 100%;
    min-height: 100vh; /* Ocupa al menos el 100% de la altura de la pantalla */
    
    /* Imagen con un overlay oscuro sutil para que el texto resalte */
    background-image: url("../img/background_nave.png");
    
    /* AJUSTES DE PROPORCIÓN */
    background-size: cover;
    background-position: left; /* Empuja la imagen para que lo de la derecha sea lo prioritario */
    background-repeat: no-repeat;
    background-attachment: fixed; /* efecto parallax */
    
}

/* ---------------------------------------------------------------HEADER CONTAINER-------------------------------------- */

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100vh;
    margin: auto;
    color: white;
    overflow: hidden;
}

.header-container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    color: #90BF10;
    overflow: hidden;
    padding: 30px;
}

.header-container .green {
    color: #97BF10;
}

.header-container .header-text {
    width: 50%;
    transform: translateY(0);
    opacity: 1;
    animation: fadeIn2 1s ease-out;
}

.header-container h1 {
    font-size: 60px;
}

.header-container h2 {
    color: #30AADA;
}

.header-text > a {
    display: inline-block;
    color: #30AADA;
    border: 1px solid #30AADA;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 300;
    margin-top: 20px;
    padding: 5px 2px;
    width: 120px;
    text-align: center;
}

.header-container .header-image {
    width: 50%;
}

.header-image img {
    transform: translate(0);
    opacity: 1;
    width: 100%;
    -webkit-animation: bounce-down 1.6s linear infinite;
    animation: bounce-down 1.6s linear infinite, fadeIn1 1s ease-out;
}

.header-container .header-image-2 {
    width: 50%;
    display: flex;
    justify-content: center;
}

.header-image-2 img {
    transform: translate(0);
    opacity: 1;
    animation: fadeIn1 1s ease-out;
    width: 48%;
}

@-webkit-keyframes bounce-down {
    25% {
         -webkit-transform: translateY(-4px);
    }
    50%, 100% {
         -webkit-transform: translateY(0);
    }
    75% {
         -webkit-transform: translateY(4px);
    }
}

@keyframes bounce-down {
     25% {
          transform: translateY(-4px);
     }
     50%, 100% {
          transform: translateY(0);
     }
     75% {
          transform: translateY(4px);
     }
    }

@keyframes fadeIn1 {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeIn2 {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
}

nav{
    height: 80px;
    background-color: #211b41; 
    /*background-image: linear-gradient(to top, #1c3753, #1c3a58, #1c3c5e, #1c3f63, #1c4269);*/
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.60);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav img{
    width: 150px;
    position: absolute;
    top: 17px;
    left: 12%;
}

nav ul{
    float: right;
    margin-right: 25px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 15px;
}

nav ul li a{
    position: relative;
    color: white;
    font-size: 18px;
    padding: 5px 0;
    text-transform: uppercase;
}

nav ul li a:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #30AADA;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s linear;
}

nav ul li a:hover:before{
    transform: scaleX(1);
    transform-origin: left;
}

.active {
    color: #97BF10;
}

label #btn,
label #cancel{
    color: white;
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

/* DROPDOWN START */

.container-municipality {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 0;
}

.container-municipality h4 {
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
}

.select-box {
    display: flex;
    width: 300px;
    flex-direction: column;
}


.select-box select {
    display: block;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    background-color: transparent;
    color: #97BF10;
    border: 1px solid;
    border-color: #97BF10;
    border-radius: 10px;
    padding: 5px 10px;
    transition: all 0.3s;
}

.select-box select:focus {
    outline: none;
}

.select-box select:hover{
    color: #30AADA;
    border-color: #30AADA; 
    cursor: pointer
}

/* DROPDOWN END */


/* ------------------------------------------------------PRICING CARD -----------------------------------------------*/

.price-filter {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.price-filter label {
    margin-right: 40px;
    width: 180px;
    border: 1px solid #97BF10;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 20px;
    color: #97BF10;
    transition: all 0.3s;
}

.price-filter label:hover {
    color: #30AADA;
    transform: scale(1.07);
    border: 1px solid #30AADA;
    cursor: pointer;
}

.container{
	max-width: 1170px;
	margin:auto;
}

ul{
	list-style: none;
}
.row{
	display: flex;
	flex-wrap: wrap;
    justify-content: center; /* ¡Esta es la magia que centra las tarjetas! */
    margin-top: 15px;

}
.pricing{
	min-height: 100vh;
	/* padding: 30px 0; */
	--color-1: #97bf10; 
	--color-2: #D4175D; 
	--color-3: #F5C422;
	--color-4: #32BA63;
	--color-5: #2d73b1; 
}

.pricing .pricing-table{
	background-color: #FFFFFF;
	width: calc((100% / 3) - 30px);
	margin:15px 15px;
	border-radius: 10px;
	overflow: hidden;
    transition: all 0.3s ease;
}

.pricing .pricing-table:hover {
    transform: translateY(-15px); /* Mueve la tarjeta 15px hacia arriba */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Crea una sombra suave y profunda */
    cursor: pointer; /* Cambia el cursor a una 'manita' para invitar al clic */
}

.pricing .pricing-table-header{
    position: relative;
	padding: 15px 30px;
}
.pricing .style-1 .pricing-table-body ul li i.fa-check,
.pricing .style-1 .pricing-table-footer a,
.pricing .style-1 .pricing-table-header{
   background: var(--color-1);
}
.pricing .style-2 .pricing-table-body ul li i.fa-check,
.pricing .style-2 .pricing-table-footer a,
.pricing .style-2 .pricing-table-header{
   background: var(--color-2);
}
.pricing .style-3 .pricing-table-body ul li i.fa-check,
.pricing .style-3 .pricing-table-footer a,
.pricing .style-3 .pricing-table-header{
   background: var(--color-3);
}
.pricing .style-4 .pricing-table-body ul li i.fa-check,
.pricing .style-4 .pricing-table-footer a,
.pricing .style-4 .pricing-table-header{
   background: var(--color-4);
}
.pricing .style-5 .pricing-table-body ul li i.fa-check,
.pricing .style-5 .pricing-table-footer a,
.pricing .style-5 .pricing-table-header{
   background: var(--color-5);
}
.pricing .pricing-table-header h3{
	font-size: 30px;
	color: #ffffff;
	text-transform: capitalize;
	font-weight: 600;
	text-align: center;
}
.pricing .pricing-table-header h4{
	font-size: 20px;
	color: #ffffff;
	/* text-transform: capitalize; */
	font-weight: 400;
	text-align: center;
}
.pricing .pricing-table-price{
	padding: 40px 0;
	display: flex;
}
.pricing .price-b1-w,
.pricing .price-b2-w,
.pricing .price-b3-w{
	display: flex;
	padding: 0;
	justify-content: center;
	width: 100%;
	flex-shrink: 0;
    display: none;
	transition: all 0.5s ease;
}

.pricing .price-p1-fo,
.pricing .price-p2-fo,
.pricing .price-p3-fo,
.pricing .price-p4-fo{
	display: flex;
	padding: 0;
	justify-content: center;
	width: 100%;
	flex-shrink: 0;
    display: none;
	transition: all 0.5s ease;
}

.pricing .price-b1-w,
.pricing .price-b2-w{
    display: none;
}

.pricing .pricing-table-price .currency{
	font-size: 25px;
	color: #555555;
	font-weight: 700;
	line-height: 1;
}
.pricing .pricing-table-price .amount{
	font-size: 85px;
	color: #555555;
	font-weight: 700;
	line-height: 0.8;
}

.pricing .pricing-table-body{
	padding:0 30px;
}

.pricing .pricing-table-body .amount{
	font-size: 25px;
	color: #555555;
	font-weight: 700;
	line-height: 1;
}

.pricing .pricing-table-body ul li{
	font-weight: 300;
	color: #777777;
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
}

.pricing .features-b1-w,
.pricing .features-b2-w,
.pricing .features-b3-w{
	display: none;
}

.pricing .features-p1-fo,
.pricing .features-p2-fo,
.pricing .features-p3-fo,
.pricing .features-p4-fo{
	display: none;
}

@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.pricing .pricing-table-body ul li:last-child{
	margin-bottom: 0;
}
.pricing .pricing-table-body ul li i{
	display: flex;
	height: 20px;
	width: 20px;
	background-color: #bbbbbb;
	color: #ffffff;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 13px;
	position: absolute;
	left:0;
	top:3px;
}
.pricing .pricing-table-footer{
	padding: 30px;
	text-align: center;
}
.pricing .pricing-table-footer a{
	display: inline-block;
	padding: 12px 35px;
	color: #ffffff;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 10px;
	transition: box-shadow 0.3s ease;
}
.pricing .pricing-table-footer a:hover{
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* ------------------------------------------------SERVICES----------------------------------------------------- */

.container-2{
    display:flex;
	padding: 20px;
    width: 90%;
    justify-content: center;
}

/* .container-2 h3{
    font-size: 30px;
    font-weight: 600;
    color: #FFFFFF;
}

.container-2 h4{
    font-size: 25px;
    font-weight: 400;
    color: #FFFFFF;
}

.container-2 p {
    color:#90BF10;
} */

.container-text{
    width: 50%;
}

.services-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
}

.card-service {
    background-color: #F2F2F2;
    width: 30%;
    border-radius: 3px;
    padding: 20px 10px;
    margin-top: 40px;
}

.card-service i {
    display: block;
    font-size: 60px;
    color: #97BF10;
    margin-bottom: 15px;
}

.card-service h4 {
    margin-bottom: 10px;
}

.card-service p {
    font-weight: 300;
    margin-bottom: 10px;
    color: #585858;
}

.header-container-2 h3{
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
}

.advertisement {
    color: #97BF10;
    margin-top: 30px;
    font-style: italic;
}

.advertisement a:visited{
    -webkit-text-decoration:none;
    -webkit-color: #97BF10;
    -webkit-font-style: italic;
    text-decoration:none;
    color: #97BF10;
    font-style: italic;
}

.advertisement a:hover{
    -webkit-text-decoration:none;
    -webkit-background-color: rgba(150, 191, 16, 0.137);
    text-decoration:none;
    background-color: rgba(150, 191, 16, 0.137);
}
/*----------------------------------- CARD DOCUMENT-----------------------------------------------------------*/

.card-document {
    background-color: #211B41B6;
    border: 2px solid #30AADA;
    width: 30%;
    border-radius: 15px;
    padding: 20px 10px;
    margin-top: 40px;
    transition: all ease 300ms;
}

.card-document:hover{
    border: 2px solid #90BF10;
}

.card-document i {
    display: block;
    font-size: 50px;
    color: #30AADA;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all ease 300ms;
}

.card-document i:hover {
    color: #90BF10;
    transform: scale(1.25);
}

.card-document h4 {
    margin-bottom: 10px;
    color: #30AADA;
}


.card-document p {
    font-weight: 300;
    margin-bottom: 10px;
    color: #30AADA;
}

.card-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #FFF;
}

.card-p {
    font-size: 1.2rem;
    color: #FFF;
}
/* -------------------------------ABOUT SERVICES--------------------------------------------------------------------- */

/* .service {
    padding: 80px 0;
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: auto;
    flex-wrap: wrap;
    
}

.service-image-2 {
    width: 50%;
} */

/* --- DISEÑO BASE (MÓVIL: UNO SOBRE OTRO) --- */
.service {
    display: flex;
    flex-direction: column; /* Apilados por defecto */
    gap: 0;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-coverage {
    background: #211B41B6;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%; /* Ocupa todo el ancho en móvil */
}

.service-image-2 {
    width: 100%;
    height: 300px; /* Altura fija para el mapa en móvil */
    border-radius: 15px;
    overflow: hidden;
    border-top: none;
}

#map1 {
    width: 100%;
    height: 100%;
}

/* --- DISEÑO ESCRITORIO (LADO A LADO) --- */
@media (min-width: 768px) {
    .service {
        flex-direction: row; /* Se ponen uno al lado del otro */
        align-items: stretch; /* Se igualan en altura */
        padding: 50px 5%;
    }

    .card-coverage {
        flex: 1;
        border-radius: 0 15px 15px 0; /* Redondeado solo izquierda */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-image-2 {
        flex: 1;
        height: auto; /* Deja que stretch decida la altura */
        min-height: 450px; 
        border-radius: 15px 0 0 15px; /* Redondeado solo derecha */
        border-top: 1px solid #eee;
        border-left: none;
    }
}

.content-service {
    flex: 1;
    min-width: 300px;
}

.service-image-2 img {
    width: 100%;
    height: 100%;
    vertical-align: top;
}

.service .content-service ul li {
    color: #FFFFFF;
    list-style: none;
    border-bottom: 4px solid #30AADA;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* .content-service {
    width: 50%;
    padding-left: 30px;
} */

.content-service h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #FFF;
}

.content-service p {
    font-size: 1.2rem;
    color: #FFF;

}

.content-service .advertisement {
    font-size: 1rem;
    color: #90BF10;
    font-style: italic;
    margin-top: 10px;
}

.content-service ul {
    padding-left: 10px;
    width: 60%;
}

.content-service i:hover{
    color: #90BF10;
    cursor: pointer;
}

.content-service input{
    background-color: rgba(48, 170, 218, 0.205);
    border: 1px solid #30AADA;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: #FFF;
    padding: 5px;
    margin: 5px 0;
}

.content-service input::placeholder{
    color: #FFF;
}


/* ----------------------------------------------GALLERY ------------------------------------------------------*/

.gallery-article {
    margin-top: 40px;
    display: flex;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    width: 32%;
    margin-bottom: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}

.gallery-image img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    vertical-align: top;
    transform: scale(1);
    transition: transform 0.5s;
}

.gallery-image img:hover{
    transform: scale(1.3);
}

.gallery-hover {
    position: absolute;
    top: 0;
    background-color: rgba(48, 170, 218, 0.70);
    width: 100%;
    height: 100%;
    transform: translate(100%, -100%);
    transition: transform 0.5s;
}

.gallery-hover p {
    width: 95%;
    margin: 10px auto;
    color: white;
    font-weight: 300;
    text-align: justify;
}

.gallery-image:hover .gallery-hover{
    transform: translate(0);
}

/*------------------------------------------ MAP --------------------------------------------------------------*/

#map{
	height: 100%;
}

/* #map1{
	height: 100%;
    border-radius: 15px;
    border: 2px solid #30AADA;
} */


/* ---------------------------------MODAL POPUP ------------------------------*/

iframe {
    width: 100%;
    height: 350px;
}

.flex {

    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    overflow: auto;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.450);
}

.content-modal {
    position: relative;
    background-color: #F2F2F2;
    margin: auto;
    width: 35%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    animation-name: modal;
    animation-duration: 1.5s;
}

@keyframes modal {
    from{top:-330px; opacity: 0;}
    to{top: 0; opacity: 1;}
}

.close {
    color: white;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.close:hover {
    color: #585858;
}

.modal-header, .modal-footer {
    padding: 8px 16px;
    background-color: #97BF10;
    color: white;
}

.modal-header h2 {
    font-size: 20px;
    margin: 0;
}

.modal-footer h3 {
    font-size: 15px;
    text-align: center;
    margin: 0;
}

.modal-body {
    padding: 20px 16px; 
}

/* ------------------------------ABOUT-------------------------------------*/

.wrapper{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}
.about-text{
    background-color: #322964;
    /* background-image: linear-gradient(to top, #1c3753, #1c3a58, #1c3c5e, #1c3f63, #1c4269); */
    max-width: 1000px;
    margin: 0 32px;
    padding: 16px;
    box-shadow: 5px 5px 12px 2px rgb(0 0 0 / 80%);
}
.title{
    text-align: center;
    margin: 15px 0;
}
.title h2{
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 30px;
}

.title h2 span.green{
    color: #90BF10;
    font-weight: 600;
}

.title h2 span.blue{
    color: #30AADA;
    font-weight: 600;
}

h3 span.green{
    color: #90BF10;
    font-weight: 600;
}

h3 span.blue{
    color: #30AADA;
    font-weight: 600;
}

.title h3{
    text-transform: uppercase;
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 200;
    position: relative;
    margin: 10px 0;
    text-align: center;
    letter-spacing: 1px;
}

.content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 16px;
}
.client-thumbnail img{
    width: 100%;
}
.client-thumbnail{
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    border-radius: 50%;
}
.clients-tabs{
    margin-bottom: 24px;
}
.client-intro .client-name{
    color: #FFFFFF;
}
.client-intro .client-designation{
    font-size: 12px;
    color: #b1b1b1;
}
.client-intro .client-description{
    display: none;
}
.client-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 12px 0;
    padding: 12px;
    border: 1px solid #30AADA;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.client-item:first-child{
    margin-top: 0;
}
.client-item:last-child{
    margin-bottom: 0;
}
.client-item:hover{
    background-color: rgba(48, 170, 218, 0.205);
}
.client-item:hover .client-intro *{
    color: #90BF10;
}
.client-item:active{
    transform: translateY(3px);
}
.client-item.active{
    background-color: rgba(48, 170, 218, 0.205);
}
.client-item.active .client-intro *{
    color: #90BF10;
}

.show-img img{
    border-radius: 2px;
    height: 280px;
}
.show-text > div{
    padding: 10px 0;
}
.show-text .show-name{
    font-size: 20px;
    color: #FFFFFF;
}
.show-text .show-designation{
    color: #FFFFFF;
    margin: 5px 0;
}
.show-text .show-description{
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.4;
    text-align: justify;
}
.show-text a{
    background-color: var(--green);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    display: inline-block;
    margin-top: 8px;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
}
.show-text a:hover{
    background-color: #18a040;
}

/* ESTILO GENERAL NOSOTROS */
.about-section {
  padding: 60px 20px;
}

.container-about {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.subtitle {
  font-size: 1.3rem;
  color: #FFF;
}

/* Historia, Misión y Visión */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.history-block {
  flex: 1 1 500px;
  background: #211B41B6;
  color: #30AADA;
  line-height: 1.6;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-left: 5px solid #0056b3; /* Color de acento */
}

.core-values {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  background: #211B41B6;
  color: #30AADA;
  line-height: 1.6;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-left: 5px solid #0056b3; /* Color de acento */
}

.history-block h3, .value-card h3 {
  margin-top: 0;
  color: #90BF10;
}

.history-block img {
    width: 100%;          /* Controla el ancho de la imagen */
    height: auto;
    object-fit: cover;   /* Evita que la foto se deforme */

}

/* Galería Grid */
.gallery-section h3 {
  text-align: center;
  font-size: 2.2rem;
  color: #FFF;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Modal (Lightbox) */
.modal-about {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.8); 
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {transform: scale(0.8)} 
  to {transform: scale(1)}
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #bbb;
}

/*------------------------------------------FOOTER-----------------------------*/

footer{
    background-color: #211b41;
    /*background-image: linear-gradient(to bottom, #1c3753, #1c3a58, #1c3c5e, #1c3f63, #1c4269);*/
    padding: 30px 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin: auto;
}

footer h6{
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 300;
}

footer p {
    margin-bottom: 10px;
    color:#fff;
    font-style: italic;
}

footer p span{
    margin-bottom: 10px;
    color:#fff;
    font-style: normal;
}

.footer-contact {
    width: 27%;
    margin-bottom: 20px;
}

.footer-contact i {
    font-size: 20px;
    color: #97BF10;
    margin-right: 10px;
}

.footer-contact .icon {
    font-size: 15px;
    color:white;
    padding: 14px;
    background: #30AADA;
    width: 15px;
    height: 15px;
    text-align: center;
    border-radius: 100%;
    margin: 10px 10px 0 0;
    cursor:pointer;
}

.footer-contact .icon:hover {
    background: #97BF10;
}

.footer-logo{
    width: 27%;
    vertical-align: top;
}

.footer-logo img {
    width: 100%;
    object-fit: cover;
}

/* ---------------------------------RESPONSIVE ----------------------------*/

@media(max-width: 991px){
	.pricing .pricing-table{
		width: calc(50% - 30px);
		margin-bottom: 30px;
	}
}
@media(max-width: 767px){

    header {
    background-image: url("../img/background_nave.png");
    background-size: 300% 100%;
    }
	.pricing .pricing-table{
		width: calc(100% - 50px);
	}

    .pricing .pricing-table-body .features-b1-w,
    .pricing .pricing-table-body .features-b2-w,
    .pricing .pricing-table-body .features-s1-w,
    .pricing .pricing-table-body .features-s2-w{
        /* width: 100%; */
        background-image: none;
        background-color: transparent;
        text-align: left;
        position: static;
        height: auto;
    }

    .pricing .pricing-table-body .features-p1-fo,
    .pricing .pricing-table-body .features-p2-fo,
    .pricing .pricing-table-body .features-p3-fo,
    .pricing .pricing-table-body .features-p4-fo{
        /* width: 100%; */
        background-image: none;
        background-color: transparent;
        text-align: left;
        position: static;
        height: auto;
    }
}


@media screen and (max-width:900px){

    /* HEADER */

    .header-container h1 {
        font-size: 40px;
    }

    /* PRICING */

    .price-filter {
        align-items: center;
        flex-direction: column;
    }

    .price-filter label {
        width: 60%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    /* SERVICES */

    .services-container {
        justify-content: space-between;
    }

    .card-document {
        width: 45%;
        margin-right: 0px;
    }

    /* FOOTER */

    footer h6 {
        font-size: 22px;
    }

    .footer-contact .icon {
        font-size: 15px;
        padding: 10px;
        width: 15px;
        height: 15px;
    }


}


@media screen and (max-width:800px){
    /* HEADER */

    header {
        height: auto;
    }

    .header-container {
        flex-wrap: wrap;
        height: 900px;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .header-container-2 {
        width: auto;
    }

    .header-container .header-text {
        width: 80%;
        margin-bottom: 100px;
        text-align: center;
    }

    .header-container h1 {
        font-size: 40px;
    }
    .header-container h2 {
        font-size: 20px;
    }

    .header-container .header-image {
        width: 80%;
    }

    
      /* PRICING */

    .price-filter {
        align-items: center;
        flex-direction: column;
    }

    .price-filter label {
        width: 60%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    
    /* SERVICES */

    .service{
        flex-wrap: wrap;
        flex-direction: column-reverse;
        padding: 0;
    }

    .container-2{
        width: 80%;
    }

    .services-container {
        justify-content: center;
        align-items: center;
    }

    .card-document {
        width: 70%;
        margin-right: 0px;
    }

     /* ABOUT SERVICES */

     .service-image-1 {
        width: 80%;
        margin-top: 40px;
    }

    .service-image-2 {
        width: 80%;
        margin-bottom: 40px;
    }

    #map{
        height: 500px;
    }

    #map1{
        height: 500px;
    }

    .content-service {
        width: 100%;
    }

    .service .content-service ul {
        /* width: 100%; */
        background-image: none;
        background-color: transparent;
        text-align: left;
        padding-left: 0;
        margin-bottom: 40px;
        position: static;
        height: auto;
    }

     /* FOOTER */

     .footer-contact {
        width: 40%;
    }

    .footer-logo {
        width: 40%;
    }

     /* MODAL */

     .content-modal {
        width: auto;
    }

    iframe {
        height: 250px;
    }



}

@media screen and (max-width:600px) {

    /* */ 

    h3 {
        font-size: 25px;
    }

    /* HEADER */

    .header-container {
        height: 700px;
    }

    .header-container-2 {
        width: auto;
    }

    .header-container .header-text {
        width: 90%;
    }

    .header-container h1 {
        font-size: 25px;
    }

    .header-container h2 {
        font-size: 20px;
        font-weight: 400;
    }

    .header-container .header-image {
        width: 90%;
    }

    .price-filter label {
        width: 80%;
    }
    
    .container-municipality h4 {
        font-size: 22px;
    }

    /* SERVICES */

    .card-document {
        width: 100%;
        margin-right: 0px;
    }

    
    /* ABOUT SERVICES */

    .service-image-1 {
        width: 100%;
        margin-top: 40px;
    }

    .service-image-2 {
        width: 100%;
        margin-bottom: 40px;
    }

    #map{
        height: 300px;
    }

    #map1{
        height: 300px;
    }
    

    .content-service {
        width: 100%;
        padding-left: 0px;
        text-align: center;
    }

    .service .content-service ul {
        width: 100%;
        background-image: none;
        background-color: transparent;
        text-align: left;
        position: static;
        height: auto;
    }

    .content-service h3 {
        font-size: 25px;
    }

    /* FOOTER */

    footer {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-contact .icon {
        font-size: 15px;
        padding: 14px;
        width: 15px;
        height: 15px;
    }

    .footer-contact{
        width: 100%;
    }

    .footer-logo{
        width: 70%;
        margin-top: 30px;
    }

}


@media (max-width: 1118px){
    nav img{
        left: 8%;
    }
}

@media (max-width: 944px){
    nav img{
        left: 6%;
        top: 20px;
        width: 130px;
    }

    nav ul li a{
        font-size: 17px;
    }
}

@media (max-width: 860px){
   label #btn{
    display: block;
   }

   ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #211b41;
    /*background-image: linear-gradient(to top, #1c3753, #1c3a58, #1c3c5e, #1c3f63, #1c4269);*/
    top: 80px;
    left: -100%;
    text-align: center;
    z-index: 20;
    transition: all 0.5s;
   }

   nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
   }

    nav ul li a{
        font-size: 20px;
    }

    #check:checked ~ ul{
        left: 0;
    }

    #check:checked ~ label #btn{
        display: none;
    }
    #check:checked ~ label #cancel{
        display: block;
    }
}

@media(min-width: 768px){
    .about-text{
        padding: 20px 40px;
    }
    .content{
        flex-direction: row;
    }
    .clients-list{
        width: 30%;
    }
    .show-info{
        width: calc(70% - 30px);
        margin-left: 30px;
    }
    .clients-tabs{
        margin-bottom: 0px;
    }
    .show-text .show-description{
        margin: 0;
    }
}

@media(min-width: 992px){
    .show-info{
        display: flex;
        align-items: flex-start;
    }
    .show-img{
        margin-right: 30px;
        height: 280px;
    }
    .show-img img{
        width: 280px;
        object-fit: cover;
        height: 280px;
    }
    .show-text > div{
        padding: 0;
    }
}