/* Fuente moderna */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f0f4f8;
  color: #333;
}

/* Header */
header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}
header .logo img {
  height: 100px;
}
nav a {
  color: #333;
  margin: 0 15px; 
  text-decoration: none;
  font-weight: 600;
}
nav a:hover {
  color: #00b894;
}

/* Banner con gradiente y glassmorphism */
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(90deg, #ffffff 40%, #00b894 100%);
  color: #333;
}
.banner img {
  max-width: 35%;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.banner-text {
  max-width: 70%;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.6);
  padding: 30px;
  border-radius: 12px;
}
.banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.banner-text .highlight {
  color: #00b894;
  font-weight: bold;
}
.btn {
  display: inline-block;
  background-color: #019875;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background-color: #00b894;
}

/* Cajas de información */
.info-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 1000px;
}
.box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}
.box:hover {
  transform: translateY(-5px);
}

/* Sección Nosotros */
.nosotros {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nosotros img {
  max-width: 45%;
  border-radius: 12px;
}

.brand-main img,
.brand-partner img{
    height:75px;
    width:auto;
}
/* Servicios */
.servicios-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.servicio {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.servicio:hover {
  transform: translateY(-5px);
}

footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

 .servicios-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  background: linear-gradient(90deg, #ffffff 40%, #00b894 100%);
  color: #333;
}

.servicios-text {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.6);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.servicios-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00b894;
}

.servicios-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.servicio {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.servicio img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.servicio:hover {
  transform: translateY(-5px);
}

.highlight-title {
  font-size: 2.5rem;        /* igual que el h1 del banner */
  margin-bottom: 15px;
  color: #00b894;           /* mismo verde corporativo */
  font-weight: bold;
  text-align: center;
}

.servicios-banner {
  position: relative;
  padding: 60px;
  background: linear-gradient(90deg, #ffffff 40%, #00b894 100%);
  color: #333;
}

.logos{
    display:flex;
    align-items:center;
    gap:40px;
}

.logo-principal{
    height:180px;
}

.logo-secundario{
    height:100px;
}
.servicios-text {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.6);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

