.header-portada {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.header-portada img {
  width: 100%;
  object-fit: cover; /* recorta sin deformar */

  display: block; /* evita espacio fantasma debajo de la imagen */ 
  margin: 0; /* elimina márgenes extra */ 
  padding: 0;
}

.header-donacion {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.header-donacion img {
  width: 100%;
  height: 100%;

  object-fit: cover; /* recorta sin deformar */

  display: block; /* evita espacio fantasma debajo de la imagen */ 
  margin: 0; /* elimina márgenes extra */ 
  padding: 0;
}

.header-portada img {
  width: 100%;
  object-fit: cover; /* recorta sin deformar */

  display: block; /* evita espacio fantasma debajo de la imagen */ 
  margin: 0; /* elimina márgenes extra */ 
  padding: 0;
}

.tarjeta 
{
    background:#f8f9fa; 
    border:1px solid #ccc;
}

.carousel-item img 
{ 
    max-width: 100%; 
    object-fit: contain; /* mantiene toda la imagen visible */ 
}

        
body 
{
    font-family: 'Merriweather', sans-serif;
    padding-top: 70px; /* altura aproximada del menú */
}

h1 { 
    font-family: 'Poppins', sans-serif;/*'Montserrat'*/
    font-size: 2.5rem; /* ~40px */
    font-weight: 700;
    line-height: 1.2;
    color: #1b8d47;
    margin-top: 20px; /* define un margen uniforme */ 
}



h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;   /* ~22px */
  font-weight: 500;
  line-height: 1.5;
}


h2 
{
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;   /* ~29px */
    font-weight: 600; /* menos pesado que h1 */
    line-height: 1.4;
    color: #1b8d47;
}

.cuerpo-texto {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;   /* más pequeño que el h1 */
  font-weight: normal; /* menos pesado que el título */
  line-height: 1.6;    /* mejor legibilidad */
  color: #777a7e;
}

p 
{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;     /* ~16px, base */
    font-weight: 400;
    line-height: 1.6;    /* cómodo para lectura */
    margin-bottom: 0.5rem;
    color: #777a7e;
    text-align: justify;
}
    
li 
{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;     /* ~16px, base */

}

.texto-centro {
  text-align: center;   /* centra el texto */
        /* asegura que se mantenga centrado */
}


.navbar 
{
    /*background-color: #ffffff/* #777a7e; /* gris oscuro elegante */
    background-color: #ffffff !important; /* fuerza el fondo blanco */

    /*background: linear-gradient(to right, #ffffff, #777a7e); */
    /* de blanco (#ffffff) a gris oscuro (#777a7e) */

    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    min-height: 70px;
}

.navbar .nav-link { padding-top: 0.5rem; padding-bottom: 0.5rem; }
/* Espaciado entre ítems */
.navbar-nav 
{
    text-transform: uppercase;   /* estilo elegante */
    letter-spacing: 1px;         /* separación entre letras */
    font-family: 'Montserrat', sans-serif; /* tipografía moderna */
}



/* Color base de los enlaces */
.nav-link 
{ 
    color:  #777a7e /*#ffffff !important; /* blanco */
    font-weight: 500;
}

/* Color al pasar el mouse */
.nav-link:hover 
{ 
    color: #f39c12 !important; /* naranja logo */
    font-weight: bold; 
}

/* Color para el enlace activo */
.nav-link.active 
{
color: #1b8d47 !important;
font-weight: bold;
}

/* Botón Donar */ 
.nav-link.donar 
{ 
    background-color: #1b8d47; /* verde del logo */ 
    color: #fff !important; /* texto blanco */ 
    font-weight: bold; 
    border-radius: 6px; 
    padding: 8px 16px; 
    margin-left: 10px; 
    transition: 0.3s; 
} 

/* Hover en Donar */ 
.nav-link.donar:hover 
{ 
    background-color: #13c457; /* verde más intenso */ 
    color: #fff !important; 
}

/* coraczon circulo*/
.circle-heart {
  display: inline-flex;       /* para centrar el corazón */
  align-items: center;
  justify-content: center;
  width: 24px;                /* tamaño del círculo */
  height: 24px;
  background-color: red;      /* círculo rojo */
  border-radius: 50%;         /* forma circular */
  color: white;               /* corazón blanco */
  font-size: 24px;            /* tamaño del corazón */
  margin-left: 6px;           /* espacio respecto al texto Donar */
}

.boton-superpuesto {
  position: absolute;
  bottom: 30px;             /* distancia desde abajo */
  left: 50%;                /* centrado horizontal */
  transform: translateX(-50%);
  background-color: #1b8d47; /* verde del logo */
  color: #fff !important;
  font-weight: bold;
  border-radius: 6px;
  padding: 8px 16px;
  transition: 0.3s;
}
/* Botón Donar sobrepuesto */ 

.nav-link.donars { 
  background-color: #1b8d47; /* verde del logo */ 
  color: #fff !important;    /* texto blanco */ 
  font-weight: bold; 
  border-radius: 10px; 
  padding: 14px 24px;        /* más alto y más ancho */
  margin-left: 10px; 
  transition: 0.3s; 
  display: inline-block;     /* se ajusta al texto */
}


/* Hover en Donar sobrepuesto*/ 
.nav-link.donars:hover 
{ 
    background-color: #13c457; /* verde más intenso */ 
    color: #fff !important; 
}



/* coraczon circulo*/
.image-borde {
  
  border-radius: 10px;         /* forma circular */
 
}

.nav-link.fundacion
{ 
    background-color: #1b8d47; /* verde del logo */ 
    color: #fff !important; /* texto blanco */ 
    font-weight: 600; 
    letter-spacing: 2px; 
    border-radius: 6px; 
    padding: 8px 16px; 
    margin-left: 1px; 
    transition: 0.3s; 
    display: inline-block;     /* ancho según el texto */
    width: auto; 
} 


/* Fondo blanco para el submenú */
.dropdown-menu {
    background-color: #ffffff;
    border-radius: 6px;
    border: none;
    opacity: 0;                
    transform: translateY(10px);
    transition: all 0.3s ease;
    visibility: hidden;        /* oculto por defecto */
    position: absolute;
}


/* Estilo de los ítems dentro del submenú */
.dropdown-item {
    text-transform: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #777a7e;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f39c12;
    color: #fff;
}

/* Cuando el submenú está visible */
.dropdown-menu.show {
    opacity: 1;                
    transform: translateY(0);  
    visibility: visible;
}




.visionmision-bloque {
    background-color: #fdfdfd; /* blanco */
    border-left: 6px solid #1b8d47; /* verde institucional */
    padding: 20px;
    border-radius: 8px;
    font-size: 20px;
    text-align: justify;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px



    
}

.mision-bloque {
    background-color: #f0fdf4; /* verde muy suave */
    border-left: 6px solid #1b8d47; /* verde institucional */
    padding: 20px;
    border-radius: 8px;
    font-size: 20px;
    text-align: justify;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mision-palabra 
{
    color: #1b8d47;
    font-weight: bold;
    font-size: 20px;
}

.componentes-bloque {
    background-color: #f0fdf4; /* verde muy suave */
    border-right: 6px solid #1b8d47; /* verde institucional */
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    text-align: justify;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.impacto-bloque {
    background-color: #f0fdf4; /* verde muy suave */
    border-left: 6px solid #1b8d47; /* verde institucional */
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    text-align: justify;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.transformacion-bloque {
    background-color: #1b8d47; /* verde muy suave */
    border-left: 6px solid #1b8d47; /* verde institucional */
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);

    font-family: 'Poppins', sans-serif;
    font-size: 1rem;     /* ~16px, base */
    font-weight: 400;
    line-height: 1.6;    /* cómodo para lectura */
    margin-bottom: 0.5rem;
    color: #ffffff;
}

footer {
border-top: 4px solid #1b8d47; /* franja superior con color verde */
}

footer a {
    color: #777a7e; /* verde estilo WhatsApp */ 
    transition: color 0.3s ease, text-decoration 0.3s ease;

}

footer a:hover {
color: #ffc107;               /* color llamativo en hover */
    /* subrayado elegante */
}

footer h5, footer h6 {

letter-spacing: 1px;          /* separación ligera entre letras */
}

footer .social-icons a {
margin: 0 8px;
font-size: 2rem;
color: #1b8d47;
}



.social-icons a { margin: 0 8px; font-size: 2rem; /* tamaño más grande */ 
    color: #1b8d47; /* color base */ 
    transition: color 0.3s ease;

}

/* Hover por red social */ 
.social-icons a[href*="facebook"]:hover i { color: #1877f2; /* azul Facebook */ } 
.social-icons a[href*="instagram"]:hover i { color: #e1306c; /* rosa Instagram */ } 
.social-icons a[href*="wa.me"]:hover i { color: #54ee25; /* verde WhatsApp */ } 
.social-icons a[href*="tiktok"]:hover i { color: #000000; /* negro TikTok */ }

.footer-custom { 
    background-color: #ffffff; 
    color: #777a7e; /* asegura contraste */ 
}

.footer-custom i {
    color: #1b8d47; /* color llamativo para los íconos */
    font-size: 2rem;
}


/*CONTACTANOS*/
form {
 /* max-width: 600px;*/
  margin: auto;
}

.btn-success {
  background-color: #1b8d47; /* verde institucional */
  border: none;
}
.btn-success:hover {
  background-color: #16753a; /* tono más oscuro al pasar el cursor */
}

/* Aplica bordes más redondeados a los campos */ 
.form-control { 
    border-radius: 50px; /* ajusta el valor según lo curveado que quieras */ 
    padding: 12px 20px; 
    border: 1px solid #ccc;
} /* Botón también con bordes curveados */ 
.btn { 
    border-radius: 50px; /* más redondeado para el botón */ 
    padding: 10px 25px;
    font-weight: bold;
}




