:root{
    --grafite:#41424c;
    --laranja:#F57C00;
    --light:#F4F4F4;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    padding-top:100px;
    color:var(--grafite);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    position:fixed;
    width:100%;
    top:0;
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,0.05);
    z-index:1000;
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo img{
    height:65px;
}

nav a{
    text-decoration:none;
    margin-left:35px;
    color:var(--grafite);
    font-weight:500;
}

.menu-cta{
    background:var(--laranja);
    color:white !important;
    padding:8px 16px;
    border-radius:4px;
}

.hero{
    position:relative;
    height:90vh;
    display:flex;
    align-items:center;
    padding:0 8%;
    color:white;
    background:
    linear-gradient(
	90deg, 
	rgba(43,43,43,0.92) 0%, 
	rgba(43,43,43,0.65) 60%, 
	rgba(43,43,43,0.4) 100%),
    url('../images/hero-saude.png');
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:650px;
}

.hero h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.2;
}

.hero p{
    font-size:18px;
    margin-bottom:35px;
    opacity:0.95;
}


.btn{
    background:var(--laranja);
    padding:15px 30px;
    color:white;
    text-decoration:none;
    border-radius:4px;
}

.section{
    padding:120px 0;
}

.bg-light{
    background:var(--light);
}

.bg-dark{
    background:var(--grafite);
    color:white;
}

.section-title{
    margin-bottom:40px;
    font-size:32px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.card{
    background:white;
    padding:30px;
    border-radius:8px;
}

.contato-container{
    display:flex;
    gap:60px;
    flex-wrap:wrap;
}

.contato-card{
    background:var(--grafite);
    color:white;
    padding:20px;
    border-radius:8px;
    display:flex;
    gap:20px;
    margin-top:20px;
}

.icon{
    background:var(--laranja);
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

footer{
    background:var(--grafite);
    color:white;
    text-align:center;
    padding:30px;
}