/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* BODY */

body{
font-family:Arial, Helvetica, sans-serif;
background:#f5f7fa;
color:#222;
line-height:1.7;
}

/* CONTAINER */

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

/* HEADER */

.header{
background:#071b3a;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

.logo{
font-size:28px;
font-weight:bold;
color:white;
}

.logo span{
color:#ff9900;
}

/* MENU */

nav{
display:flex;
gap:20px;
}

nav a{
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#ff9900;
}

/* BUSCA */

.search input{
padding:12px 16px;
border:none;
border-radius:30px;
width:250px;
outline:none;
}

/* HERO */

.hero{
background:white;
padding:80px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero h1{
font-size:54px;
line-height:1.1;
margin:20px 0;
}

.hero p{
font-size:20px;
color:#555;
margin-bottom:25px;
}

.hero-image img{
width:100%;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* BADGE */

.badge{
display:inline-block;
background:#ffe7c2;
padding:8px 16px;
border-radius:25px;
font-weight:bold;
}

/* BOTÕES */

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:#ff9900;
color:white;
padding:15px 25px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.btn-primary:hover{
background:#e28700;
}

.btn-secondary{
border:2px solid #ddd;
padding:15px 25px;
border-radius:10px;
text-decoration:none;
color:#222;
font-weight:bold;
transition:.3s;
}

.btn-secondary:hover{
background:#f0f0f0;
}

/* BENEFÍCIOS */

.benefits{
margin-top:-30px;
padding-bottom:40px;
}

.benefit-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.benefit-card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.benefit-card h3{
margin-bottom:10px;
}

/* SEÇÕES */

.products-section{
padding:60px 0;
}

.products-section h2{
font-size:36px;
margin-bottom:30px;
}

/* PRODUTOS */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.product-card{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.product-card:hover{
transform:translateY(-5px);
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:12px;
margin-bottom:15px;
}

.product-card h3{
margin-bottom:10px;
}

.product-card p{
margin-bottom:15px;
color:#555;
}

/* ESTRELAS */

.rating{
margin-bottom:15px;
font-size:18px;
}

/* BOTÃO AMAZON */

.amazon-btn{
display:block;
text-align:center;
background:#ff9900;
color:white;
padding:14px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.amazon-btn:hover{
background:#e28700;
}

/* NEWSLETTER */

.newsletter{
background:white;
padding:70px 0;
text-align:center;
}

.newsletter h2{
font-size:36px;
margin-bottom:15px;
}

.newsletter p{
margin-bottom:20px;
}

.newsletter form{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
}

.newsletter input{
padding:14px;
width:320px;
border:1px solid #ddd;
border-radius:10px;
}

.newsletter button{
padding:14px 25px;
background:#ff9900;
color:white;
border:none;
border-radius:10px;
cursor:pointer;
font-weight:bold;
}

/* PÁGINAS INTERNAS */

.page-header{
background:white;
padding:60px 0;
text-align:center;
}

.page-header h1{
font-size:42px;
margin-bottom:10px;
}

.content{
background:white;
padding:40px;
margin-top:30px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.content h2{
margin-top:25px;
margin-bottom:10px;
}

.content ul{
padding-left:25px;
}

/* FORMULÁRIO */

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
margin-top:20px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border:1px solid #ddd;
border-radius:10px;
outline:none;
}

.contact-form button{
background:#ff9900;
color:white;
border:none;
padding:14px;
border-radius:10px;
cursor:pointer;
font-weight:bold;
}

/* FOOTER */

footer{
background:#071b3a;
color:white;
margin-top:60px;
padding:50px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:30px;
}

footer a{
display:block;
color:white;
text-decoration:none;
margin-bottom:10px;
}

footer a:hover{
color:#ff9900;
}

.affiliate-notice{
text-align:center;
margin-top:30px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.2);
font-size:14px;
}

/* RESPONSIVO */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:38px;
}

.benefit-grid{
grid-template-columns:1fr 1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

.search input{
width:100%;
}

}

@media(max-width:600px){

.hero{
padding:50px 0;
}

.hero h1{
font-size:30px;
}

.benefit-grid{
grid-template-columns:1fr;
}

.newsletter input{
width:100%;
}

}