
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.topbar {
    background: #0078ff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: 45px;
}

.cep {
    background: none;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}


.search-box {
    flex: 1;
    max-width: 600px;
    position: relative;
}
.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 15px;
}
.search-box .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
    font-size: 18px;
}

/* Ícones */
.icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}
.login a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}
.login a:hover {
    text-decoration: underline;
}


.menu {
    background: white;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
    border-bottom: 1px solid #ddd;
}
.menu a {
    text-decoration: none;
    color: #0078ff;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 8px;
}
.menu a:hover {
    background-color: #e6f2ff;
}


.telao, .otela {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.telao img, .otela img {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
}

.redirecionamento {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    flex-wrap: wrap;
    max-width: 90%;
}
.redirecionamento img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.redirecionamento img:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.produtos {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.produtos h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0078ff;
}


.produtos-grid {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;        
    gap: 30px;               
}

.card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    width: 230px;             
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



.card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.card .nome {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.card .preco {
    font-size: 16px;
    font-weight: bold;
    color: #0078ff;
    margin-bottom: 10px;
}

.card button {
    background: #0078ff;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.card button:hover {
    background: #005ecb;
}
