body{

font-family: Arial;
margin:0;
background:#040271;

}

header{

background:#040271;
color:orangered;
padding:20px;
text-align:center;

}

nav a{

color:#040271;
margin:10px;
text-decoration:none;
font-weight:bold;

}

.hero{

text-align:center;
padding:100px;
background:#040271;
color:orangered;

}

.botao{

display:inline-block;
background:orangered;
color:white;
padding:12px 20px;
text-decoration:none;
margin-top:10px;

}

.container{

padding:40px;
color:white;

}

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;

}

.card{

background:orange;
padding:20px;
text-align:center;
border-radius:5px;

}

.card img{

width:100%;
height:200px;
object-fit:cover;

}

.foto{

width:400px;

}

.menu{

display:flex;
justify-content:space-between;
align-items:center;

}

.menu-esquerda a{

color:#040271;
margin:10px;
text-decoration:none;
font-weight:bold;

}

.menu-direita a{

color:white;
text-decoration:none;
font-weight:bold;
margin-right:10px;

}

.admin-btn{

padding:6px 12px;
border-radius:4px;
background:#040271;

}

.admin-btn:hover{

background:rgba(255,255,255,0.3);

}

.alerta{
padding:10px;
margin-bottom:20px;
border-radius:5px;
font-weight:bold;
}

.erro{
background:#ffdddd;
color:#a30000;
}

.sucesso{
background:#ddffdd;
color:#006600;
}

.header{

display:flex;
justify-content:space-between;
align-items:center;
background:black;
color:white;
padding:10px 20px;

}

.header-left{

display:flex;
align-items:center;
gap:30px;

}

.logo-area{

display:flex;
align-items:center;
gap:10px;

}

.logo{

height:45px;

}

.menu a{

color:white;
text-decoration:none;
margin-right:15px;
font-weight:bold;

}

.admin-btn{

color:white;
text-decoration:none;
background:rgb(255, 72, 0);
padding:6px 12px;
border-radius:5px;
font-size:14px;

}

.botao-whatsapp{

display:inline-block;
background:#25D366;
color:white;
padding:12px 20px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
margin-top:15px;

}

.botao-whatsapp:hover{

background:#1ebe5d;

}

.lista-lojas{

display: grid;
grid-template-columns: repeat(3, 1fr);
gap:20px;

}

.loja{

width: 100%;

}

/* ===== RESPONSIVO ===== */

/* Tablet */
@media (max-width: 768px){

.hero{
padding:50px 20px;
}

.container{
padding:20px;
}

.lista-lojas{
grid-template-columns: repeat(2, 1fr);
}

.header{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.header-left{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

.menu{
flex-wrap:wrap;
}

}

/* Celular */
@media (max-width: 480px){

.lista-lojas{
grid-template-columns: 1fr;
}

.logo{
height:35px;
}

.hero{
padding:40px 15px;
font-size:14px;
}

.botao{
padding:10px 15px;
font-size:14px;
}

.botao-whatsapp{
width:100%;
text-align:center;
}

.menu a{
display:block;
margin:5px 0;
}

.admin-btn{
font-size:12px;
padding:5px 10px;
}

}

.card{

transition:0.3s;

}

.card:hover{

transform:translateY(-5px);
box-shadow:0 5px 15px rgba(0,0,0,0.2);

}

#formNovaLoja{
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 0 10px white;
}

.form-contato{

display:flex;
flex-direction:column;
gap:10px;
max-width:500px;

}

.form-contato input,
.form-contato textarea{

padding:10px;
border-radius:5px;
border:1px solid #ccc;

}

.form-contato textarea{

min-height:120px;
resize:none;

}

.contato-wrapper{

display:flex;
gap:30px;
align-items:center;
justify-content:center;
flex-wrap:wrap;

}

.contato-imagem{

flex:1;
text-align:center;

}

.contato-imagem img{

width:100%;
max-width:400px;
border-radius:10px;

}

.contato-form{

flex:1;
max-width:500px;

}

@media (max-width: 768px){

.contato-wrapper{

flex-direction:column;

}

.contato-imagem{

order:-1; /* imagem sobe */

}

}

/* RESET BASICO */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* FUNDO FIXO */
.bg-fixo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('../img/fundo.jpeg') no-repeat center center;
    background-size: cover;

    z-index: -1;
}

/* CONTEUDO NA FRENTE */
.conteudo {
    position: relative;
    z-index: 1;
}

/* HERO COM FUNDO TRANSPARENTE */
.hero {
    text-align: center;
    padding: 120px 20px;
    color: white;

    background: rgba(0, 0, 0, 0.5); /* efeito escuro igual ao exemplo */
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
    }

    .menu {
        flex-direction: column;
        text-align: center;
    }
}

.hero {
    backdrop-filter: blur(5px);
}

/* HERO NOVO */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    padding: 100px 20px;
    color: white;

    background: rgba(0,0,0,0.5);
}

.hero-logo {
    width: 100px;
}

.hero-text h2 {
    font-size: 32px;
    margin: 0;
}

.hero-text p {
    margin: 5px 0 0;
    font-size: 18px;
}

/* SEÇÕES */
.secao {
    padding: 60px 20px;
}

/* GRID */
.grid-2 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARDS */
.card {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card h3 {
    margin-bottom: 10px;
}

/* BOTÃO */
.botao {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;

    background: #ff3c3c;
    color: white;
    text-decoration: none;

    border-radius: 5px;
    transition: 0.3s;
}

.botao:hover {
    background: #cc2f2f;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo {
        width: 80px;
    }

    .card {
        width: 90%;
    }

}
backdrop-filter: blur(6px);

