* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('./assets/estoque png.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Segoe UI', sans-serif;
    color: #000;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(90deg, rgba(51, 0, 0, 1) 31%, rgba(105, 0, 2, 1) 66%, rgba(176, 0, 6, 1) 100%);
    color: white;
}

.logo-header {
    width: 130px;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: white;
}

a:hover {
    color: #000000f5;
    transition: 0.5s ease-in-out;
}

.popup-bemvindo {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: #000;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    font-family: 'Segoe UI', sans-serif;
    max-width: 280px;
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.popup-bemvindo button {
    margin-top: 10px;
    background-color: #b00006;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.conteudo {
    padding: 40px 20px;
}

.history,
.info {
    background-color: rgba(160, 3, 3, 0.7);
    padding: 15px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.title-servicos {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.servicos-list {
    list-style: none;
    padding-left: 20px;
}

.servicos-list li {
    margin-bottom: 6px;
}

.main-footer {
    background: linear-gradient(90deg, rgba(51, 0, 0, 1) 31%, rgba(105, 0, 2, 1) 66%, rgba(176, 0, 6, 1) 100%);
    color: white;
    padding: 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.footer-mapa iframe {
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-text {
    font-weight: bold;
    margin-bottom: 10px;
}

.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer li {
    margin-bottom: 6px;
}

.copyright {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}



.whatsapp-logo {
    height: 40px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.whatsapp-logo:hover {
    height: 50px;
}