@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

/* Tipografía para Móvil */
body {
    font-family:"Ubuntu", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fcffff;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

p {
    font-size: 0.9em;
    margin-bottom: 1em;
}

ul, li {
    list-style: none;
}

/* Botones para Móvil */
button {
    font-size: 0.9em;
    font-weight: bold;
    padding: 5px 15px;
    border: none;
    border-radius: 20pt;
    color: #fcffff;
    background-color: #84b6f4;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #131663;
}

/* Contenedor */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER para Móvil */
header {
    background-color: #fcffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

header .logo {
    flex: 1;
    text-align: center;
}

header .logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s;
    border-radius: 50%;
}

header .menu {
    position: absolute;
    left: 20px;
}

header .logo img:hover {
    transform: scale(1.2);
}

header nav {
    display: none;
}


/*BOTON DE INSTAGRAM*/
.instagram-button {
    position: absolute;
    top: 30px;
    right: 60px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #E4405F, #9B4D96, #FCAF45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-button img {
    margin-top: 2mm;
    width: 35px;
    height: 30px;

}

.instagram-button a {
    display: inline-block;
    text-decoration: none;
}

header a {
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    color: #201c1c;
    transition: color 0.3s ease 0s;
}

header nav a:hover {
    background-color: #0042B5;
    color: #fcffff;
    border-radius: 5pt;
}

header .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #84b6f4;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

header .overlay .overlay-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header .overlay a {
    padding: 15px;
    font-size: 24px;
    text-align: center;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
}

header .overlay a:hover,
header .overlay a:focus {
    color: #194ABF;
}

header .overlay .close {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 65px;
}

header .menu .menu_btn {
    height: 70px;
    width: auto;
}


/* HERO para Móvil */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 30vh;
    background-image: linear-gradient(0deg, rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("images/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fcffff;
}

#hero .container .hero_title{
    text-align: center;
    padding: 10px 20px;
}
#hero .container .hero_title h1 {
    line-height: 1.2;
    margin-bottom: 10px; 
}

#hero .container .hero_title p {
    line-height: 1.2; 
}

#hero .container .hero_text p{
    display: none;
}

#hero .container .hero_text button {
    display: inline-block; 
}

/* MESSAGE para Móvil */
#message {
    padding: 50px 0;
    background-color: #fcffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; 
}

#message .container .message_subtitle {
    font-family: "Oswald", sans-serif;
    font-size: 0.9em;
    color: #333;
    font-optical-sizing: auto;
    font-weight: 600px;
}

#message .container .message_subtitle_2 {
    font-family: "Playfair Display", serif;
    font-size: 0.6em;
    color: #666;
    font-weight: 400px; 
    font-optical-sizing: auto;
    font-style: italic;   
}

/* MAP */
#map {
    padding: 50px 0;
    background-color: #fcffff;
    text-align: center;
}

#map .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#map .map-img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

#map .map-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

#map .map-text {
    text-align: center;
}

#map h2 {
    font-weight: 500;
    font-style: normal;
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

#map p {
    font-size: 1em;

}


#story {
    padding: 50px 0;
    background-color: #fcffff;
    text-align: center;
}

#story .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#story .story-img {
    width: 70%;
    margin-bottom: 20px;
}


#story .story-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

#story .story-text {
    text-align: center;
}

#story h2 {
    font-weight: 500;
    font-style: normal;
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

#story p {
    font-size: 1em;

}

/* DONATE */
#donate {
    padding: 50px 0;
    background-color: #0042B5;
    color: white;
    text-align: center;
}

#donate h2, #donate h3 {
    color: #fcffff;
}

#donate button {
    margin-top: 20px;
}


/* Proceso */
#process {
    padding: 50px 0;
    background-color: #fcffff;
    text-align: center;
}

#process .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.process-step {
    margin-bottom: 30px;
}

.process-image img {
    max-width: 80%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-step h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 1em;
    margin-bottom: 20px;
}

/*Our IMPACT*/

#problem .content, #solution .content {
    flex-direction: column;
    align-items: center;
}

#problem .text, #solution .text, 
#problem .image, #solution .image {
    width: 100%;
    padding: 10px;
}

#problem .text h2, #solution .text h2 {
    font-size: 1.5em;
}

#problem .text p, #solution .text p {
    font-size: 1em;
}

