*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'DM Sans',sans-serif;
font-weight:300;
background:#bebebe;
color:#000000;
line-height:1.6;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:rgba(0,0,0,.12);
backdrop-filter:blur(3px);
}

.header .container{
position:relative;
display:flex;
justify-content:space-between;
align-items:center;
padding:8px 0;
}

.logo img{
height:62px;
}

.header.scrolled{
background:rgba(0,0,0,.12);
backdrop-filter:blur(3px);
}

.menu{
display:flex;
gap:22px;
align-items:center;
}

.header.scrolled .menu a{
color:#000000;
}

.menu a:hover{
color:#FE3638;
}

.menu-toggle{
display:none;
background:none;
border:none;
color:#ffffff;
font-size:30px;
cursor:pointer;
position:absolute;
right:0;
top:50%;
transform:translateY(-50%);
}

/* HERO */

.hero{
position:relative;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
padding:0 20px;
}

.hero-tag{
display:block;
margin-bottom:20px;
color:#ffffff;
font-size:32px;
font-weight:300;
letter-spacing:2px;
text-transform:none;
text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.hero h1{
font-size:58px;
font-weight:400;
line-height:1.1;
margin-bottom:25px;
color:#ffffff;
}

.menu a{
color:#ffffff;
text-decoration:none;
font-size:12px;
font-weight:500;
letter-spacing:1px;
white-space:nowrap;
transition:.3s;
}

.hero p{
font-size:20px;
font-weight:300;
max-width:700px;
margin:auto;
color:#ffffff;
}

.hero-buttons{
margin-top:40px;
}

/* BOTÕES */

.btn-primary,
.btn-secondary{
display:inline-block;
padding:15px 30px;
border-radius:30px;
text-decoration:none;
margin:10px;
transition:.3s;
}

.btn-primary{
background:rgba(255,255,255,.08);
backdrop-filter:blur(6px);
-webkit-backdrop-filter:blur(6px);
border:1px solid rgba(254,54,56,.8);
color:#ffffff;
box-shadow:0 4px 20px rgba(0,0,0,.15);
}

.btn-primary:hover{
background:#FE3638;
border-color:#FE3638;
color:#ffffff;
transform:translateY(-2px);
}

.btn-secondary{
background:#cccccc;
color:#000;
}

.btn-secondary:hover{
background:#ffffff;
}

/* SEÇÕES */

.section{
padding:100px 0;
}

.section h2{
text-align:center;
font-size:42px;
font-weight:400;
margin-bottom:50px;
color:#000000;
}

/* CONTENT BOX */

.content-box{
background:#ffffff;
color:#000000;
padding:40px;
border-radius:20px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.seguradoras-grid{
margin-top:40px;
}

#seguradoras .content-box p{
text-align:center;
max-width:700px;
margin:0 auto 40px auto;
font-size:18px;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.card-link{
text-decoration:none;
color:inherit;
display:block;
}

.card-link:hover{
text-decoration:none;
}

.card{
background:#ffffff;
padding:35px;
border-radius:20px;
color:#000;
transition:.3s;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.card i{
font-size:45px;
margin-bottom:20px;
color:#FE3638;
}

.card h3{
margin-bottom:15px;
font-weight:500;
}

/* FUNDADORA */

.fundadora-box{
display:flex;
align-items:center;
gap:50px;
background:#ffffff;
padding:40px;
border-radius:20px;
}

.fundadora-foto img{
width:320px;
height:320px;
object-fit:cover;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.fundadora-texto{
color:#000000;
}

.fundadora-texto h3{
font-size:32px;
font-weight:400;
margin-bottom:20px;
color:#FE3638;
}

.fundadora-texto p{
margin-bottom:15px;
line-height:1.8;
}

.fundadora-social{
display:flex;
justify-content:center;
gap:15px;
margin-top:20px;
}

.fundadora-social a{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
background:#FE3638;
color:#ffffff;
border-radius:50%;
text-decoration:none;
font-size:20px;
transition:.3s;
}

.fundadora-social a:hover{
transform:translateY(-3px);
opacity:.85;
}

/* SEGURADORAS */

.seguradoras-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
margin-top:40px;
align-items:center;
}

.seguradoras-grid img{
width:100%;
max-width:150px;
display:block;
margin:auto;
filter:grayscale(100%);
transition:.3s;
}

.seguradoras-grid img:hover{
filter:none;
}

/* CTA */

.cta{
padding:100px 20px;
text-align:center;
background:#FE3638;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
font-size:18px;
}

.cta .btn-primary{
background:#ffffff;
color:#000000;
}

/* CONTATO */

.contato-box{
display:flex;
gap:40px;
align-items:stretch;
background:#ffffff;
padding:40px;
border-radius:20px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
justify-content:space-between;
}

.footer{
background:#222222;
padding:60px 20px;
text-align:center;
color:#ffffff;
}

.contato-info{
width:45%;
}

.contato-mapa{
width:55%;
display:flex;
}

.contato-info h3{
color:#000000;
margin-bottom:25px;
font-size:28px;
font-weight:300;
}

.contato-info p{
margin-bottom:20px;
line-height:1.8;
}

.endereco{
display:flex;
align-items:flex-start;
gap:4px;
}

.endereco span{
display:block;
margin-left:-4px;
}

.contato-info i{
width:35px;
color:#FE3638;
font-size:20px;
vertical-align:middle;
}

.contato-info a{
color:#FE3638;
text-decoration:none;
font-weight:300;
}

.contato-mapa iframe{
width:100%;
height:450px;
border:0;
border-radius:15px;
}

/* RESPONSIVO CONTATO */

@media(max-width:1250px){

.contato-box{
flex-direction:column;
}

.contato-info{
width:100%;
}

.contato-mapa{
width:100%;
margin-top:20px;
}

.contato-mapa iframe{
width:100%;
height:350px;
min-height:350px;
display:block;
}

}

/* FOOTER */

.footer{
background:#222222;
padding:60px 20px;
text-align:center;
}

.footer-logo img{
height:70px;
margin-bottom:20px;
}

.footer p{
color:#ffffff;
margin-bottom:10px;
}

/* RESPONSIVO */

@media(max-width:1150px){

.logo img{
height:42px;
}

.menu-toggle{
display:block;
}

.menu{
display:none;
position:absolute;
top:60px;
right:15px;
background:#333333;
padding:20px;
border-radius:15px;
flex-direction:column;
width:220px;
box-shadow:0 10px 30px rgba(0,0,0,.30);
}

.menu.active{
display:flex;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

.section{
padding:70px 0;
}

.content-box{
padding:25px;
}

.fundadora-box{
flex-direction:column;
text-align:center;
}

.fundadora-foto img{
width:240px;
height:240px;
}

.btn-primary,
.btn-secondary{
display:block;
max-width:300px;
margin:10px auto;
}

}

/* PRELOADER */

#preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#333333;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
transition:opacity .5s ease;
}

.loader-content{
text-align:center;
}

.loader-content img{
height:90px;
margin-bottom:30px;
}

.loader-spinner{
width:50px;
height:50px;
border:4px solid rgba(255,255,255,.2);
border-top:4px solid #FE3638;
border-radius:50%;
margin:auto;
animation:spin 1s linear infinite;
}

@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

.preloader-hide{
opacity:0;
pointer-events:none;
}

.quem-somos-box{
background:#ffffff;
}

.whatsapp-float{
position:fixed;
right:25px;
bottom:35px;
width:65px;
height:65px;
background:#25D366;
color:#ffffff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
text-decoration:none;
z-index:9999;
box-shadow:0 5px 20px rgba(0,0,0,.25);
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.08);
}

.subtitulo-contato{
font-size:22px;
color:#555555;
font-weight:300;
}

.secao-descricao{
text-align:center;
max-width:700px;
margin:0 auto 40px auto;
font-size:18px;
color:#555555;
}