/* Reset básico para garantir que a página tenha um visual limpo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #010101;
    color: #333;
}

header {
    background-color: #1a73e8;
    padding: 20px 0;
    color: white;
}

.top-bar {
    background-color: #0c56b3;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header-container .logo {
    height: 50px;
}

.search-bar {
    padding: 10px;
    width: 400px;
    border: 2px solid #ddd;
    border-radius: 20px;
    font-size: 16px;
}

.cart a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-left: 20px;
}

nav {
    background-color: #0a58ca;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

nav button {
    background-color: #1a73e8;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

nav button:hover {
    background-color: #0c56b3;
}

.banner {
    position: relative;
    margin-top: 20px;
}

.banner img {
    width: 100%;
    height: auto;
}

.promo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.promo-text h1 {
    font-size: 3em;
}

.promo-text .red {
    color: #ff4c4c;
}

section {
    padding: 40px 20px;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #1a73e8;
}

.produtos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.produto {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.produto:hover {
    transform: translateY(-10px);
}

.produto img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

.produto h2 {
    font-size: 1.5em;
    margin-top: 10px;
    color: #333;
}

.preco {
    font-size: 1.2em;
    margin-top: 10px;
    color: #0a58ca;
}

.desconto {
    font-size: 1em;
    color: #ff4c4c;
    margin-top: 5px;
}

button {
    background-color: #1a73e8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #0c56b3;
}


/* Estilo para o footer */
footer {
    background-color: #1a73e8;
    color: white;
    padding: 30px 20px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    margin: 10px;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.footer-section p, .footer-section ul {
    font-size: 1em;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-media a {
    display: inline-block;
    margin-right: 10px;
    color: white;
    text-decoration: none;
}

.social-media a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    background-color: #0c56b3;
    padding: 10px;
}

.footer-bottom p {
    font-size: 0.9em;
}

.destaque-titulo {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(to right, #ffcc00, #ffffff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
footer {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    padding: 20px 0;
    background-color: #222;
}

footer .container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
}

footer .container img {
    margin-right: 15px;
}

footer .container p {
    margin-top: 10px;
}


.btn {
    margin: 0 5px;
}

.whatsapp-icon {
    position: fixed;
    bottom: 50%;
    right: 10px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease-in-out;
}

/* Ícone branco dentro do botão */
.whatsapp-icon i {
    color: white;
}

/* Efeito de hover (quando passa o mouse por cima no PC) */
.whatsapp-icon:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

/* Ajuste para dispositivos móveis menores */
@media (max-width: 768px) {
    .whatsapp-icon {
        right: 5px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

#welcome-message {
    background-color: #1E3A5F;
    color: white;
}

.btn-close {
    filter: invert(1);
}
