@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Fira Sans;
    background-color: #34444F;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #489DF2;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.texto{
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #E2E8F0;
}

.user-icon {
    display: flex;
    align-items: center;
}

.user-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.back-button {
    background-color: #8CA3B0;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 20px; 
    display: inline-block;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #547084;
}

.buy-button {
    padding: 10px 20px;
    background-color: #8CA3B0;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #547084;
}

footer {
    background-color: #7FBBF3;
    color: 547084;
    padding: 50px 0;
    margin-top: auto; 
}

.container-footer {
    max-width: 1400px;
    padding: 0 4%;
    margin: 0 auto;
}

.row-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 25%;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 10px 0;
    display: block;
}

.footer-col ul li a:hover {
    padding-left: 10px;
    color: #cecdcd;
}

.form-sub input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid white;
    background-color: #2469a8;
    color: white;
    outline: none;
    margin-bottom: 10px;
}

.form-sub button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: white;
    color: #729aa6;
    cursor: pointer;
    font-weight: bold;
}

.medias-socias a img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

@media (max-width: 800px) {
    .footer-col {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .footer-col {
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .site-header {
        padding: 10px 15px;
    }

    .navigation {
        gap: 20px;
    }
}

@media (max-width: 800px) {
    .site-header {
        flex-direction: column;
        align-items: center;
    }

    .navigation {
        flex-direction: column;
        gap: 15px;
    }

    footer .footer-col {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .footer-col {
        width: 100%;
    }
}