/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR: altura fija y contención del logo */
.navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  height: 78px;            /* altura fija del header */
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}

/* Contenedor interno: altura 100% para alinear elementos */
.nav-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo wrapper: mantén el flujo normal (no absolute) */
.logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 4px 8px; /* espacio interior si querés */
}

/* Logo contenido dentro del header: ocupa casi toda la altura sin salirse */
.logo-img {
  height: 80px;
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;   /* ← Más a la izquierda */
  z-index: 20;
  pointer-events: none;
}


/* Menú a la derecha */
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: auto;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 8px 6px;
  transition: color .18s ease, transform .12s ease;
}

.nav-links a:hover {
  color: #0052cc;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  /* si tu nav no es fixed, no hace falta padding-top.
     si lo fijas, podés usar: padding-top: 78px; */
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.recupera {
  background: linear-gradient(to left, #808081, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 48px;
  margin-bottom: 8px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 16px;
}

.btn {
  padding: 9px 25px;
  background: rgba(1, 144, 180, 0.644);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

/* SECTIONS */
.section {
  width: 92%;
  max-width: 1000px;
  margin: 48px auto;
  text-align: center;
  color: #222;
  background: transparent;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.card {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  color: #222;
}

/* CTA */
.cta {
  background: #01132e;
  padding: 40px 20px;
  text-align: center;
  color: white;
  margin-top: 36px;
}

.btn-dark {
  padding: 12px 30px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-container { width: 96%; gap: 10px; }
  .logo-img { max-height: 60px; height: calc(100% - 10px); }
  .recupera { font-size: 40px; }
  .cards { flex-direction: column; gap: 12px; align-items: center; }
  .card { width: 90%; }
}

@media (max-width: 480px) {
  .navbar { height: 66px; }
  .logo-img { max-height: 46px; height: calc(100% - 6px); }
  .nav-links { display: none; } /* podés reemplazar por un menú hamburguesa */
  .recupera { font-size: 28px; }
}
h3 {
    color: #04285f;
}