/* ====== ESTILO GENERAL ====== */

body {
  margin: 0;
  padding: 0;

  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  text-align: justify;

  background-image:
    url("../images/piel-calyptratus-nombre-deg.jpg"),
    url("../images/piel-calyptratus-nombre-cla.jpg");

  background-repeat:
    repeat-y,
    repeat;

  background-position:
    left top,
    left top;

  background-attachment:
    fixed,
    fixed;
}


/* ====== CONTENEDOR ====== */

.container {
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin: auto;

  padding: 20px;

  background: #ffffff;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}


/* ====== TITULOS ====== */

h1 {
  color: #2b4c2f;
  margin-bottom: 5px;
}

h2 {
  color: #2b4c2f;
  margin-top: 0;
}

h2 a {
  text-decoration: none;
  color: #2b4c2f;
}

h2 a:hover {
  text-decoration: underline;
}


/* ====== NAVEGACION ====== */

nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;

  display: flex;
  flex-wrap: wrap;
}

nav li {
  margin: 0 10px 10px 0;
}

nav a {
  text-decoration: none;
  background: #e9efe9;

  padding: 6px 10px;
  border-radius: 4px;

  color: #2b4c2f;
  font-weight: bold;
}

nav a:hover {
  background: #d7e2d7;
}

nav a.activo {
  background: #cfdccf;
  color: #1f3a22;
}


/* ====== SECCIONES ====== */

section {
  margin-bottom: 40px;
  padding-bottom: 20px;

  border-bottom: 1px solid #ddd;

  overflow: auto;
}


/* ====== FOTO A LA DERECHA ====== */

.foto-apartado {
  float: right;

  margin: 0 0 10px 20px;

  max-width: 220px;
  width: 100%;
  height: auto;

  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.9);
}


/* ====== AVISO ====== */

.aviso {
  background: #fff7d6;

  padding: 15px;
  border-left: 5px solid #e6c200;
}


/* ====== FOOTER ====== */

footer {
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}


/* ====== IMAGEN SUPERIOR IZQUIERDA ====== */

body::before {
  content: "";

  position: fixed;

  top: 0;
  left: 0;

  width: 320px;
  height: 260px;

  background: url("../images/calyptratus-cabeza-240sfmej.gif") no-repeat left top;
  background-size: contain;

  pointer-events: none;

  z-index: 0;
}


/* ====== MENU HAMBURGUESA ====== */

.menu-toggle {
  display: none;

  font-size: 26px;

  background: none;
  border: none;

  cursor: pointer;

  margin-bottom: 10px;
}



.text-center { text-align: center; }
.text-justify { text-align: justify; }
.img-left { float: left; margin: 15px; border: 0; }
.img-right { float: right; margin: 15px; border: 0; }
.img-gallery { margin: 10px; vertical-align: middle; border: 0; }
.clearfix::after { content: ""; clear: both; display: table; }
        
.marquee-moderno {
    overflow: hidden;
    white-space: nowrap;
    color: #908000;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin: 10px 0;
    border: 1px solid #eee;
    padding: 5px;
}
.marquee-moderno span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}
@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
.resaltado-premio {
    color: #509050;
    font-weight: bold;
    background-color: #f9f9f9;
    border: 2px solid #008080;
    padding: 20px;
    margin-top: 30px;
}
        
        
/* ====== MOVIL ====== */

@media (max-width:700px) {

  .foto-apartado {
    float: none;
    display: block;

    margin: 10px auto 15px auto;

    max-width: 100%;
  }

  nav ul {
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
  }

  nav.abierto {
    display: block;
  }

  body::before {
    display: none;
  }

}