@charset "utf-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    background-image: url(""); /* Fondo con el logo */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0px;
	margin: 0px;
}
/*MENU*/
.menu-principal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  background-image: url("../img/dorado.jpg"); /* Corrige la ruta si el CSS está en /css/ */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px 30px;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.menu-principal a {
  color: black; /* o white si hay poco contraste */
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}


.menu-logo img {
  height: 60px;
}

.menu-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu-links li a {
  text-decoration: none;
  font-weight: bold;
  color: #000; /* Prueba con #fff si quieres blanco */
  transition: color 0.3s ease;
}

.menu-links li a:hover {
  color: white; /* O blanco si el texto es claro */
}

.menu-contacto {
  background-color: white;
  padding: 15px 15px;
  border-radius: 6px;
  font-weight: bold;
  color: #000;
  font-size: 16px;
}

.container {
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9); /* Blanco con transparencia */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 55px;
    margin: 20px 0;
}

h2 {
    font-size: 22px;
    color: #555;
}

#links {
    font-size: 22px;
    margin-top: 20px;
}
#muestras {
	color: red
}

p a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}

/* VIDEO */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Relación 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: auto;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* PDF */
.pdf-container {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
/* Footer */
.site-footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'Arial', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-captacion,
.footer-about,
.footer-links,
.footer-social {
  flex: 1 1 250px;
  margin: 10px;
}
.footer-captacion h4,
.footer-about h3,
.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons a {
  color: #bbb;
  margin-right: 10px;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1e90ff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9em;
  color: #aaa;
}


/* CONTACTO*/

form {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background-color: #333;
}

