@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

header {
    background-color: rgba(51, 51, 51, 0.8);
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: block;
    padding: 0.8rem 1.6rem;
    background-color: #4a4a4a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    text-align: center;
    min-width: 200px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}

.btn:hover {
    background-color: #333;
}

.btn-mayoristas {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    padding: 10px 15px;
    background-color: #333333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', Arial, sans-serif;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px 5%;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info, .footer-plant, .footer-right {
    flex: 1;
}

.footer-info {
    text-align: left;
    padding-right: 10px;
}

.footer-info h3 {
    font-size: 0.9em;
    margin-bottom: 8px;
}

.footer-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-info li, .footer-plant p {
    font-size: 0.8em;
    margin-bottom: 3px;
    line-height: 1.3;
}

.footer-plant {
    text-align: left;
    padding-left: 10px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    margin-bottom: 3px;
    font-size: 0.8em;
}

.footer-logo img {
    max-width: 80px;
    height: auto;
    margin-top: 10px;
}

.footer-copyright {
    text-align: center;
    margin-top: 10px;
    font-size: 0.7em;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-info, .footer-plant, .footer-right {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-social {
        align-items: flex-start;
    }
    header h1 {
        font-size: 1.2rem;
    }
    .btn {
        font-size: 0.9rem;
        min-width: 180px;
    }
    .btn-mayoristas {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1rem;
    }
    .btn {
        font-size: 0.8rem;
        min-width: 160px;
    }
    footer {
        font-size: 0.8rem;
    }
    .btn-mayoristas {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}