/* ==========================================================
   MASTER HOSPITALAR
   Desenvolvido por Lucas Corrêa + ChatGPT
========================================================== */


/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#FFFFFF;

    color:#344054;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* ==========================================================
   CORES
========================================================== */

:root{

    --azul:#1577B8;

    --azulEscuro:#071B2D;

    --verde:#74C044;

    --cinza:#F7F9FC;

    --texto:#475467;

    --branco:#FFFFFF;

    --shadow:0 20px 60px rgba(0,0,0,.10);

}

/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(1280px,92%);

    margin:auto;

}

/* ==========================================================
   HEADER
========================================================== */

.header{

    position:fixed;

    width:100%;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(21,119,184,.08);

}
.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:25px 0;

}

.logo img{

    width:250px;

}
.menu ul{

    display:flex;

    gap:45px;

}

.menu a{

    color:#1F2937;

    font-weight:600;

    transition:.30s;

}

.menu a:hover{

    color:var(--verde);

}

.btn-header{

    background:var(--verde);

    color:white;

    padding:16px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.30s;

}

.btn-header:hover{

    transform:translateY(-4px);

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:180px;

    padding-bottom:80px;

}
.hero-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}
.hero-left{

    width:500px;

    flex-shrink:0;

}
.hero-right{

    flex:1;

    position:relative;

}
.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:12px 24px;

    background:#EAF8E4;

    color:#63B532;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:35px;

}
.hero h2{

    margin-top:30px;

    font-size:86px;

    font-family:Poppins;

    color:var(--azulEscuro);

    line-height:1;

}

.hero-slogan{

    margin-top:18px;

    font-size:24px;

    line-height:36px;

    color:#475467;

}

.hero h1{

    margin-top:35px;

    font-family:Poppins;

    font-size:64px;

    line-height:62px;

    color:var(--azul);

}

.hero-description{

    margin-top:28px;

    font-size:20px;

    line-height:34px;

    color:#475467;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.btn-primary{

    background:var(--verde);

    color:white;

    padding:18px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.30s;

}

.btn-secondary{

    border:2px solid var(--azul);

    color:var(--azul);

    padding:18px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.30s;

}

.btn-primary:hover,
.btn-secondary:hover{

    transform:translateY(-5px);

}
/* ==========================================================
   HERO - IMAGEM
========================================================== */

.hero-right{

    flex:1.3;

}
.hero-left{

    flex:1;

}
.hero-image{

    width:100%;

    border-radius:40px;

}
.hero-image:hover{

    transform:scale(1.015);

}

/* ==========================================================
   CARD BPDA
========================================================== */

/* ==========================================================
   BPDA
========================================================== */

