
/*
Theme Name: ASDA Pro
Author: OpenAI
Version: 2.0
Description: Tema WordPress institucional moderno para ASDA
*/

*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:Arial,sans-serif;
line-height:1.7;
background:#f7f7f7;
color:#222;
}

header{
position:fixed;
top:0;
width:100%;
z-index:999;
background:rgba(0,0,0,.78);
padding:20px 50px;
backdrop-filter:blur(10px);
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

.logo{
font-size:26px;
font-weight:bold;
color:white;
}

.hero{
height:100vh;
background:url('assets/images/hero.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
padding:20px;
color:white;
}

.hero h1{
font-size:72px;
margin-bottom:20px;
}

.hero p{
font-size:24px;
}

.btn{
display:inline-block;
margin-top:30px;
padding:14px 28px;
background:#2e8b57;
color:white;
border-radius:40px;
text-decoration:none;
font-weight:bold;
}

.section{
padding:100px 60px;
}

.section h2{
font-size:42px;
margin-bottom:25px;
color:#1d3928;
}

.section-alt{
background:#edf3ee;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:30px;
}

.card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

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

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-content{
padding:24px;
}

.news{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:40px;
}

.news-item{
background:white;
padding:25px;
border-radius:18px;
box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.carousel{
display:flex;
gap:20px;
overflow-x:auto;
padding:10px 0;
}

.partner{
background:white;
min-width:220px;
padding:30px;
border-radius:14px;
text-align:center;
font-weight:bold;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

footer{
background:#111;
color:white;
padding:60px 40px;
text-align:center;
}

.fade{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.fade.visible{
opacity:1;
transform:translateY(0);
}

@media(max-width:768px){
.hero h1{font-size:42px}
.section{padding:80px 25px}
nav ul{display:none}
}
