/* style.css */

body {
    
    font-family: "Montserrat", sans-serif;

    margin: 0;
    padding: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 768px; 
    width: 100%;
    background-color: #0061A8; 
    color: white;
    text-align: center;
}

.header h1 {
    font-size: clamp(2rem, 1.1304rem + 4.3478vw, 3.25rem);
    font-weight: 700;  
    margin: 30px 0;
}

.img-latte-stella {
    width: 100%;       
    display: block;    
}

.block-text-image {
    background-color: #e6007e; 
    color: white;               
    padding: 40px 20px;              
    text-align: left;           
    display: flex;
    align-items: center;
    gap: 20px;
}

.block-text-image img {
    max-width: 250px;
}

.block-text-image p {
    margin: 5px 0;
    font-weight: 500;
    font-size: clamp(1.125rem, 1.0536rem + 0.3571vw, 1.375rem);
    line-height: 110%;
    text-align: center;
}


.block-social {
    padding: 32px 20px;

    font-weight: 500;
    font-size: clamp(1rem, 0.9643rem + 0.1786vw, 1.125rem);
    line-height: 110%;
    text-align: center;

    display: flex;
    justify-content: center; 
    align-items: center;     
    gap: 30px;               
}

.block-social a {
    color: white;              
    text-decoration: none;     
    
    display: flex;
    align-items: center;
    gap: 8px; 
}

.block-social a img {
    width: 24px; 
}

.block-social p {
    margin: 0;
}

/* --- FOOTER --- */
.footer {
    background-color: white;
    color: #656565;
    padding: 30px 20px;
    font-weight: 600;
    font-size: 12px;
    line-height: 110%;
}

/* MOBILE */
@media (max-width: 768px) {
    .block-text-image
    {
        flex-direction: column-reverse;
        align-items: center;
    }

    .block-social
    {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
