/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */

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

/* Estilos para html y body */
html,
body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* Estilos para el elemento principal (main) */
main {
  padding-top: 6rem;
  line-height: 1.8;
}

main p,
.page-content p,
.que-encontraras p,
.contacto p {
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
  padding: .5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5rem 0;
  line-height: 1.9rem;
}

ul,
ol,
blockquote {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

/* ==========================================================================
   HEADER & MENU
   ========================================================================== */

header {
  width: 100%;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 92px;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.menu-icon span,
.menu-icon span::before,
.menu-icon span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

.menu-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span::before {
  top: -8px;
}

.menu-icon span::after {
  top: 8px;
}

.menu-container {
  display: flex;
  gap: 1.2rem;
}

.menu {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  flex-wrap: wrap;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
  padding: .4rem .6rem;
  transition: background .3s;
}

.menu a:hover {
  background: rgba(37, 37, 37, .2);
  border-radius: 4px;
  color: #efd232;
}

.menu a i {
  font-size: 1.2rem;
  transition: color .3s;
}

.menu a i:hover {
  color: #efd232;
}

@media (min-width: 769px) {
  .menu-container {
    height: 92px;
    display: flex;
    align-items: center;
  }

  .menu {
    height: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}

/* Selector de idioma */
.idioma-selector {
  position: relative;
}

.dropdown {
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #222;
  min-width: 120px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
  border-radius: 4px;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: .6rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
}

.dropdown-content a:hover {
  background: #333;
}

.dropdown-content a.activo {
  color: #efd232;
  font-weight: bold;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropbtn:focus + .dropdown-content {
  display: block;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #000;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: .85rem;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo img {
  height: 90px;
  margin-bottom: 1rem;
}

.footer-texto p {
  margin: .4rem 0;
  color: #aaa;
}

.footer-texto a {
  color: #fff;
  text-decoration: none;
  margin: 0 .4rem;
  transition: color .3s;
}

.footer-texto a:hover {
  color: #efd232;
}


/* ==========================================================================
   PAGE CONTENT (GENERIC)
   ========================================================================== */

.page-content {
  background: #fff;
  padding: 4rem 2rem;
  color: #000;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
}


/* ==========================================================================
   INDEX PAGE CONTENT
   ========================================================================== */

/* Banner & Niebla */
.fog {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 40vh;
  overflow: hidden;
}

.absolute-bg {
  position: absolute;
  inset: 0;
  background: url("../img/banner.webp") center/cover no-repeat;
  z-index: 0;
}

.fog-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.fog-img {
  position: absolute;
  width: 300%;
  height: 100%;
  z-index: 2;
}

.fog-img-first {
  background: url("../img/fog-1.webp") repeat-x center/contain;
  animation: marquee 30s linear infinite;
  opacity: .3;
}

.fog-img-second {
  background: url("../img/fog-2.webp") repeat-x center/contain;
  animation: marquee 20s linear infinite;
  opacity: .2;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-200vw, 0, 0);
  }
}

/* Biografía */
.biografia {
  background: #737373;
  padding: 4rem 2rem;
  color: #fff;
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.bio-img img {
  width: 270px;
  display: block;
}

.bio-text {
  flex: 2 1 400px;
}

.bio-text h2 {
  color: #efd232;
}

.bio-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ¿Qué encontrarás? */
.que-encontraras {
  background: #fff;
  padding: 6rem 2rem 0;
  position: relative;
}

.que-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.que-container h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 3rem;
}

.bloques {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.bloque {
  background: #fff;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 360px;
  position: relative;
  color: #000;
}

.bloque h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.bloque p {
  font-size: .8rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bloque a {
  font-size: .9rem;
  font-style: italic;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  transition: color .3s;
}

.bloque a:hover {
  color: #efd232;
}

.esquina-amarilla {
  position: relative;
  padding: 10px;
}

.esquina-amarilla::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-top: 4px solid #efd232;
  border-left: 4px solid #efd232;
}

.esquina-amarilla::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 4px solid #efd232;
  border-right: 4px solid #efd232;
}

/* Estilos para la imagen a ancho completo */
.imagen-full {
  position: relative;
  left: 50%;
  right: 50%;
  margin: 0 -50vw;
  width: 100vw;
  overflow: hidden;
}

.imagen-full img {
  width: 100%;
  display: block;
  padding-top: 50px;
}

.esquina-mono {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  transform: translate(20%, -4%);
  pointer-events: none;
  z-index: 3;
}

/* Frase destacada */
.frase-destacada {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #000;
}

.frase-destacada .frase-bg {
  display: block;
  width: 100%;
  height: auto;
}

.frase-destacada .frase-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  padding: 2rem;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.frase-destacada img {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .frase-destacada img {
    height: 400px !important;
    object-fit: cover;
  }
}

/* Sección contacto */
.contacto {
  background: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.formulario-y-imagen {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
}

.bloque-formulario {
  flex: 1 1 45%;
  max-width: 45vw;
  text-align: center;
}

.bloque-formulario h2 {
  font-size: 1.6rem;
  margin-bottom: .8rem;
  color: #000;
}

.bloque-formulario p {
  font-size: .9rem;
  margin-bottom: 1.2rem;
  color: #333;
}

.bloque-formulario form {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.bloque-formulario input,
.bloque-formulario textarea {
  padding: .6rem .9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.bloque-formulario button {
  background: #efd232;
  color: #000;
  border: none;
  padding: .6rem 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background .3s;
}

.bloque-formulario button:hover {
  background: #e6c800;
}

.damasippus-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50vw;
  max-width: 600px;
  pointer-events: none;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  font-size: .9rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
}

.cookie-banner a {
  color: #efd232;
  text-decoration: underline;
}

.cookie-banner button {
  background: #efd232;
  color: #000;
  border: none;
  padding: .5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background .3s;
}

.cookie-banner button:hover {
  background: #e6c200;
}

.boton-centrado a {
  text-align: center;
  margin: 0 auto;
}

.boton-centrado {
  text-align: center;
}

/* ==========================================================================
   OTHER STYLES (ABOUT, CURSOS, ETC.)
   ========================================================================== */

.bio-ampliada h3 {
  margin-top: 2.8rem;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.2rem;
}

.bio-ampliada ul {
  margin: 1rem 0 2rem;
  text-align: justify;
}

.seccion-cientifica {
  margin-top: 4rem;
  border-top: 1px solid #ccc;
  padding-top: 3rem;
  color: #000;
}

.seccion-cientifica h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.seccion-cientifica ul {
  list-style: none;
  text-align: center;
  padding-left: 0;
}

.seccion-cientifica ul li {
  margin: 0.5rem 0;
}

.seccion-cientifica a {
  font-weight: bold;
  text-decoration: none;
  transition: color .3s;
}

.seccion-cientifica a:hover {
  color: #efd232;
}

.foto-flotada {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.foto-flotada.right {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.foto-centrada {
  margin: 2rem auto;
  text-align: center;
  max-width: 100%;
}

.foto-centrada img {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 900px;
}

.foto-centrada figcaption {
  font-size: .85rem;
  color: #555;
  margin-top: .5rem;
  font-style: italic;
  line-height: 1.4;
}

.foto-centrada.ampliada {
  max-width: 500px;
}

figure.foto-flotada {
  margin: 1rem;
}

figure.foto-flotada figcaption {
  font-size: .85rem;
  color: #555;
  margin-top: .4rem;
  text-align: center;
  font-style: italic;
  line-height: 1.4;
}

.proximamente {
  display: inline-block;
  background: #efd232;
  color: #000;
  font-weight: bold;
  padding: .4rem .8rem;
  border-radius: 4px;
  font-size: .9rem;
}

.imagen-curso {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}

.boton-acceso {
  display: inline-block;
  background: #000 !important;
  color: #fff !important;
  font-weight: bold;
  padding: .5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  margin-top: .5rem;
  transition: color .3s;
}

.boton-acceso:hover {
  color: #efd232 !important;
}

.perfiles-cientificos {
  list-style: none;
  margin-top: 2rem;
  font-size: 1rem;
}

.doi {
  font-weight: bold;
  color: #efd232;
}

.publicaciones li {
  margin-bottom: 1rem;
}

/* Cursos/Expediciones grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.course {
  background: #fff;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(99, 99, 99, 0.2);
  transition: box-shadow 1s ease;
}

.course:hover {
  box-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}

.course h2 {
  margin-bottom: 1rem;
}

.course .imagen-curso {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.course p {
  flex-grow: 1;
}

.course .proximamente {
  margin-top: 1rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   BLOG SPECIFIC STYLES
   ========================================================================== */

.article-content {
  max-width: 900px;
}

/* Grid de entradas */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Tarjeta de cada post */
.post {
  background: #fff;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(99, 99, 99, 0.2);
  transition: box-shadow 0.3s ease;
  line-height: 1.3;
}

/* Esquinas amarillas decorativas en posts */
.post.esquina-amarilla::before,
.post.esquina-amarilla::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid #efd232;
}

.post.esquina-amarilla::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.post.esquina-amarilla::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Imagen miniatura del post */
.post-thumb {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Meta información del post */
.post-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Título del post */
.post h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Extracto del post */
.post-excerpt {
  flex-grow: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Enlace “Leer más” del post */
.read-more {
  align-self: flex-start;
  font-weight: bold;
  text-decoration: none;
  color: #efd232;
}

/* Hover sobre tarjeta del post */
.post:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
}

/* Paginación del blog */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination button {
  background: none;
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.pagination button.active {
  background: #efd232;
  border-color: #efd232;
}

.pagination button[disabled] {
  opacity: 0.5;
  cursor: default;
}

/* Responsive: una columna en móvil para el grid de posts */
@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .article-content figure {
    max-width: 100%;
  }
}

/* Buscador en Blog */
.blog-filters {
  margin: 1.5rem 0;
  text-align: right;
}

.blog-search {
  padding: 0.6rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  max-width: 300px;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.blog-search:focus {
  outline: none;
  border-color: #efd232;
}


/* ==========================================================================
   RESPONSIVE (MAX-WIDTH: 768PX)
   ========================================================================== */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .menu-icon {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
  }

  .menu-container {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    align-items: center;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: .5rem;
  }

  .menu li {
    width: 100%;
    text-align: center;
    margin: .4rem 0;
  }

  .menu li a {
    padding: 1rem 2rem;
    border-bottom: none;
  }

  .menu-toggle:checked ~ .menu-container {
    max-height: none;
    overflow: visible;
  }

  .menu-toggle:checked + .menu-icon span {
    background: transparent;
  }

  .menu-toggle:checked + .menu-icon span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle:checked + .menu-icon span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .idioma-selector .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .dropdown:focus-within .dropdown-content {
    display: block;
  }

  .esquina-mono {
    width: 70px;
  }

  .formulario-y-imagen {
    flex-direction: column;
    padding: 0 1rem;
  }

  .bloque-formulario {
    max-width: 100%;
    text-align: center;
  }

  .damasippus-img {
    position: relative;
    width: 100vw;
  }

  .contacto {
    padding-bottom: 0;
  }

  .bio-ampliada,
  .bio-ampliada .intro {
    margin-top: 4rem;
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}


/* ==========================================================================
   INVESTIGACIÓN SPECIFIC STYLES
   ========================================================================== */

/* Investigación: Hero a una columna */
.investigacion-hero {
  display: block;
  text-align: center;
  margin-bottom: 4rem;
}

.investigacion-hero .hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.investigacion-hero .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Timeline de proyectos */
.investigacion-timeline {
  margin-bottom: 4rem;
}

.investigacion-timeline .timeline {
  list-style: none;
  position: relative;
  padding-left: 2.5rem;
}

.investigacion-timeline .timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ccc;
}

.investigacion-timeline .timeline li {
  position: relative;
  margin-bottom: 2.5rem;
}

.investigacion-timeline .time {
  position: absolute;
  left: -0.5rem;
  top: 0;
  background: #efd232;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* Colaboraciones sin logos: texto e iconos */
.investigacion-collabs {
  margin-bottom: 4rem;
}

.investigacion-collabs .collab-grid.text-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.collab-card {
  position: relative;
  background: #fff;
  border-radius: 2xl;
  box-shadow: 0 2px 8px rgba(99, 99, 99, 0.2);
  padding: 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.collab-card:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
}

.collab-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-top: 4px solid #efd232;
  border-left: 4px solid #efd232;
}

.collab-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 4px solid #efd232;
  border-right: 4px solid #efd232;
}

.collab-card i {
  color: #efd232;
  margin-bottom: 0.8rem;
}

.collab-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #333;
}

.collab-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Acordeón (FAQ) */
.investigacion-faq {
  margin-bottom: 4rem;
}

.accordion .acc-toggle {
  width: 100%;
  text-align: left;
  font-weight: bold;
  padding: 0.8rem 1rem;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.accordion .acc-toggle.active {
  background: #efd232;
}

.accordion .acc-content {
  display: none;
  padding: 0 1rem 1rem;
  border-left: 4px solid #efd232;
  background: #fafafa;
}

/* Call to Action */
.investigacion-cta {
  text-align: center;
  margin: 4rem 0;
}

.investigacion-cta p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.investigacion-cta .button {
  background: #efd232;
  color: #000;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.3s;
}

.investigacion-cta .button:hover {
  background: #e6c800;
}

/* Responsive para Investigación */
@media (max-width: 768px) {
  .investigacion-hero {
    text-align: center;
  }
}


/* ==========================================================================
   IMÁGENES EN ARTÍCULOS: ALINEACIONES
   ========================================================================== */

/* Centrada (bloque) */
.article-img-centered {
  margin: 2rem 0;
  text-align: center;
}

.article-img-centered img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Pie de foto */
.article-img-centered figcaption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.4;
  text-align: left;
}

/* Inline flotante a la derecha */
.article-img-inline-right {
  float: right;
  width: 500px;
  margin: 0 0 1rem 1rem;
}

.article-img-inline-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pie de foto */
.article-img-inline-right figcaption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.4;
  text-align: left;
}

/* Inline flotante a la izquierda */
.article-img-inline-left {
  float: left;
  width: 500px;
  margin: 0 1rem 1rem 0;
}

.article-img-inline-left img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pie de foto */
.article-img-inline-left figcaption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.4;
  text-align: left;
}

/* Clearfix para que el texto fluya correctamente tras flotados */
.article-content::after {
  content: "";
  display: table;
  clear: both;
}


/* ==========================================================================
   ESTILOS ESPECÍFICOS PARA EXPEDICIONES
   ========================================================================== */

/* Clase para texto en color amarillo */
.texto-amarillo {
  color: #efd232;
}

/* --- Estilos para el Bloque 1 (Texto sobre imagen de fondo) --- */

/* Contenedor principal del primer bloque */
.expediciones-hero-block1 {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Estilo para la imagen de fondo específica de este bloque */
.expediciones-hero-block1 .absolute-bg.expediciones-bg-img1 {
  background: url('../img/expediciones/banner1.webp') center/cover no-repeat;
}

/* Ajustes Flexbox para el .page-container DENTRO de este bloque */
.expediciones-hero-block1 .page-container.expediciones-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Estilo para el div que contiene el texto en el lado izquierdo */
.expediciones-hero-text-column {
  width: 50%;
  color: #fff;
}

/* Estilos para el título principal dentro de la columna de texto */
.expediciones-hero-text-column h1 {
  color: #efd232;
  margin-bottom: 1rem;
}

/* Estilos para los párrafos dentro de la columna de texto */
.expediciones-hero-text-column p {
  margin-bottom: 1rem;
}

/* --- Media query para hacerlo responsive en pantallas pequeñas (Bloque 1) --- */
@media (max-width: 768px) {
  .expediciones-hero-block1 .page-container.expediciones-hero-content {
    justify-content: center;
  }

  .expediciones-hero-text-column {
    width: 90%;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
  }

  .expediciones-hero-text-column h1,
  .expediciones-hero-text-column p {
    text-align: center;
  }
}


/* --- Estilos para el Bloque 2 (Imagen izquierda, Texto derecha - Flexbox) --- */

/* Contenedor Flexbox dentro del .page-container para Bloque 2 */
.expediciones-bloque2-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Contenedor de la imagen en Bloque 2 */
.expediciones-bloque2-imagen {
  flex: 1 1 360px;
  max-width: 500px;
}

/* Estilo de la imagen dentro de su contenedor en Bloque 2 */
.expediciones-bloque2-imagen img {
  display: block;
  width: 100%;
  height: auto;
}

/* Contenedor del texto en Bloque 2 */
.expediciones-bloque2-texto {
  flex: 2 1 400px;
}

/* Estilos para el título dentro del bloque de texto de Bloque 2 */
.expediciones-bloque2-texto h2 {
  margin-top: 0;
}

/* --- Media query para hacerlo responsive en pantallas pequeñas (Bloque 2) --- */
@media (max-width: 768px) {
  .expediciones-bloque2-imagen,
  .expediciones-bloque2-texto {
    flex-basis: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .expediciones-bloque2-texto h2,
  .expediciones-bloque2-texto p {
    text-align: center;
  }

  .expediciones-bloque2-imagen img {
    margin-left: auto;
    margin-right: auto;
  }
}


/* --- Estilos para el Bloque 3 (Ilustración izquierda, Lista de texto derecha) --- */

/* Contenedor Flexbox dentro del .page-container para Bloque 3 */
.expediciones-bloque3-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Contenedor de la ilustración en Bloque 3 */
.expediciones-bloque3-ilustracion {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}

/* Estilo de la imagen/ilustración dentro de su contenedor en Bloque 3 */
.expediciones-bloque3-ilustracion img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 350px;
  margin: 0 auto;
}

/* Contenedor del texto y la lista en Bloque 3 */
.expediciones-bloque3-texto-lista {
  flex: 2 1 400px;
}

/* Estilos para el título dentro del bloque de texto/lista de Bloque 3 */
.expediciones-bloque3-texto-lista h2 {
  margin-top: 0;
}

/* Estilos para la lista dentro del bloque de texto/lista de Bloque 3 */
.expediciones-bloque3-texto-lista ul {
  list-style: disc;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

/* Estilos para los ítems de la lista en Bloque 3 */
.expediciones-bloque3-texto-lista li {
  margin-bottom: 0.5rem;
}


/* Estilos para el Bloque 4 (Fondo negro, Texto izquierda, Imagen vertical derecha) */
.expediciones-bloque4-negro {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem;
}

/* Contenedor Flexbox dentro del .page-container para Bloque 4 */
.expediciones-bloque4-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Contenedor del texto en Bloque 4 */
.expediciones-bloque4-texto {
  flex: 2 1 400px;
}

/* Contenedor de la imagen vertical en Bloque 4 */
.expediciones-bloque4-imagen-vertical {
  flex: 1 1 200px;
  max-width: 330px;
  text-align: center;
  flex-shrink: 0;
}

/* Estilo de la imagen vertical dentro de su contenedor en Bloque 4 */
.expediciones-bloque4-imagen-vertical img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: 0 auto;
}

/* Estilos para el título dentro del bloque de texto de Bloque 4 */
.expediciones-bloque4-texto h2 {
  color: #efd232;
  margin-top: 0;
}

/* Estilos para los párrafos dentro del bloque de texto de Bloque 4 */
.expediciones-bloque4-texto p {
  margin-bottom: 1rem;
}

/* Estilos para la lista y sus elementos en Bloque 4 */
.expediciones-bloque4-texto ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.expediciones-bloque4-texto li {
  margin-bottom: 0.5rem;
}

/* ================= Expediciones Info Section ================= */

.expediciones-info {
  background: #fff;
  color: #000;
}

.expediciones-info-container {
  max-width: 1200px;
  margin: 30px auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.expediciones-info-text {
  flex: 2 1 400px;
}

.expediciones-info-text h2 {
  color: #000;
  margin-bottom: 1rem;
}

/* Estilos para las imágenes de expediciones */
.expediciones-info-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expediciones-info-img img {
  width: 270px;
  display: block;
}

/* Invertir el orden para pantallas grandes */
@media (min-width: 769px) {
  .expediciones-info-container {
    flex-direction: row;
  }

  .expediciones-info-images {
    order: 1;
  }

  .expediciones-info-text {
    order: -1;
  }
}

/* ================= Expediciones CTA Section ================= */

.expediciones-cta {
  background: #000;
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.expediciones-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  height: 100%;
}

.expediciones-cta-text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
}

.expediciones-cta h2 {
  margin-bottom: 1rem;
  color: #efd232;
}

.expediciones-cta p {
  margin-bottom: 2rem;
}

.expediciones-cta a {
  color: #efd232;
  text-decoration: none;
  transition: color 0.3s;
}

.expediciones-cta a:hover {
  color: #fff;
}

.button {
  text-align: center;
  background: #efd232;
  color: #000 !important;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
  display: table;
  margin-top: 1rem;
}

.button:hover {
  background: #e6c800;
  color: #fff !important;
}

.expediciones-cta-image {
  flex: 1 1 300px;
  max-width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expediciones-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* ================= Expediciones Proyecto Section ================= */

.expediciones-proyecto {
  background: #fff;
  color: #000;
  padding: 2rem 2rem;
}

.expediciones-proyecto-container {
  max-width: 1200px;
  margin: 0 auto;
}

.expediciones-proyecto-text h2 {
  margin-bottom: 1rem;
}

.expediciones-proyecto-text ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.expediciones-proyecto-image {
  width: 100%;
}

.expediciones-proyecto-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Media query para pantallas más pequeñas */
@media (max-width: 768px) {
  .expediciones-proyecto-container {
    text-align: center;
  }

  .expediciones-proyecto-text ul {
    text-align: left;
  }
}

/* Media query para pantallas más pequeñas */
@media (max-width: 768px) {
  .expediciones-cta {
    padding: 4rem 2rem;
  }

  .expediciones-cta-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .expediciones-cta-image {
    max-width: 100%;
    height: auto;
  }
}

/* Media query para pantallas más pequeñas */
@media (max-width: 768px) {
  .expediciones-info-container {
    flex-direction: column;
    text-align: center;
    padding: 0 2rem;
  }

  .expediciones-info-images,
  .expediciones-info-text {
    order: initial;
  }
}

/* --- Media query para hacerlo responsive en pantallas pequeñas (Bloque 3) --- */
@media (max-width: 768px) {
  .expediciones-bloque3-ilustracion,
  .expediciones-bloque3-texto-lista {
    flex-basis: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .expediciones-bloque3-texto-lista h2,
  .expediciones-bloque3-texto-lista ul {
    text-align: center;
  }

  .expediciones-bloque3-ilustracion img {
    margin-left: auto;
    margin-right: auto;
  }

  .expediciones-bloque3-texto-lista ul {
    padding-left: 20px;
  }

  .expediciones-bloque3-texto-lista li {
    text-align: left;
  }

  .expediciones-bloque4-texto,
  .expediciones-bloque4-imagen-vertical {
    flex-basis: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .expediciones-bloque4-texto h2,
  .expediciones-bloque4-texto p {
    text-align: center;
  }

  .expediciones-bloque4-texto ul {
    text-align: left;
    padding-left: 20px;
  }

  .expediciones-bloque4-texto li {
    /* Si el texto del li es corto y quieres centrarlo, puedes usar esto */
    /* text-align: center; */
  }

  .expediciones-bloque4-imagen-vertical img {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ================= Expediciones Hero Section (Block Layout) ================= */

.expediciones-hero {
  background: #000;
  color: #fff;
  display: flex;
  align-items: stretch;
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
}

.expediciones-hero-container {
  display: flex;
  max-height: 100%;
  width: 100%;
  flex-wrap: wrap;
}

.expediciones-hero-text {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}

.expediciones-hero-text h1 {
  color: #efd232;
  margin-bottom: 1rem;
}

.expediciones-hero-image {
  flex: 1 1 400px;
  max-width: 100%;
  overflow: hidden;
}

.expediciones-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Media query para pantallas más pequeñas */
@media (max-width: 768px) {
  .expediciones-hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 2rem;
    height: auto;
  }

  .expediciones-hero-image {
    max-width: 100%;
    height: auto;
  }

  .expediciones-hero-text {
    width: 100%;
  }
}
