body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  color: #1d2b50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.header {
  /* background-color: white; */
  background:linear-gradient(135deg, #2c3849 0%, #1f2a3d 100%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  height: 100px;
  vertical-align: middle;
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;

}


.logoMain {
  max-height: 300px;
  vertical-align: middle;
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;

}

.logo-mobile {
  display: none;
}
.logo-desktop {
  display: inline;
}


.icono {
  height: 50px;
  vertical-align: middle;
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;

}

.iconoWA {
  height: 100px;
  vertical-align: middle;
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;

}

.nav {
  float: right;
  margin-top: 20px;
}

.nav a {
  margin-left: 20px;
  /* color: #1d2b50; */
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(135deg, #2c3849 0%, #1f2a3d 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn-whatsapp-hero {
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-whatsapp-hero:hover {
  background-color: #1ebd57;
}

.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 14px 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 99;
  transition: background 0.3s;
}

.btn-whatsapp:hover {
  background-color: #1ebd57;
}


.about, .services {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.about h2, .services h2 {
  font-size: 2em;
  color: #1d2b50;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #1d2b50;
  font-size: 1.2em;
}

.service-card p {
  color: #555;
  font-size: 0.95em;
}



.testimonials {
  background-color: #1d2b50;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #1d2b50;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  font-style: italic;
  color: #444;
}

.testimonial-card2 {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  font-style: italic;
  color: #444;
  margin-right: 50px;
}

.testimonial-card h4 {
  margin-top: 15px;
  font-style: normal;
  color: #1d2b50;
}

.contact {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #1d2b50;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

form button {
  background-color: #1d2b50;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #3c4a68;
}


.footer {
  background-color: #1d2b50;
  color: white;
  padding: 40px 20px;
  font-size: 0.95em;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}


.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.glide__slide {
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.glide__slide p {
  font-style: italic;
  color: #333;
  margin: 15px 0;
}

.glide__slide h4 {
  color: #1d2b50;
}

.glide {
  margin-top: 40px;
}




 

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav {
    float: none;
    margin-top: 10px;
  }

  .nav a {
    display: inline-block;
    margin: 10px;
    font-size: 1em;
  }

  .logo {
    height: 70px;
    margin: 10px 0;
  }

  .logoMain {
  max-height: 150px;
  vertical-align: middle;
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;

  }
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: inline;
  }
}
 .testimonios-swiper {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #f5f7fa, #ffffff);
  padding: 30px;
  background-color: white;
}

.testimonios-swiper h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #004aad;
}

.testimonios-swiper ul {
  list-style: disc inside;
  font-size: 1.1em;
  color: #333;
  margin: 0;
  padding: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #004aad;
}

.swiper-pagination-bullet-active {
  background: #004aad;
}

.slideMargen{
  margin-left:10px;
}
/* Responsive */
@media (max-width: 768px) {
  .testimonios-swiper {
    padding: 20px;
    width:90%;
  }
  .testimonios-swiper h2 {
    font-size: 1.5em;
    margin-right:20%;
  }
  .testimonios-swiper ul {
    font-size: 1em;
  }
  .imgtesti{
      max-width:80%;
       margin-right:20%;
  }

  

      .btn-whatsapp {
        background-color: #ffffff00;
                left:85%;
        top:90%;
        width:0;
        height: 0;

      }

      .iconoWA {
        position:fixed!important;
        left:76%;
        top:86%;



}

}