.bpda-card{

    position:absolute;

    left:30px;

    bottom:30px;

    width:120px;

    height:120px;

    background:linear-gradient(180deg,#FFFFFF,#F4F8FC);

    border:1px solid rgba(21,119,184,.08);

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    transition:.35s ease;

    z-index:20;

}

.bpda-card:hover{

    transform:translateY(-6px) scale(1.05);

    box-shadow:0 30px 70px rgba(0,0,0,.22);

}

.bpda-card img{

    width:78px;

}
/* ==========================================================
   HIGHLIGHTS
========================================================== */

.highlights{

    padding:80px 0;

    background:#F7F9FC;

}

.highlights .container{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.highlight-card{

    background:#FFFFFF;

    padding:35px 25px;

    border-radius:24px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    border-top:4px solid transparent;

}

.highlight-card:hover{

    transform:translateY(-8px);

    border-color:var(--verde);

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.highlight-card i{

    font-size:34px;

    color:var(--azul);

    margin-bottom:18px;

}

.highlight-card h3{

    font-size:24px;

    font-family:Poppins;

    color:var(--azulEscuro);

    margin-bottom:10px;

}

.highlight-card p{

    font-size:15px;

    line-height:25px;

    color:#64748B;

}

/* ==========================================================
   TÍTULOS DAS SEÇÕES
========================================================== */

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px auto;

}

.section-title span{

    display:inline-block;

    color:var(--verde);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-title h2{

    font-family:Poppins;

    font-size:52px;

    line-height:60px;

    color:var(--azulEscuro);

    margin-bottom:25px;

}

.section-title p{

    color:#64748B;

    line-height:32px;

    font-size:18px;

}
/* ==========================================================
   QUEM SOMOS
========================================================== */

.empresa{

    padding:120px 0;

    background:#FFFFFF;

}

.empresa-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.section-tag{

    display:inline-block;

    color:var(--verde);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.empresa h2{

    font-family:Poppins;

    font-size:52px;

    line-height:60px;

    color:var(--azulEscuro);

    margin-bottom:30px;

}

.empresa p{

    font-size:18px;

    line-height:34px;

    color:#64748B;

    margin-bottom:20px;

}

.empresa-lista{

    margin-top:40px;

    display:grid;

    gap:18px;

}

.empresa-lista div{

    display:flex;

    align-items:center;

    gap:15px;

    background:#F8FAFC;

    padding:18px 22px;

    border-radius:18px;

    transition:.35s;

}

.empresa-lista div:hover{

    transform:translateX(10px);

    background:#EDF7E8;

}

.empresa-lista i{

    color:var(--verde);

    font-size:22px;

}

.empresa-right img{

    border-radius:35px;

    box-shadow:0 35px 90px rgba(0,0,0,.15);

}

/* ==========================================================
   ESPECIALIDADES
========================================================== */

.especialidades{

    padding:120px 0;

    background:#F7F9FC;

}

.especialidades-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.especialidade-card{

    background:#FFF;

    padding:45px 35px;

    border-radius:30px;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    border-bottom:5px solid transparent;

}

.especialidade-card:hover{

    transform:translateY(-10px);

    border-bottom:5px solid var(--verde);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.card-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#EAF8E4;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

}

.card-icon i{

    font-size:32px;

    color:var(--verde);

}

.especialidade-card h3{

    font-family:Poppins;

    font-size:26px;

    color:var(--azulEscuro);

    margin-bottom:20px;

}

.especialidade-card p{

    line-height:30px;

    color:#64748B;

}

/* ==========================================================
   QUALIDADE
========================================================== */

.qualidade{

    padding:120px 0;

    background:linear-gradient(135deg,#061829,#0B3153);

    color:white;

}

.qualidade-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.qualidade .section-tag{

    color:#9BE06F;

}

.qualidade h2{

    font-family:Poppins;

    font-size:52px;

    line-height:60px;

    margin-bottom:30px;

}

.qualidade p{

    line-height:34px;

    color:#D8E4F2;

    margin-bottom:35px;

}

.qualidade-list{

    display:grid;

    gap:18px;

}

.qualidade-list div{

    display:flex;

    align-items:center;

    gap:15px;

}

.qualidade-list i{

    color:#9BE06F;

    font-size:20px;

}

.qualidade-right{

    display:flex;

    justify-content:center;

}

.qualidade-right img{

    width:350px;

    background:white;

    padding:30px;

    border-radius:30px;

    box-shadow:0 30px 80px rgba(0,0,0,.30);

}
/* ==========================================================
   CONTATO
========================================================== */

.contato{

    padding:120px 0;

    background:#F8FAFC;

}

.contato-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.contato-card{

    background:#FFF;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.contato-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.contato-card i{

    font-size:42px;

    color:var(--verde);

    margin-bottom:25px;

}

.contato-card h3{

    font-family:Poppins;

    color:var(--azulEscuro);

    margin-bottom:15px;

}

.contato-card p{

    color:#64748B;

    line-height:28px;

}


/* ==========================================================
   MAPA
========================================================== */

.mapa{

    margin-top:70px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

.mapa iframe{

    width:100%;

    height:450px;

    border:0;

}


/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#061829;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-logo img{

    width:230px;

    margin-bottom:25px;

}

.footer-logo p{

    color:#C8D5E5;

    line-height:30px;

}

.footer-title{

    color:white;

    font-family:Poppins;

    margin-bottom:20px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-links a{

    color:#C8D5E5;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--verde);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.10);

    margin-top:60px;

    padding-top:25px;

    text-align:center;

    color:#B5C4D5;

    font-size:14px;

}


/* ==========================================================
   BOTÃO WHATSAPP
========================================================== */

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:70px;

    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    box-shadow:0 15px 40px rgba(0,0,0,.20);

    z-index:999;

    transition:.30s;

}

.whatsapp:hover{

    transform:scale(1.08);

}


/* ==========================================================
   ANIMAÇÕES
========================================================== */

.fade{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}


/* ==========================================================
   MENU AO ROLAR
========================================================== */

.header.scroll{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.header.scroll .menu a{

    color:#1F2937;

}

.header.scroll .logo img{

    width:190px;

}
.contact-link{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%;text-decoration:none;color:inherit;}
