* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #333
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    height: 80px;
    background: transparent;
    transition: transform .28s ease, background .28s ease
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 100%
}

.logo {
    max-height: 64px;
    height: auto
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 10px
}

.btn-agendar {
    display: inline-block;
    background: rgba(255, 255, 255, .95);
    color: #333;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700
}

.header.hide {
    transform: translateY(-110%)
}

.hero-fixed {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
    background-color: black
}

.hero-fixed::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1
}

.hero-fixed .bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0
}

.hero-fixed .bg-layer.active {
    opacity: 1
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    padding: 20px;
    margin-top: 20vh
}

.hero-content h2 {
    font-size: clamp(1rem, 3vw, 40rem);
    margin-bottom: 12px;
    font-weight: 700
}

.hero-content p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .95)
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 0
}

.services {
    padding: 80px 0 60px;
    text-align: center;
    background: #fff
}

.services h3 {
    font-size: 2em;
    color: #B0E0E6;
    margin-bottom: 32px
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px
}

.service-item {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-left: 5px solid #B0E0E6;
    padding: 20px;
    width: 30%;
    min-width: 260px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
    text-align: left;
    transition: transform .25s
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.professionals {
    background: #F4F4F4;
    padding: 60px 0;
    text-align: center
}

.professional-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    width: 100%;
    max-width: 350px;
    text-align: center
}

.prof-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #B0E0E6;
    margin-bottom: 15px
}

.footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: .9rem
}

@media(max-width:1024px) {
    .service-item {
        width: 45%
    }
}

@media(max-width:768px) {
    .header-inner {
        padding: 12px 0
    }

    nav ul {
        flex-direction: column;
        gap: 8px
    }

    .service-item {
        width: 100%
    }

    .hero-fixed {
        min-height: 60vh
    }

    nav ul li.hide-mobile {
        display: none
    }
}