
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f3ee;
  color: #000;
}

/* ANIMATIONS */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s ease;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.logo {
  display: flex;
  align-items: center;
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 4;  /* 👈 elimina empuje vertical */
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: auto; /* CLAVE */
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.0rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    font-size: 1.4rem;
    transform: translateY(1px);
  }
}



nav a {
  margin-left: 30px;
  font-size: 18px;
  text-decoration: none;
  color: #195;
}

.btn {
  display: inline-block;
  padding: 10px 24px;         /* 👈 altura similar al logo */
  line-height: 1;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  color: #fff;
  background-color: #1f9d55;
 
}
.btn:hover {
  background-color: #333;
}

nav a.btn:hover {
  opacity: 0.85;
}

 nav .btn {
   background: #1f9d55; /* verde fuerte */
   color: #fff;
   padding: 13px 24px;   /* mismo tamaño en desktop y mobile */
   font-size: 14px;
   font-weight: 800;
   letter-spacing: 1px;
   border-radius: 0;
   box-shadow: none;
   line-height: 1;
   transition: opacity 0.2s ease;
 }
 
 nav .btn:hover {
   opacity: 0.85;
 }

@media (max-width: 768px) {
   nav .btn {
     padding: 14px 24px;
     font-size: 14px;
   }
 }
.btn-primary {
   padding: 6px 14px;
 }
/* HERO */
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0.7;
}

@media (min-width: 1024px) {
.hero-eyebrow {
  font-size: 14px;
  margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero-eyebrow {
    margin-top: 48px; /* 🔥 ajusta aquí */
  }
}

.hero-title {
  font-size: clamp(1rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem; /* más grande en desktop */
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 6rem;
  }
}

}
@media (max-width: 768px) {
  .hero-menu {
    padding-left: 0px;
    padding-right: 16px;
  }
}
.hero-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}


.hero-menu a {
  text-decoration: none;
  color: #000;
  width: fit-content;
  transition: opacity 0.25s ease;
}
.hero-menu a:hover {
  opacity: 0.7;
}
.hero-menu a::after {
  content: "›";
}
@media (max-width: 768px) {
  .hero-menu a {
    width: 100%;
  }
}
.underline {
  border-bottom: 6px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  padding: 100px 60px 40px;
}

.footer-top {
  margin-left: 30px;
}

.footer-top h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 32px;
}

.footer-blog-list {
  list-style: none;
}

.footer-blog-list li {
  margin-bottom: 14px;
}

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

  .footer-blog-list a {
  font-size: 14px;
}

.footer-middle {
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  display: flex;
  justify-content: space-between;
  margin: 80px 0 40px;
}

/* 🔥 LINKS AMARILLOS */
.footer-blog-list a {
  color: #f2c94c; /* amarillo */
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-blog-list a:hover {
  opacity: 0.7;
}
/* TITULO DEL ARTICULO */
.footer-articles-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f5f3ee;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
}

/* línea señal */
.footer-articles-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: #f2c94c;
  transform: translateY(-50%);
}

.footer-info h3 {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-info p {
  font-size: 13px;
  opacity: 0.7;
  max-width: 360px;
}

.footer-bottom {
  font-size: 11px;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
}
.footer-logo--small {
  width: 180px;
  margin-bottom: 5px;
}

/* RESPONSIVE */



.header-nav {
    display: flex;
    align-items: center;
  }

/* USAR SOLO */
  .site-header {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
  }
  
  @media (min-width: 1024px) {
    .site-header {
      top: 0;
    }
  }
  
  .header-inner {
    width: 100%;
    padding: 6px 10px; /* ↓ menos alto, buen balance */
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .header-inner {
      padding: 6px 20px;
    }
  }
  @media (min-width: 1024px) {
    .header-inner {
      padding: 8px 10px;
      min-height: 0px;
      padding-top: 0px;
      padding-bottom: 0px;
    }
  }


  @media (max-width: 768px) {
    header {
    padding: 0px;
    } 
  } 
    .hero-project {
    padding: 0 24px;
    }
  
    .hero-project h1 {
    font-size: 3rem;
    }
  


  /* HERO */
  main {
    padding-top: 140px;
    padding-bottom: 0px;
    background: #f5f3ee;
  }
  
  @media (max-width: 768px) {
    main {
      padding-top: 90px; /* 🔥 más aire en móvil */
    }
  }

  .underline {
    border-bottom-width: 4px;
    padding-bottom: 6px;
  }

  .hero-illustration {
    position: relative;
    width: 100%;
    height: 180px;
    margin-top: 32px;
    opacity: 0.25;
  }

  .social {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .social .icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .social .icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
    display: block;
  }
  
  .social .icon:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
  }


  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
section {
  padding-top:10px;
  padding-bottom: 90px;
  margin: auto;
}

/* IMAGE DIVIDER */
.image-divider {
  width: 100%;
  min-height: 70vh;
  background: url("imagen/bg01.jpg") center / cover no-repeat;
}

.image-divider-alt {
  width: 100%;
  height: 420px;
  background-image: url("imagen/lugar.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0px 0;
}

@media (max-width: 768px) {
  .image-divider {
    height: 75vh;
    background-attachment: scroll;
  }
}

/* PROJECT HERO VARIANT */
.hero-project .hero-inner {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
.hero-project {
  position: relative;
  width: 100%;
  height: 100vh; /* Pantalla completa */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  color: #fff;
}
.hero-project .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
}

.hero-project .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  background-image: url("imagen/seydukwa.jpg");
  background-size: cover;
  background-position: center;
}
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.project-video {
  max-width: 1100px;
  margin: 10px 10px;
  padding: 0 24px;
}
.project-video {
  margin-top: 42px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .project-video {
    margin-top: 40px;
  }
}
.wrapper {
  margin-top: 0;
  padding-top: 40px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

.project-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.hero-project h1 {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 20px;
}





/* PROJECT HERO VARIANT ----*/

.project-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f2c94c;
  font-weight: 700;
}

/* PROJECT TEXT */
.hero-subtitle {
  font-size: 22px;
  line-height: 1.5;
  max-width: 600px;
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
  }
}


/* LIST */
.project-list {
  margin-left: 20px;
  font-size: 1.15rem;
}

.project-list li {
  margin-bottom: 12px;
}

/* BLOCKQUOTE */
blockquote {
  font-size: 28px;
  font-weight: 700;
  border-left: 5px solid #000;
  padding-left: 25px;
  margin: 60px 0px;
}


/* HOME NEWS */
.home-news {
  background: #f5f3ee;
  padding: 120px 0px;
}


.home-news-header,
.news-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */
.home-news-header {
  margin-bottom: 64px;
}

.home-news-header .eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.home-news-header h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.news-card a {
  display: block;
  text-decoration: none;
  color: #000;
}

.news-card figure {
  margin-bottom: 16px;
}

.news-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-category {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

.news-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 12px 0;
  line-height: 1.2;
}

.news-card p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 16px;
}

.read-more {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid #000;
  padding-bottom: 4px;
}
@media (min-width: 1024px) {

  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .home-news-header h2 {
    font-size: 36px;
  }
}
.news-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .news-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1280px) {
  .news-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.hero-wrapper-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 1024px) {
  .hero-wrapper-content {
    padding-left: 60px;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .hero-wrapper-content {
    padding-left: 8px;  /* más pegado a la izquierda */
    padding-right: 16px;
  }
}


