/* Estilo corporativo REYVAL S.A. */

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #003366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}

header img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  margin-right: 15px;
}

header h1 {
  font-size: 20px;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-left: auto;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

section {
  background-color: white;
  margin: 30px auto;
  padding: 30px;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
  color: #F99C1C;
  border-bottom: 2px solid #F15A24;
  padding-bottom: 5px;
}

form input,
form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

form button {
  background-color: #F99C1C;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #F15A24;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}


/* Mejora carrusel de clientes */
.swiper-container {
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
  box-sizing: border-box;
}
.swiper-wrapper {
  display: flex;
  transition-timing-function: ease-in-out;
}
.swiper-slide {
  flex-shrink: 0;
  text-align: center;
}
.swiper-slide img {
  max-width: 120px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

/* Ajustes para header en una sola línea */
.logo-titulo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-titulo img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
}

.logo-titulo h1 {
  font-size: 20px;
  margin: 0;
}