/* ===== botonesgeneral.css ===== */

/* Botones principales */
.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.contact-btn {
    background-color: var(--verde);
    color: var(--blanco);
    border: 2px solid var(--verde);
}

.contact-btn:hover {
    background-color: #f89b21;
    color: var(--blanco);
    border-color: #f89b21;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.donate-btn {
    background-color: var(--blanco);
    color: var(--verde);
    border: 2px solid var(--verde);
}

.donate-btn:hover {
    background-color: var(--naranja);
    color: var(--blanco);
    border-color: var(--naranja);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* ===== botonheader.css ===== */

/* Botón header */
.header-cta {
    margin-left: auto;
}

.rontact-btn {
    background-color: var(--blanco);
    color: #000;
    border: 2px solid var(--verde);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
}

.rontact-btn:hover {
    background-color: var(--naranja);
    color: var(--blanco);
    border-color: var(--naranja);
}

.rontact-btn img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.rontact-btn:hover img {
    transform: scale(1.2);
}


/* ===== contactos.css ===== */
.contact-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .contact-section p {
    margin-bottom: 2rem;
    color: #666;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .form-group label {
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: #444;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact-btn {
    background-color: #3cb371; /* verde medio */
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: fit-content;
    align-self: center;
  }
  
  .contact-btn:hover {
    background-color: var(--naranja);
  }
  

/* ===== copy.css ===== */
/* copy */
.footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 12px;
    border-top: 1px solid #ccc;
    background-color: #fff;
    color: #777;
  }
  

/* ===== footer.css ===== */
  /* Footer */
  footer {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }

/* ===== galeria.css ===== */
 
/* Sección Galería */
/* Sección Galería */
.gallery-section {
    background-color: #e9fdf1;
    padding: 60px 20px;
    text-align: center;
}
  
.gallery-title {
    font-size: 1rem;
    font-weight: 600;
    color: #5cbf89;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
  
.gallery-description {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    text-align: justify; /* 👈 Texto justificado */
}
  
.gallery-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
  
.gallery-images img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #5cbf89;
}
  
.gallery-btn-container {
    margin-top: 20px;
}
  
.gallery-btn {
    background-color: #5cbf89;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}
  
.gallery-btn:hover {
    background-color: #ffffff;
    border: 3px solid #5cbf89;
    color:#5cbf89;
}
  


/* ===== general.css ===== */
/* Estilos generales */
:root {
    --verde: #1b9148;
    --naranja: #f89b21;
    --gris-oscuro: #333;
    --gris-claro: #f5f5f5;
    --blanco: #ffffff;
}

body {
  margin: 0;
  font-family: sans-serif;
  overflow-y: scroll;
  padding-top: 100px; /* Ajusta según el alto real de tu header */ /* Mantiene scroll aunque esté oculto */
}
body {
  margin: 0;
  padding: 0;
  background: #eaeaea;
  font-family: sans-serif;
}


/* ===== header.css ===== */
/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--blanco); /* Asegúrate que esta variable exista o usa #fff */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
  }
  
  header.scrolled {
    padding: 15px 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    height: 60px;
    transition: all 0.3s ease;
  }
  
  header.scrolled .logo {
    height: 50px;
  }
  
  /* Asegura que el main no quede tapado por el header fijo */
  main {
    margin-top: 100px;
     /* ajustá según la altura real del header */
}

  
  /* Estilos del menú de navegación */
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #00b894;
  }
  

/* ===== hero.css ===== */

/* Hero section */
.hero {
    background-image: url('../imagenes/image\ 1.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--blanco);
    position: relative;
    padding: 0 10%;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    font-weight: 300;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}


/* ===== main.css ===== */

/* Main Content */
.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    background-color: #ffffff;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .logo {
    width: 200px;
    margin-bottom: 15px;
  }
  
  .footer-column p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-column h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }

  .footer-column ul li a:hover {
    color: #007a3d;
    font-weight: bold;
    text-decoration: underline;
  }
  
  
  .footer-column img {
    width: 600x;
    vertical-align: middle;
    margin-right: 11px;
  }
  

/* ===== navegacion.css ===== */

/* Navegación */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--naranja);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--verde);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
    background-color: var(--verde);
}


/* ===== nosotros.css ===== */
 
/* Sección Nosotros */
.section-about {
    padding: 100px 10%;
    background-color: var(--blanco);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: var(--verde);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: justify;
    
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}


/* ===== programas.css ===== */

/* Sección Programas */
/* Sección Programas */
.program-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .program-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6db58e;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .program-description {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
    text-align: justify; /* 👈 Justificado */
  }
  
  .programs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .program-item {
    width: 140px;
    text-align: justify; /* 👈 Justificado */
  }
  
  .program-item img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
  }
  
  .program-item p {
    font-size: 14px;
    color: #333;
    text-align: center;
  }
  
  /* Botón Conoce Más */
  .more-btn-container {
    margin-top: 20px;
  }
  
  .more-btn {
    background-color: white;
    color: #2ea76f;
    border: 2px solid #2ea76f;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .more-btn:hover {
    background-color: #2ea76f;
    color: white;
  }
 