#problem .image img, #solution .image img {
    max-width: 100%;
    height: auto;
}

/* The problem */
#problem {
    padding: 50px 0;
    background-color: #f2f2f2;
}

#problem .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

#problem .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#problem .text {
    flex: 1;
    padding: 20px;
}

#problem .text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

#problem .text p {
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
}

#problem .image {
    flex: 1;
    padding: 20px;
}

#problem .image img {
    max-width: 100%;
    height: auto;
}

/* The Solution*/
#solution {
    padding: 50px 0;
    background-color: #fcffff;
}

#solution .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

#solution .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#solution .text {
    flex: 1;
    padding: 20px;
}

#solution .text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

#solution .text p {
    font-size: 1em;
    line-height: 1.6;
    text-align: justify;
}

#solution .image {
    flex: 1;
    padding: 20px;
}

#solution .image img {
    max-width: 100%;
    height: auto;
}

.campaigns-section {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.campaigns-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.campaign {
    margin-bottom: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.campaign img {
    max-width: 100%;
    
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.campaign h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0056b3;
}

.campaign p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.campaign a {
    color: #0056b3;
    text-decoration: none;
}

.campaign a:hover {
    text-decoration: underline;
}

/*GOVERMENT*/
#government-certificate {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 20px 0;
}

#government-certificate h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-family: "Ubuntu", sans-serif;
}

#government-certificate p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

#government-certificate a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: "Ubuntu", sans-serif;
}

#government-certificate a:hover {
    background-color: #0056b3;
}



/*TESTIMONIO*/

#testimonios {
    background-color: #f7f7f7;
    padding: 40px 20px;
    text-align: center;
}

#testimonios h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.testimonial {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-left: 4px solid #4CAF50; /* Color de la línea de énfasis */
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.testimonial .author {
    font-size: 0.9em;
    font-style: italic;
    color: #333;
    margin-top: 15px;
}


/*ACREDITACION*/
#acreditacion {
    text-align: center;
    padding: 40px 20px;
    background-color: #f3f3f3;
}

#acreditacion h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.acreditacion-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1em;
    color: #ffffff;
    background-color: #4CAF50; /* Color del botón */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.acreditacion-btn:hover {
    background-color: #45a049; /* Color al pasar el cursor */
}




/* FOUNDER */
#founder {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
    display: grid;
}

#founder .img-container {
    width: 70%;
    height: 300px;
    background-color: #e0e0e0;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-image: url("images/founder.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#founder .texto {
    text-align: center;
}

#founder .texto h2{
    line-height: 1.0;
}

#founder .texto i{
    font-size: 15px;
    align-items: center;
}

#founder p{
    text-align: right;
    font-size: small;
    font-style: italic;
}


/* FOOTER */
footer {
    background-color:#0042B5; /*#194ABF*/
    color: white;
    text-align: center;
    padding: 20px 0;
}

.social-media {
    margin-top: 10px;
}

.social-media p {
    font-size: 1rem;
    margin-bottom: 5px;
}

.social-icon {
    width: 30px;
    height: 30px;
}

