* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #0b1f33; 
}


.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #0b1f33; /* Azul marino */
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  object-fit: contain;
  
  
}

.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "STIX Two Text", serif;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fcc680; /* bronce */
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #fcc680;
}

.notas-horizontal {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
  
}

.nota-horizontal {
  display: flex;
  flex-direction: row;
  background-color: #0b1f33; 
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  gap: 2rem;
  box-shadow: 0 0 20px rgba(200, 178, 136, 0.05);
  transition: transform 0.3s;
  overflow-x: auto ;
}

.nota-horizontal:hover {
  transform: translateY(-5px);
}

.nota-texto {
  flex: 2;
  
}

.nota-titulo {
  font-size: 1.5rem;
  color: #e9cfa4;
  margin-bottom: 0.3rem;
  font-family: "STIX Two Text", serif;
}

.nota-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

.nota-resumen {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1rem;
}

.btn-noticia {
  background-color: #c8b288;
  color: #111;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  font-family: "STIX Two Text", serif;
}

.btn-noticia:hover {
  background-color: #e9cfa4;
}

.nota-imagen-mini {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nota-imagen-mini img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #333;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fcc680; /* tono oro elegante */
  text-align: center;
  padding-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
  font-family: "STIX Two Text", serif;
  background-color: #050f19; 

}

.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #bfa355;
  margin: 0.5rem auto 0;
  border-radius: 1px;
}

.container {
  background-color: #050f19; 
}








.footer {
  background-color: #0b1f33; /* azul marino */
  color: white;
  padding: 4rem 2rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column h3 {
  color: #bfa355; 
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "STIX Two Text", serif;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #bfa355;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-social a {
  color: white;
  margin-left: 1rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #bfa355;
}

.slogan{
  font-family: "STIX Two Text", serif;
}

.footer h3{
  font-family: "STIX Two Text", serif;
}



.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #bfa355;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  background-color: #d2b15c;
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
  background-color: #050f1900;
  
}



@media (max-width: 768px) {
  .nota {
    flex-direction: column;
    align-items: flex-start;
  }

  .nota-imagen img {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }

  .nota-boton {
    width: 100%;
    text-align: center;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  
}

.container-header {
  max-width: 1200px;
  margin: 0 auto;
 
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Menú base */
.nav {
  display: flex;
}

.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #c1a95a;
}

/* Hamburguesa */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .container-header {
    flex-wrap: wrap;
  }

  .hamburger {
    display: block;
  }

  .nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    flex-direction: column;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .menu-toggle:checked ~ .nav {
    max-height: 400px;
    margin-top: 1rem;
  }
}


/* --------------------------------------------- */
/* FUENTES, COLORES Y RESETEO                    */
/* --------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fuente-texto);
  background-color: var(--color-fondo);
  color: var(--color-primario);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--color-acento);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------- */
/* HEADER                                        */
/* --------------------------------------------- */


.container-header {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

/* NAVBAR */

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav a {
  font-weight: 500;
 
  transition: color 0.3s;
}



/* HAMBURGER */

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* --------------------------------------------- */
/* MAIN                                          */
/* --------------------------------------------- */

.container {
  max-width: 100%;
  margin: 2rem auto;
  padding: 0 1rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  
}

/* --------------------------------------------- */
/* NOTAS                                         */
/* --------------------------------------------- */

.notas-horizontal {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.nota-horizontal {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;

  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  align-items: stretch;
}

.nota-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nota-titulo {
  
  font-size: 1.4rem;
  
  margin-bottom: 0.8rem;
}

.nota-meta {
  font-size: 0.9rem;
  
  margin-bottom: 1rem;
  font-weight: 400;
}

.nota-resumen {
  
  font-size: 1rem;
  margin-bottom: 1rem;
}

.btn-noticia {
  align-self: start;
  display: inline-block;
  padding: 0.5rem 1rem;
 
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}


.nota-imagen-mini {
  flex: 0 0 220px;
  overflow: hidden;
  border-radius: 10px;
}

/* --------------------------------------------- */
/* RESPONSIVE                                    */
/* --------------------------------------------- */

@media (max-width: 768px) {
  .nota-horizontal {
    flex-direction: column;
  }

  .nota-imagen-mini {
    width: 100%;
    height: auto;
  }

  .nav ul {
    flex-direction: column;
    
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .menu-toggle:checked ~ .nav ul {
    max-height: 300px;
    padding: 1rem 2rem;
  }

  .hamburger {
    display: block;
  }
}

/* --------------------------------------------- */
/* AOS                                           */
/* --------------------------------------------- */

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}


.footer-column a{
  color: white;
  text-decoration: none;
}

.footer-column a :hover{
  color: #bfa355;
  transition: 1s;
}
