*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:Arial, Helvetica, sans-serif;
}

body{
	background:#fff;
	color:#222;
}

.container{
	width:95%;
	max-width:1280px;
	margin:auto;
}

/* HEADER */

header{
	background:#fff;
	border-bottom:1px solid #eee;
}

.nav{
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.logo img{
	height:170px;
	width: auto;
    display: block;

}

nav ul{
	display:flex;
	gap:60px;
	list-style:none;
}

nav a{
	text-decoration:none;
	color:#111;
	font-weight:700;
}

.btn-whatsapp{
    display:flex;
    align-items:center;
    padding:14px 22px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    position:fixed;
    right:25px;
    bottom:25px;
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    transition:.3s;
}

.btn-whatsapp:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,211,102,.45);
}

.btn-whatsapp img{
    width:28px;
    height:28px;
}

	/* BANNER */

.banner{
	height:600px;

	background-image:
	linear-gradient(
	90deg,
	rgba(0,0,0,.85) 0%,
	rgba(0,0,0,.60) 35%,
	rgba(0,0,0,.20) 70%,
	rgba(0,0,0,.05) 100%
	),
	url("../images/bannecadeira.png");

	background-size:85% auto;
	background-position:right center;
	background-repeat:no-repeat;
	background-color:#111;

	display:flex;
	align-items:center;
}

.banner-content{
	max-width:1280px;
	width:100%;
	margin:auto;
	padding-left:80px;
	color:white;
}

.banner-content span{
	color:#2D8CFF;
	font-weight:bold;
	letter-spacing:2px;
}

.banner-content h1{
	color: #0B3D91;
	font-size:64px;
	margin:15px 0;
	line-height:1.1;
}

.banner-content p{
	font-size:22px;
	max-width:550px;
	line-height:1.5;
}

/* INTRO */

.intro{
	padding:80px 0 40px;
	text-align:center;
}

.intro h2{
	font-size:52px;
	background:#0B3D91 ;
	color:#fff;
	margin-bottom:15px;
}

.intro p{
	color:#666;
	font-size:18px;
}

/* PRODUTOS */

.produtos{
	padding-bottom:80px;
}

.grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:25px;
}

.produto-card{
	display: flex;
	flex-direction: column;
	height: 100%;
	background:#fff;
	border-radius:25px;
	overflow:hidden;
	box-shadow:0 8px 25px rgba(0,0,0,.08);
	transition:.3s;
}

.produto-card:hover{
	transform:translateY(-8px);
}

.produto-card .img1{
    width:100%;
    height:300px;
    display:flex;
    
}

.produto-card img{
	width:100%;
	height:300px;
	object-fit:contain;

background:
	linear-gradient(
	to bottom,
	rgb(154,162,171),
	rgb(195,201,208),
	rgb(220,224,228),
	rgb(242,244,246)
);
}

.produto-card h3{
	padding:0 20px 10px;
	color:#0B3D91;
	min-height:60px;
}

.produto-card p{
	padding:0 20px;
	color:#555;
	min-height:80px;
}

.produto-card li{
	margin-bottom: 15px;
	margin-left: 13px;
	text-align: left;
}

.produto-card a{
	display:block;
	margin:0 20px 20px;
	text-align:center;
	background:#0B3D91;
	color:white;
	text-decoration:none;
	padding:12px;
	border-radius:8px;
	font-weight:bold;
}

.produto-card{
    display:flex;
    flex-direction:column;
}

.produto-info{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:20px;
}

.produto-info ul{
    flex:1;
    margin-bottom:20px;
}

.btn-produto{
    margin-top:auto;
}

/* CTA */

.cta{
background:#081C45;
color:white;
text-align:center;
padding:80px 0;
}

.cta h2{
font-size:42px;
margin-bottom:15px;
}

.cta p{
margin-bottom:30px;
}

.btn-cta{
display:inline-block;
padding:15px 50px;
background:#2D8CFF;
color:white;
text-decoration:none;
border-radius:18px;
font-weight:bold;
}

/* FOOTER */

footer{
background:#06142F;
color:white;
text-align:center;
padding:40px 0;
}

/* RESPONSIVO */

@media(max-width:768px){

.grid{
grid-template-columns:repeat(2,1fr);
}

.banner-content h1{
font-size:48px;
}

}

@media(max-width:768px){

.grid{
grid-template-columns:1fr;
}

nav{
display:none;
}

.banner{
height:500px;
background-size:cover;
}

.banner-content{
padding-left:30px;
}

.banner-content h1{
font-size:36px;
}

.banner-content p{
font-size:18px;
}

}

.modal-imagem{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.85);

    justify-content:center;
    align-items:center;
}

.modal-conteudo{

    padding:40px;

    border-radius:15px;

    background:
    linear-gradient(
        to bottom,
        rgb(154,162,171),
        rgb(195,201,208),
        rgb(220,224,228),
        rgb(242,244,246)
    );

    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.modal-conteudo img{
    max-width:700px;
    max-height:550px;
    width:auto;
    height:auto;
    display:block;
}

.fechar{
    position:absolute;
    top:20px;
    right:35px;
    color:white;
    font-size:45px;
    cursor:pointer;
}