/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 80px;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: -1;
}

.logo img {
  height: 100%; /* Ajustar al tamaño del header */
  max-height: 60px; /* Evitar que el logo sea más grande que el header */
  width: auto; /* Mantener la proporción */
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.menu ul li a {
    text-decoration: none;
    color: #063970;
    font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Banner Section */
.banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

#banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.5rem;
}

/* Sections */
.section {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  color: #063970;
  margin-bottom: 1rem;
}

.values-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background-color: #2596be;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #063970;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: #063970;
  color: #fff;
}
