:root {
    --teal: #079fa5;
    --teal-dark: #004a4c;
    --lime: #b8d735;
    --ink: #183536;
    --muted: #637879;
    --soft: #f3f8f7;
    --line: #dce9e7
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Nunito Sans', Arial, sans-serif;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.62
}

.container {
    width: min(1180px, calc(100% - 44px));
    margin-inline: auto
}

.narrow {
    max-width: 980px
}



.menu-button {
    display: none;
    background: none;
    border: 0;
    padding: 6px
}

.menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ink);
    margin: 5px
}

.hero {
    min-height: 610px;
    background: url('imghome.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff
}

.hero-content {
    padding: 80px 0
}

.kicker {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 12px
}

.teal {
    color: var(--teal)
}

h1, h2, h3, p {
    margin-top: 0
}

h1 {
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.03;
    margin-bottom: 22px;
    max-width: 800px
}

.hero-text {
    font-size: 20px;
    max-width: 620px;
    margin-bottom: 30px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 0;
    border-radius: 6px;
    padding: 13px 20px;
    background: var(--teal);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer
}

.button:hover {
    background: #078389
}

.button-white {
    background: #fff;
    color: var(--teal-dark)
}

.button-white:hover {
    background: var(--lime)
}

.section {
    padding: 86px 0
}

.intro {
    text-align: center
}

.intro h2, .section h2 {
    font-size: clamp(32px, 3.4vw, 46px);
    line-height: 1.12;
    color: var(--teal);
    margin-bottom: 12px
}

.intro-lead, .section-lead {
    font-size: 20px;
    font-weight: 800
}

.intro p:not(.kicker) {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto
}

.areas-image {
    display: block;
    width: 100%;
    margin-top: 42px;
    border-radius: 14px
}

.section-soft {
    background: var(--soft)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.pharmacy-copy p {
    margin-bottom: 14px
}

.pharmacy-visual {
    height: 430px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 72, 75, .8), rgba(0, 159, 165, .55)), url('barras.png') center/cover no-repeat
}

.pharmacy-visual:after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    right: -65px;
    top: -55px
}

.pharmacy-visual>img {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 75px;
    filter: brightness(0) invert(1);
    opacity: .85
}

.pharmacy-visual div {
    position: relative;
    z-index: 1
}

.pharmacy-visual strong {
    display: block;
    font-size: 35px;
    line-height: 1.12
}

.pharmacy-visual span {
    display: block;
    margin-top: 10px
}

.services-block {
    margin-top: 55px
}

.services-block h3 {
    font-size: 29px;
    color: var(--teal);
    margin-bottom: 18px
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.service-grid span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 700
}

.service-grid span:before {
    content: "+";
    color: var(--teal);
    font-size: 19px;
    margin-right: 10px
}

.why-section {
    background: #fff
}

.why-layout {
    align-items: start
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 25px;
    padding: 0;
    margin: 18px 0 20px;
    list-style: none
}

.audience-grid li {
    font-weight: 700
}

.audience-grid li:before {
    content: "•";
    color: var(--teal);
    font-size: 20px;
    margin-right: 9px
}

.closing-copy {
    font-weight: 800;
    color: var(--teal-dark)
}

.contact-card {
    background: var(--teal-dark);
    border-radius: 18px;
    padding: 38px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 55, 57, .18)
}

.contact-card h3 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 12px
}

.contact-card>p {
    color: #d4e8e7
}

.contact-card form {
    margin-top: 25px
}

.contact-card label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 13px
}

.contact-card input, .contact-card textarea {
    width: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .1);
    border-radius: 7px;
    color: #fff;
    font: inherit;
    padding: 11px 13px;
    margin-top: 5px;
    outline: none
}

.contact-card input:focus, .contact-card textarea:focus {
    border-color: #75dadd;
    background: rgba(255, 255, 255, .15)
}

.contact-card textarea {
    height: 100px;
    resize: vertical
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.contact-card .button {
    width: 100%;
    background: #fff;
    color: var(--teal-dark);
    margin-top: 5px
}

.contact-card .button:hover {
    background: var(--lime)
}

.form-status {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 700
}

.honeypot {
    position: absolute;
    left: -9999px
}

.footer {
    background: #002f30;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 260px 1fr 1.4fr;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.footer img {
    width: 240px;
    filter: brightness(0) invert(1)
}

.footer strong, .footer span {
    display: block
}

.footer strong {
    font-size: 19px
}

.footer span {
    font-size: 14px;
    color: #a9cbca
}

.footer blockquote {
    margin: 0;
    color: #d5e7e6;
    font-size: 17px;
    font-style: italic;
    border-left: 3px solid var(--lime);
    padding-left: 24px
}

@media(max-width:850px) {
    .site-header {
        height: 72px
    }

    .brand img {
        width: 205px
    }

    .menu-button {
        display: block
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        background: white;
        padding: 20px 22px;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid var(--line)
    }

    .nav-links.open {
        display: flex
    }

    .hero {
        min-height: 560px;
        background-position: 57% center
    }

    .section {
        padding: 65px 0
    }

    .split {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .service-grid {
        grid-template-columns: 1fr 1fr
    }

    .pharmacy-visual {
        height: 320px
    }

    .why-layout {
        gap: 50px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer img {
        width: 220px
    }

    .footer blockquote {
        max-width: 650px
    }
}

@media(max-width:520px) {
    .container {
        width: min(100% - 30px, 1180px)
    }

    h1 {
        font-size: 39px
    }

    .hero-text {
        font-size: 18px
    }

    .service-grid, .audience-grid, .form-row {
        grid-template-columns: 1fr
    }

    .areas-image {
        height: 150px;
        object-fit: cover
    }

    .contact-card {
        padding: 27px
    }

    .pharmacy-visual strong {
        font-size: 30px
    }
}