/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafafa;
  color: #111;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  background-color: #0f4c75;
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgb(15 76 117 / 0.4);
}

nav {
    background-color: #fff;
    padding: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    padding: 10px;
    background: linear-gradient(to right, #ff6666, #ff3333);
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #cc0000;
}

.container {
  max-width: 90%;
  margin: 2rem auto 3rem;
  padding: 0 1rem;
  width: 100%;
}

.reporte-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.reporte-card h2 {
  color: #0f4c75;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.reporte-card p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.reporte-card ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  color: #222;
  list-style-type: disc;
}

.reporte-card ul li {
  margin-bottom: 0.5rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b33;
  background: #fee;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #fbb;
}

button#toggleMoreInfo {
  background-color: #3282b8;
  color: white;
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button#toggleMoreInfo:hover,
button#toggleMoreInfo:focus {
  background-color: #0f4c75;
  outline: none;
}

.hidden {
  display: none;
}

.image-container {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0 1.5rem;
    text-align: center;
  }
  
  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  

footer {
    background: linear-gradient(to right, #ff6666, #ff3333);
    color: #fff;
    text-align: center;
    padding: 1.1em 0;
    position: fixed;
    bottom: 0;
    font-size: 1.1rem;
    width: 100%;
}


/* Responsive */
@media (max-width: 600px) {
  .reporte-card {
    padding: 1rem 1.2rem;
  }

  .reporte-card h2 {
    font-size: 1.4rem;
  }

  button#toggleMoreInfo {
    width: 100%;
  }
}
