/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0a3d62;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #0a3d62;
}

.btn-cta {
  background-color: #0a3d62;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-cta:hover {
  background-color: #05426a;
}

/* Hero */
.hero {
  background-color: #f5f6fa;
  text-align: center;
  padding: 100px 20px 60px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #0a3d62;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-hero {
  background-color: #0a3d62;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}

.btn-hero:hover {
  background-color: #05426a;
}

/* Beneficios */
.beneficios {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.beneficios h2 {
  color: #0a3d62;
  margin-bottom: 50px;
  font-size: 2rem;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.beneficio h3 {
  color: #0a3d62;
  margin-bottom: 15px;
}

.beneficio p {
  color: #555;
}

/* Proceso */
.proceso {
  padding: 80px 20px;
  background-color: #f5f6fa;
  text-align: center;
}

.proceso h2 {
  color: #0a3d62;
  margin-bottom: 50px;
  font-size: 2rem;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.paso h3 {
  color: #0a3d62;
  margin-bottom: 10px;
}

/* Servicios */
.servicios {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.servicios h2 {
  color: #0a3d62;
  margin-bottom: 50px;
  font-size: 2rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.servicio h3 {
  color: #0a3d62;
  margin-bottom: 15px;
}

.servicio p {
  color: #555;
}

/* Contacto */
.contacto {
  padding: 80px 20px;
  background-color: #f5f6fa;
  text-align: center;
}

.contacto h2 {
  color: #0a3d62;
  margin-bottom: 20px;
  font-size: 2rem;
}

.contacto form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto input, .contacto textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contacto button {
  background-color: #0a3d62;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contacto button:hover {
  background-color: #05426a;
}

/* Footer */
footer {
  background-color: #0a3d62;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

footer nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

footer nav ul li a {
  color: #fff;
  text-decoration: none;
}

footer nav ul li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==== Logo Ajuste ==== */
header img {
  height: 100px;           /* tamaño del logo */
  width: auto;            /* mantiene proporciones */
  object-fit: contain;    /* evita deformaciones */
  vertical-align: middle; /* alinea con el texto */
  transition: transform 0.2s ease; /* animación sutil */
}

header img:hover {
  transform: scale(1.2); /* efecto suave al pasar el mouse */
}
