body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    font-family: "Poppins", sans-serif;   
    color: #424953;
    /*background-color: #f4f4f4;*/
    background-color: #F3EEE6 ;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 0 0px;
    text-align: center;
    max-width: 1000px;
}

.logo {
    max-width: 300px;
    margin: 40px;
}

h1 {
    width: 100%;
    margin-bottom: 40px;
    font-size: 1.8em;
    font-weight: 600;
    line-height: 48px;
    /*color: #424953;*/
    color: #000000;
    letter-spacing: 0.05em;
}

.container {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    flex: 1;
    padding: 10px;
    margin-top: 60px;
}

.image {
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all .4s;
}

.img24 {
    width: 200px;
}

.img25 {
    width: 280px;
}

.image:hover {
    transform: scale(1.3);
    box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.3), 0 55px 50px -35px rgba(0, 0, 0, 0.3), 0 85px 60px -25px rgba(0, 0, 0, 0.1);
}

.text-container {
    flex: 1;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.description {
    /*color: #424953;*/
    color: #000000;
    font-size: 1.4em;
    font-weight: 400;
    margin: 60px 0;
    letter-spacing: 0.1em;
}

.button {
    padding: 10px 20px;
    margin: 40px;
    border-radius: 50px;    
    /*color: #ffffff;*/
    color: #000000;
    font-size: 1.2em;
    text-decoration: none;   
    /*background-color: #ffa500;*/
    background-color: #FFC74A;
    transition: background-color 0.3s;
}

.button:hover {
    /*background-color: #e69500;*/
    background-color: #FFD766;
}

footer {
    width: 100%;
    padding: 10px 0;
    margin-top: 100px;
    /*background-color: #f4f4f4;*/
    background-color: #F3EEE6;
    text-align: center;
    bottom: 0;
}

footer .social-links a {
    color: #424953;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.4em;
    transition: color 0.3s;
}

footer .social-links a:hover {
    /*color: #ffa500;*/
    color: #FFC74A;
}



/* Estilos responsivos para dispositivos móviles */
@media (max-width: 600px) {
    .image {
        width: 80%;
     }
}