/* Estilos Responsivos para PC/Laptop */
@media (min-width: 668px) {
    header {
        justify-content: flex-end;
        align-items: center;
        height: 85px;
        padding: 50px 10px;
    }

    header .logo img {
        height: 80px;
        width: auto;
        margin-left: 100px;
    }

    header .navbar li {
        display: inline-block;
    }

    header .navbar li:hover {
        transform: scale(1.1);
    }
    .instagram-button {
        display: none;
    }

    #hero {
        height: 100vh;
        font-size: 20px;
    }

    #hero .container{
        display: grid;
        grid-template-columns: 50% 50%;
    }

    #hero .container .hero_title{
        text-align: left;
        padding-top: 50px;
       
        
    }
    #hero .container .hero_text{
        display: block;
    }

    #hero .container .hero_text p{
        display: block;
        text-align: justify;
        font-size: 20px;
        margin-top: 30px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    button {
        font-size: 1em;
        padding: 8px 20px;
    }

    #message .container {
        padding: 50px 100px;
        text-align: center;
        display: grid;
        grid-gap: 10px;
    }

    #message .container .message_subtitle {
        font-size: 0.9em;
    }

    #message .container .message_subtitle_2 {
        font-size: 0.6em;
    }

    #message button {
        margin-top: 0;
    }

    #map .container {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    #map .map-img {
        margin-right: 50px;
    }

    #map h2 {
        font-size: 2em;
    }

    #map p {
        font-size: 1.2em;
    }

    /*STORY*/

    #story .container {
        flex-direction: row;
        align-items: flex-start;
        text-align: center;
    }

    #story .story-img {
        margin-right: 20px; /* Reduce el margen derecho */
        width: 70%; /* Ancho del 70% en pantallas grandes */
    }

    #story h2 {
        font-size: 2em;
    }

    #story p {
        font-size: 1em;
        margin-top: 0; /* Elimina el margen superior */
        width: 500px;
    }
    /*PROCESO*/

    .process-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        
    }
    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px;
        width: 300px;
        height: 750px;
        position: relative; 
        padding-top: 70px; 
    }

    #step7{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto; 
    }
    .process-image {
        width: 400px; /* Tamaño fijo para los contenedores de las imágenes */
        height: 300px; /* Tamaño fijo para los contenedores de las imágenes */
        border-radius: 50%;
        overflow: hidden; /* Asegura que las imágenes no se salgan del contenedor */
        margin-bottom: 2px;
    }
    .process-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ajusta la imagen para llenar el contenedor */
    }
    .process-step h2 {
        position: absolute;
        top: 20px;
        font-size: 3em;
        background: rgba(43, 2, 246, 0.892);
        border-radius: 50%;
        padding: 10px 20px;
        color: white;
        z-index: 1;
    }

    .process-step h4{
        font-size: 1.5em;
        margin-top: 10px;
    }
    .process-step p {
        margin-top: 10px; /* Asegura que el texto no se superponga al número */
        text-align: center;
    }
    /*IMPACT*/
    #problem .content, #solution .content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }

    #problem .text, #solution .text, 
    #problem .image, #solution .image {
        width: 45%;
        padding: 15px;
    }

    #problem .text h2, #solution .text h2 {
        font-size: 2em;
    }

    #problem .text p, #solution .text p {
        font-size: 1.2em;
    }

    #problem .image img, #solution .image img {
        max-width: 100%;
        height: auto;
    }

    .campaigns-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .campaign {
        padding: 20px;
        margin-bottom: 40px;
        max-width: 80%;
    }

    .campaign h3 {
        font-size: 20px;
    }

    .campaign p {
        font-size: 15px;
    }
    #founder .container {
        display: grid;
        grid-template-columns: 50% 50%;
    }

    #founder .texto {
        max-width: 600px;
        margin: auto;
        padding: auto;
    }

   
}

@media (min-width: 868px) {
    header {
        justify-content: space-between;
        padding: 50px 30px;
    }

    header .logo {
        background-color: none;
        color: none;
        border-radius: 0pt;
    }

    header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    header nav {
        padding-bottom: 0;
        padding-right: 20px;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    header a .menu_btn {
        display: none;
    }

    #hero {
        height: 90vh;
    }

    h1 {
        font-size: 3.5em;
    }

    h2 {
        font-size: 2.7em;
    }

    h3 {
        font-size: 2em;
    }

    p {
        font-size: 1.25em;
    }

    button {
        font-size: 1.2em;
        padding: 10px 30px;
    }

    #message .message_subtitle {
        font-size: 1.5em;
    }

    #message .message_subtitle_2 {
        font-size: 1.2em;
    }

    #map .container {
        flex-direction: row;
        align-items: center;
    }

    #map .map-img {
        margin-right: 20px;
    }

    #map h2 {
        font-size: 2.5em;
    }

    #map p {
        font-size: 1.5em;
    }
    /*STORY*/
    #story .container {
        flex-direction: row;
        align-items: center;
    }

    #story .story-img {
        margin-right: 20px;
    }

    #story h2 {
        font-size: 2.5em;
    }

    #story p {
        font-size: 1em;
    }

    /*IMPACT*/
    .campaigns-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .campaign {
        padding: 25px;
        margin-bottom: 50px;
        max-width: 60%;
    }

    .campaign h3 {
        font-size: 24px;
    }

    .campaign p {
        font-size: 16px;
    }


    #founder .img-container {
        height: 300px;
        width: 300px;
    }
}
