/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Paralucent', sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #001f5b; /* dark blue */
  margin: 0 1rem;
  position: relative;
}

li {
  margin-bottom: 0.5rem;
}

.nav a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #001f5b;
  bottom: -4px;
  left: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo img {
  height: 60px; /* or whatever size looks good */
  width: auto;
}

.logo a {
  text-decoration: none;
  display: inline-block; /* treat the link like an image block */
}

.logo a:hover {
  text-decoration: none; /* still no underline on hover */
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-size: 4rem;
  font-style: italic;
}

.sobre-nosotros {
  padding: 4rem 2rem;
  text-align: center;
  background: white;
  scroll-margin-top: 80px; /* adjust based on your navbar height */
}

.sobre-nosotros h2 {
  color: #00aaff; /* light blue */
  margin-bottom: 1rem;
  font-size: 3rem;
}

.sobre-nosotros p {
  color: #666; /* gray text */
  font-size: 2rem;
  margin-bottom: 1rem; /* adds space below each paragraph */
}

.servicios {
  color: #00aaff; /* light blue */
  margin-bottom: 1rem;
  scroll-margin-top: -20px; /* adjust based on your navbar height */
  padding: 4rem 2rem; /* 👈 Add this */
}

.servicios h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.servicios p {
  color: #666; /* gray text */
  font-size: 2rem;
  margin-bottom: 1rem; /* adds space below each paragraph */
}

.servicios li {
  color: #666; /* gray text */
  font-size: 2rem;
  margin-left: 1rem;
}

.gray-bg {
  background: #eee;
}

.white-bg {
  background: white;
}

.lightblue-bg {
  background: #00aaff;
  color: white;
}

.servicio-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.servicio-container.reverse {
  flex-direction: row-reverse;
}

.servicio-container img {
  width: 50%;
}

.text {
  width: 50%;
}

.servicios.white-bg .servicio-container img {
  margin-left: -2rem;
}

.servicios.gray-bg .servicio-container p {
  margin-bottom: 2rem;
}

.images-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.images-row h2 {
  color: #00aaff; /* light blue */
  margin-bottom: 1rem;
  font-size: 3rem;
}

.images-row p {
  color: #666; /* gray text */
  font-size: 2rem;
  margin-bottom: 1rem; /* adds space below each paragraph */
}

.images-row img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.image-item {
  width: 30%;
}

.image-title {
  color: black;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.servicios.white-bg.center-images {
  text-align: center;
}

.contacto {
  padding: 4rem 2rem;
  scroll-margin-top: 80px; /* adjust based on your navbar height */
}

.contacto-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-text {
  width: 50%;
  color: black;
}

.contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  background-color: #001f5b;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
}

.large-image img {
  width: 100%;
  height: auto;
}

.footer {
  background: #001f5b;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

  