/* ===== quehacemos.css ===== */
 
/* Sección Qué Hacemos */
/* Sección Qué Hacemos */
.what-we-do {
    padding: 60px 20px;
    background-color: #f8fcff;
    text-align: center;
}

.what-title {
    color: #6db58e;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: justify;
}

.section-subtitle {
    font-family: 'Fredoka', sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.4;
    quotes: "“" "”" "“" "”";
}

.section-subtitle::before,
.section-subtitle::after {
    content: open-quote;
    font-size: 2rem;
    vertical-align: top;
}

.mission-vision-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: justify;
}

.mv-card {
    position: relative;
    width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.mv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.mv-content {
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: 15px 10px 0 0;
    width: 100%;
    text-align: left;
}

.mv-content h3 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.mv-content p {
    font-size: 25px;
    color: #444;
    line-height: 1;
}

.mv-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    background-color: #2ea76f;
    color: rgb(149, 149, 149);
    font-size: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


/* Botón Conoce Más */
.more-btn-container {
    margin-top: 40px;
}

.more-btn {
    background-color: #ffffff;
    color: #2ea76f;
    border: 2px solid #2ea76f;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.more-btn:hover {
    background-color: #2ea76f;
    color: white;
}
/* Tarjetas Misión y Visión */
.mv-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mv-card h3 {
    color: var(--verde);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card h3 i {
    color: var(--naranja);
}

.mission {
    border-top: 5px solid var(--verde);
}

.vision {
    border-top: 5px solid var(--naranja);
}


/* ===== redes.css ===== */

/* Redes */
.social-icons {
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  }
  
  .social-icons a {
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
  }

  
  .social-icons img {
    width: 50px;
    height: 50px;
    display: block;
  }
  

/* ===== sobre-nosotros.css ===== */
.sobre-nosotros {
    background-color: #e9fbee;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #eaeaea;
    font-family: sans-serif;

  }

  
  .sobre-nosotros .contenido {
    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .imagenes {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .img1, .img2, .img3 {
    width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .img1 img, .img2 img, .img3 img {
    width: 100%;
    border-radius: 8px;
  }
  
  .img2 {
    margin-left: 40px;
    border: 3px solid #007a3d;
    padding: 4px;
  }
  
  .img3 {
    margin-left: 80px;
  }
  
  .texto {
    flex: 2;
    color: #0c0c0c;
  }
  
  .texto h4 {
    color: #198754;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .texto h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .texto p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .btn-verde {
    background-color: #45b76f;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .btn-verde:hover {
    background-color: #379c5f;
  }
  

/* ===== stilos.css ===== */

/* Oculta barra de scroll solo visualmente */
body::-webkit-scrollbar {
  display: none;
  padding-top: 100px; /* Ajusta según el alto real de tu header */
}
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 100px; /* Ajusta según el alto real de tu header */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
nav {
    margin-left: 2cm; /* Ajusta este valor según lo que necesites */
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--gris-oscuro);
    line-height: 1.4;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 90px; /* Ajusta según el alto real de tu header */
}

a {
    text-decoration: none;
    color: inherit;
}








/* ===== topbanner.css ===== */
/* Top Banner */
.footer-top {
  background-color: #09381B;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  flex-wrap: wrap;
}

/* Texto de "Síguenos en" */
.social-title p {
  margin: 0;
  font-size: 14px;
}

.social-title h3 {
  margin: 5px 0;
  font-weight: bold;
}

/* Estilo para los íconos sociales */
.social-icons-top a {
  margin: 0 8px;

  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
}

/* Íconos dentro de los círculos */
.social-icons-top img {
  width: 50px;
  height: 50px;
  display: block;
}

/* Texto final a la derecha */
.footer-slogan p {
  text-align: right;
  font-size: 14px;
  margin: 0;
}


/* ===== quehacemos.css ===== */
/* Sección Qué Hacemos */

.que-hacemos {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.etiqueta {
  color: #90c9a7;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.titulo {
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.descripcion {
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: justify;
}

.tarjetas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tarjeta {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  padding: 30px 20px;
  text-align: left;
  position: relative;
  flex: 1 1 300px;
}

.tarjeta h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.tarjeta p {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify; /* Justificado */
}

.icono {
  background-color: #1fc78f;
  border-radius: 50%;
  padding: 10px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: -24px;
  left: 20px;
}

/* ===== quehacemos.css ===== */

body {
  margin: 0;
  padding: 0;
  background: #eaeaea;
  font-family: sans-serif;
  min-height: 100vh;
}
.que-hacemos {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  text-align: justify;
}

.etiqueta {
  color: #90c9a7;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: justify;
}

.titulo {
  font-family: 'Nerko One', cursive;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: normal;
  text-align: justify; /* Justificado */
}

.descripcion {
  font-size: 1rem;
  margin-bottom: 50px;
  line-height: 1.6;
  text-align: justify; /* Justificado */

}

.tarjetas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tarjeta {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  padding: 30px 20px;
  text-align: left;
  position: relative;
  flex: 1 1 300px;
}

.tarjeta h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
  text-align: justify; /* Justificado */
 
    
}

.tarjeta p {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify; /* Justificado */
}

.icono {
  background-color: #1fc78f;
  border-radius: 50%;
  padding: 10px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: -24px;
  left: 20px;
}


.programas {
  max-width: 1100px;
  margin: 150px auto;
  padding: 0 20px;
}
body {
  margin: 0;
  padding: 0;
  background: #eaeaea;
  font-family: sans-serif;
}

.titulo {

  font-size: 22px;
  font-weight: 800;
  color: #00bb7e;
  letter-spacing: 1px;
  margin-bottom: 50px;
  text-align: center;
}

/* Tarjetas */
.tarjeta {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  margin: 0 auto 30px auto;
  width: 95vw;
  max-width: 1000px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto al pasar el mouse */
.tarjeta:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
} 
.tarjeta img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 5%;
  flex-shrink: 0;
}

.tarjeta h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  
}

.tarjeta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 100%;
  text-align: justify; /* Justificado */
}

.nosotros-section {
  padding: 60px 20px;
  background-color: #fff;
}

.nosotros-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.nosotros-img {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros-img img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  border: 8px solid #c9ecd8;
}

.nosotros-texto {
  flex: 1 1 500px;
  max-width: 700px;
}

.nosotros-texto h2 {
  font-size: 18px;
  color: #3ab76d;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.nosotros-texto p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
  text-align: justify;
}
/*imagenes*/
body {
  margin: 0;
  padding: 0;
  background: #eaeaea;
  font-family: sans-serif;
}

.galeria {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
  width: 100%;
  max-width: 1000px;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Posiciones específicas */
body {
  margin: 0;
  padding: 0;
  background: #eaeaea;
  font-family: sans-serif;
}

.galeria {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
  max-width: 1000px;
  width: 100%;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Posiciones */
.imagen-galeria { grid-column: span 6; grid-row: span 2; }
.imagen-galerias, .img3j, .img4j,
.img5j, .img6j, .img7j,
.img8j, .img9j, .img10j,
.img11j, .img12j, .img13j,
.img14j, .img15j, .img16j,
.img17j, .img18j { grid-column: span 2; }

/* Modal */
/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-contenido {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  animation: zoom 0.4s;
  border-radius: 10px;
}

.modal-footer {
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 1.2rem;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.cerrar:hover,
.cerrar:focus {
  color: #ccc;
}

@keyframes zoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

  
/* ===== contacto.css ===== */
/* Sección de Contacto */
.contact-section {
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  max-width: 78.7%;
  max-height: 121vh;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  width: 170vh;
}

/* FORMULARIO */
.contact-form-box {
  flex: 1 1 50%;
  width: 100%;
}

.contact-subtitle {
  color: #51b97f;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2rem;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0.5rem 0 2rem;
  color: #333;
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #fff;
  box-sizing: border-box;
  max-width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #51b97f;
  outline: none;
}

.btn-contacto {
  background-color: #51b97f;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-contacto:hover {
  background-color: #3a9460;
}

/* IMAGEN */
.contact-image-box {
  flex: 1 1 45%;
  text-align: center;
}

.contact-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form-box {
    width: 100%;
    padding: 0 1rem;
  }

  .contact-image-box {
    display: none; /* Oculta imagen en pantallas pequeñas si lo deseas */
  }
}

.scroll-container {
  width: 80%;
  height: 400px;
  margin: 50px auto;
  padding: 20px;
  overflow-y: scroll;
  background: white;
  border: 1px solid #ccc;
}

main.contenido {
  margin-top: 140px !important;
  padding: 20px;
}

/* =================== RESPONSIVE - Celulares =================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .header-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  main {
    margin-top: 160px;
    padding: 20px;
  }

  .footer-main {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .footer-column {
    width: 100%;
  }

  .social-icons-top img,
  .social-icons img {
    width: 35px;
    height: 35px;
  }

  .contenido h1 {
    font-size: 32px;
  }

  .mensaje p {
    font-size: 18px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }

  .logo {
    width: 150px;
  }
}

/* ========== Header Responsive ========== */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }

  .logo-container {
    flex: 1 1 100%;
    text-align: left;
  }

  .logo {
    width: 140px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
  }

  .menu-toggle span {
    background: var(--verde);
    height: 3px;
    border-radius: 2px;
    transition: 0.3s;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  nav ul li a {
    color: #333;
    font-weight: bold;
    font-size: 16px;
  }

  .header-cta {
    flex: 1 1 100%;
    margin-top: 10px;
    text-align: center;
  }

  .header-cta .btn {
    width: 90%;
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth; /*deslisacion suave*/
}
@media (max-width: 768px) {
  .header-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .contact-btn {
    background-color: var(--verde);
    color: var(--blanco);
    border: 2px solid var(--verde);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: auto; /* No ocupa todo el ancho */
    max-width: 250px; /* Tamaño máximo */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, transform 0.3s;
  }

  .contact-btn img {
    width: 20px;
    height: 20px;
  }

  .contact-btn:hover {
    background-color: var(--naranja);
    transform: scale(1.05);
    border-color: var(--naranja);
  }
}



