/* Header base (móvil y general) */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}


/* 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;
  }
}
.project-gallery + * {
  margin-top: 0 !important;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
  .gallery-grid img {
    height: 300px;
  }

  .gallery-single img {
    height: 320px;
  }
}

/* ⬇️ TODO lo que sigue YA es global */
.gallery-single.full {
  max-width: 100%;
  padding: 0;
}

  
  .gallery-single {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
  }
  
  .gallery-single img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease;
  }
  
  .gallery-single img:hover {
    transform: scale(1.01);
  }
@media (max-width: 768px) {
    .gallery-single img {
      height: 320px;
    }
  }
.gallery-single.full {
    max-width: 100%;
    padding: 0;
  }
  
  .gallery-single.full img {
    border-radius: 0;
    height: 600px;
  }
  
section {
  padding-top:20px;
  padding-bottom: 40px;
  margin: auto;
}
p {
  margin-bottom: 26px;
}
p:last-child {
  margin-bottom: 0px;
}

.section-article {
  padding: 18px 0;
  font-size: 1.05rem;
}
.section-articla {
  padding: 48px 0;
  font-size: 1.05rem;
}

@media (min-width: 1024px) {
  .section-article {
    padding: 96px 0;
  }
}

@media (min-width: 1024px) {
  .section-articla {
    padding: 96px 0;
    font-size: 2.05rem;
  }
}

.section-articla blockquote {
  font-size: 28px;          /* mismo tamaño siempre */
  font-weight: 700;
  line-height: 1.4;
  border-left: 5px solid #000;
  padding-left: 24px;
  margin: 0 auto;
  max-width: 820px;
}

.section-article p {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .section-article {
    padding: 30px 2px;
    max-width: 100vh;
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .section-article {
    padding: 30px 24px;
    max-width: 100vh;
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .section-articla {
    padding: 30px 2px;
    max-width: 100vh;
  }
}
@media (min-width: 1024px) {
  .section-articla {
    padding: 30px 24px;
    max-width: 100vh;
  }
}


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

body {
  font-family: 'Inter', sans-serif;
  background: #f5f3ee;
  color: #000;
}
h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
}


/* 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);
  }
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;  /* 👈 elimina empuje vertical */
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: auto; /* CLAVE */
}
@media (min-width: 1024px) {
  .logo {
    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;
}
.btn-primary {
  padding: 6px 14px;
}


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;
   margin-left: 0;
 }
 
 nav .btn:hover {
   opacity: 0.85;
 }

@media (max-width: 768px) {
   nav .btn {
     padding: 14px 24px;
     font-size: 14px;
   }
 }

/* HERO */

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0.7;
}


.hero-title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}


.hero-menu {
  display: flex;  
  max-width: 820px;
  margin: 16px 0;
  padding: 30px 0;
  letter-spacing: -1px;
  margin-bottom: 14px;
  flex-direction: column;
  align-items: flex-start;
}


.hero-menu a {
  text-decoration: none;
  color: #000;
  width: fit-content;
  transition: opacity 0.25s ease;
}

.hero-menu a:hover {
  opacity: 0.7;
}

.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%);
}
.article-text p {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 28px;
  color: #111;
}

.article-text p:nth-of-type(2) {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 28px;
  color: #111;
}
.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 */

  /* ESPACIADO GENERAL */
  header, main, footer {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  @media (max-width: 768px) {
    header {
    padding: 0px;
    }  
    .hero-project {
    padding: 0 10px;
    }
  
    .hero-project h1 {
    font-size: 3rem;
    }
  }
  .project-list {
    list-style-position: outside;
    padding-left: 40px;
  }
  
  .project-list li {
    padding-left: 8px;   /* separa el texto del bullet */
    margin-bottom: 14px;
  }


  /* HERO */
  main {
    padding-top: 20px;
    padding-bottom: 10px;
    background: #f5f3ee;
  }

  .hero-eyebrow {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .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);
  }



/* IMAGE DIVIDER */
.image-divider {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-attachment: inherit;
}

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

@media (max-width: 768px) {
  .hero-menu {
    gap: 4px;
  }

  .hero-menu a {
    display: block;
  }
}



/* PROJECT HERO VARIANT */

.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;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}

.hero-wrapper {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.hero-inner {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.hero-inner h1 {
  font-size: clamp(40px, 10vw, 90px);
}

@media (max-width: 768px) {
  .hero-wrapper {
    min-height: 85vh;
  }
}

.hero-wrapper .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}


.cover-bg-colombia {
  background-image: url("/imagen/bg01.jpg");
}

.cover-bg-seydukwa {
  background-image: url("/imagen/seydukwa.jpg");
}

.cover-bg-lugar {
  background-image: url("/imagen/lugar.jpg");
}

.cover-bg-regeneracion {
  background-image: url("/imagen/deforestacion.jpg");
}

.cover-bg-turismo {
  background-image: url("/imagen/tur.jpg");
}

.image-bg-seydukwa {
  background-image: url("/imagen/seydukwa.jpg");
}

.image-bg-turismo {
  background-image: url("/imagen/tr.jpg");
}

.image-bg-lugar {
  background-image: url("/imagen/lugar.jpg");
}

.image-bg-regeneracion {
  background-image: url("/imagen/destruccion-sierra.jpg");
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}

@media (min-width: 1024px) {
  .hero-inner {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}


.project-video {
  max-width: 1100px;
  margin: 34px auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .project-video {
    margin-top: 0px;
  }
}


.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;
}

@media (max-width: 768px) {
  .hero-project h1 {
    font-size: 42px;
  }
}
/* PROJECT HERO VARIANT ----*/

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

/* PROJECT TEXT */
.hero-subtitle {
  font-weight: 400;     /* ← más liviano */
  line-height: 1.5;
  opacity: 0.9;
}


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


