body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #333;
}
.hero {
  position: relative;
  height: 100vh; /* Ocupa toda la pantalla */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 0;
}

/* VIDEO DE FONDO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantiene el video cubriendo todo sin deformarse */
  z-index: 0;
}

/* CAPA OSCURA (para mejorar legibilidad del texto) */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Ajusta opacidad según necesidad */
  z-index: 1;
}

/* TEXTO SOBRE EL VIDEO */
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 3rem; /* Más grande */
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.btn {
  background-color: #1d4ed8; 
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #0201fb;
}

.header {
  background: #0201fb;
  color: #fff;
  min-height: 200px; /* prueba 80px, 100px, 120px */
  display: flex;
  align-items: center; /* centra verticalmente */
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
.container img.logo {
  max-height: none !important;
  max-width: none !important;
}

.logo {
  width: 100px !important;  /* cámbialo a 220px, 250px, etc. */
  height: auto !important;
}

.nav a {
  color: white;
  margin: 10 80px;
  text-decoration: none;
}

.btn {
  background: #0201fb;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
.services {
  text-align: center;
  padding: 60px 20px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-card {
  background: #ffffff;
  border-radius:5px;
  padding: 20px;
  box-shadow: 0 4px 1px rgba(0,0,0,0.1);
}
.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.why-us {
  background: #f0f4f8;
  text-align: center;
  padding: 60px 20px;
}
.reasons div {
  margin: 10px 0;
  font-size: 1.1em;
}
.contact {
  padding: 60px 20px;
}
.contact-form {
  display: grid;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-info {
  text-align: center;
  margin-top: 20px;
}
.footer {
  background: #0D3B66;
  color: white;
  text-align: center;
  padding: 20px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  padding: 15px;
  text-decoration: none;
}
nav img.logo {
  height: 64px; /* O un valor que te guste que se ajuste a la nav */
  width: auto !important;
  padding: 8px 0;
}
