:root {
    --orange: #f57a16;
    --orange-dark: #e5680c;
    --orange-light: #fff1e4;

    --graphite: #454545;
    --graphite-dark: #292929;

    --cream: #fdf9f5;
    --white: #ffffff;

    --text: #454545;
    --muted: #747474;

    --border: #ece5de;

    --shadow:
        0 25px 70px rgba(80, 55, 35, 0.10);

    --radius: 26px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}


a {
    text-decoration: none;
    color: inherit;
}


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


/* ============================= */
/* HEADER */
/* ============================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.header-content {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    display: flex;
    align-items: center;
    gap: 7px;
}


.brand-symbol {
    width: 24px;
    height: 17px;

    background: var(--orange);

    border-radius:
        100% 0
        100% 0;

    transform: rotate(8deg);
}


.brand-text {
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;

    line-height: 0.82;
}


.brand-bio {
    grid-column: 1 / 3;

    font-size: 34px;
    font-weight: 800;

    color: var(--graphite);
    letter-spacing: -3px;
}


.brand-pharma {
    grid-column: 1 / 3;

    font-size: 21px;
    font-weight: 700;

    color: var(--orange);
    letter-spacing: -1px;
}


.brand-text small {
    grid-column: 1 / 3;

    margin-top: 8px;

    font-size: 7px;
    letter-spacing: 1.5px;

    color: #777;
}


.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}


.nav > a:not(.btn) {
    font-size: 14px;
    font-weight: 600;

    color: #565656;

    transition: 0.2s;
}


.nav > a:not(.btn):hover {
    color: var(--orange);
}


.btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s;
}


.btn-header {
    min-height: 44px;

    background: var(--orange);
    color: white;

    padding: 0 21px;
}


.btn-header:hover,
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}


.menu-toggle {
    display: none;

    background: none;
    border: 0;

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 26px;
    height: 2px;

    margin: 5px 0;

    background: var(--graphite);
}


/* ============================= */
/* HERO */
/* ============================= */

.hero {
    min-height: 680px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #fffdfb 0%,
            #fff8f1 50%,
            #fff 100%
        );
}


.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(440px, 0.98fr);

    gap: 70px;

    align-items: center;

    padding-top: 70px;
    padding-bottom: 80px;

    position: relative;
    z-index: 2;
}


.hero-tag,
.section-tag,
.budget-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.7px;
}


.hero-tag span {
    width: 33px;
    height: 2px;

    background: var(--orange);
}


.hero h1 {
    max-width: 650px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--graphite-dark);

    font-size: clamp(48px, 5vw, 75px);
    font-weight: 500;

    line-height: 0.98;
    letter-spacing: -3px;
}


.hero h1 strong {
    display: block;

    color: var(--orange);
    font-weight: 600;
}


.hero h1 span {
    display: block;

    margin-top: 12px;

    font-family:
        "Segoe Script",
        cursive;

    font-size: 0.52em;
    font-weight: 400;

    color: #4c4c4c;

    letter-spacing: -2px;
}


.hero-description {
    max-width: 570px;

    margin-top: 29px;

    font-size: 17px;
    color: var(--muted);

    line-height: 1.8;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 33px;
}


.btn-primary {
    background: var(--orange);
    color: white;

    box-shadow:
        0 15px 35px rgba(245, 122, 22, 0.22);
}


.btn-outline {
    border: 1px solid #d9d1ca;

    background: white;

    color: var(--graphite);
}


.btn-outline:hover {
    border-color: var(--orange);

    color: var(--orange);

    transform: translateY(-2px);
}


.hero-signature {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 34px;

    font-size: 12px;

    color: #777;
}


.hero-signature .signature-leaf {
    color: var(--orange);

    transform: rotate(45deg);
}


.hero-signature strong {
    color: var(--orange);
}


.hero-card {
    position: relative;

    height: 520px;

    border-radius:
        170px 34px
        170px 34px;

    background:
        linear-gradient(
            150deg,
            #efe7df,
            #fff8f2
        );

    box-shadow: var(--shadow);

    overflow: visible;
}


.hero-card-accent {
    position: absolute;

    top: -35px;
    right: -30px;

    width: 150px;
    height: 180px;

    border: 16px solid var(--orange);
    border-left: 0;
    border-bottom: 0;

    border-radius: 0 100px 0 0;

    opacity: 0.95;
}


.hero-image-placeholder {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 70% 25%,
            #ffd9b5,
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #f4e9de,
            #fffaf6
        );
}


.family-icon {
    position: relative;

    width: 270px;
    height: 220px;

    opacity: 0.75;
}


.circle {
    position: absolute;

    border-radius: 50%;

    border: 4px solid
        rgba(245, 122, 22, 0.45);
}


.circle-one {
    width: 100px;
    height: 100px;

    left: 84px;
    top: 5px;
}


.circle-two {
    width: 74px;
    height: 74px;

    left: 8px;
    top: 80px;
}


.circle-three {
    width: 74px;
    height: 74px;

    right: 8px;
    top: 80px;
}


.circle-four {
    width: 220px;
    height: 120px;

    left: 24px;
    top: 100px;

    border-radius:
        120px 120px
        20px 20px;

    border-bottom: 0;
}


.placeholder-text {
    text-align: center;

    color: var(--graphite);
}


.placeholder-text span {
    display: block;

    color: var(--orange);

    font-family: Georgia, serif;
    font-size: 26px;
}


.placeholder-text strong {
    font-size: 19px;
}


.floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 19px;

    background: rgba(255, 255, 255, 0.95);

    border-radius: 14px;

    box-shadow:
        0 15px 45px rgba(70, 50, 30, 0.14);
}


.floating-card-one {
    left: -40px;
    bottom: 100px;
}


.floating-card-two {
    right: -40px;
    top: 120px;
}


.floating-icon {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange-light);
    color: var(--orange);

    font-weight: 900;
}


.floating-card small {
    display: block;

    color: #888;
    font-size: 10px;
}


.floating-card strong {
    display: block;

    color: var(--graphite);
    font-size: 13px;
}


.hero-decoration {
    position: absolute;

    border-radius: 50%;

    border: 1px solid
        rgba(245, 122, 22, 0.16);
}


.hero-decoration-one {
    width: 520px;
    height: 520px;

    right: -250px;
    top: -280px;
}


.hero-decoration-two {
    width: 340px;
    height: 340px;

    left: -230px;
    bottom: -170px;
}


/* ============================= */
/* QUICK ACTIONS */
/* ============================= */

.quick-actions {
    position: relative;

    margin-top: -28px;

    z-index: 5;
}


.quick-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    background: white;

    border-radius: 19px;

    box-shadow:
        0 20px 55px rgba(70, 50, 30, 0.10);

    overflow: hidden;
}


.quick-card {
    min-height: 120px;

    display: grid;

    grid-template-columns:
        48px 1fr 30px;

    align-items: center;

    gap: 15px;

    padding: 26px;

    border-right: 1px solid var(--border);

    transition: 0.25s;
}


.quick-card:last-child {
    border-right: 0;
}


.quick-card:hover {
    background: var(--orange-light);
}


.quick-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;
}


.quick-card strong {
    display: block;

    color: var(--graphite-dark);

    font-size: 15px;
}


.quick-card span {
    display: block;

    margin-top: 3px;

    color: #8a8a8a;

    font-size: 11px;
}


.quick-arrow {
    color: var(--orange);
    font-size: 21px;
}


/* ============================= */
/* SEÇÕES */
/* ============================= */

.section {
    padding: 115px 0;
}


.section-tag {
    justify-content: flex-start;
}


h2 {
    color: var(--graphite-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(37px, 4vw, 55px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -2px;
}


h2 span {
    color: var(--orange);
}


/* ============================= */
/* SOBRE */
/* ============================= */

.about-grid {
    display: grid;

    grid-template-columns:
        0.88fr
        1.12fr;

    gap: 95px;

    align-items: center;
}


.about-box {
    position: relative;

    min-height: 475px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 65px;

    border-radius:
        35px 150px
        35px 150px;

    background:
        linear-gradient(
            145deg,
            #3c3c3c,
            #252525
        );

    color: white;

    overflow: hidden;
}


.about-box::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -170px;
    bottom: -170px;

    border-radius: 50%;

    border: 45px solid
        rgba(245, 122, 22, 0.65);
}


.about-leaf {
    width: 60px;
    height: 42px;

    margin-bottom: 40px;

    background: var(--orange);

    border-radius:
        100% 0
        100% 0;
}


.about-small {
    color: #bbb;

    font-size: 11px;
    letter-spacing: 4px;
}


.about-box strong {
    max-width: 360px;

    margin-top: 11px;

    font-family: Georgia, serif;

    font-size: 51px;
    font-weight: 500;

    line-height: 1.05;
}


.about-box strong span {
    display: block;

    color: var(--orange);

    font-family:
        "Segoe Script",
        cursive;

    font-size: 0.78em;

    font-weight: 400;
}


.about-content > p {
    max-width: 620px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}


.about-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-top: 30px;
}


.feature {
    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 13px;
    font-weight: 600;

    color: #555;
}


.feature span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 11px;
}


/* ============================= */
/* SOLUÇÕES */
/* ============================= */

.solutions {
    background: var(--cream);
}


.section-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 80px;

    margin-bottom: 55px;
}


.section-heading > div {
    max-width: 680px;
}


.section-heading > p {
    max-width: 330px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


.solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}


.solution-card {
    position: relative;

    min-height: 340px;

    padding: 31px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: white;

    transition: 0.3s;
}


.solution-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(245, 122, 22, 0.4);

    box-shadow:
        0 22px 45px rgba(80, 55, 35, 0.09);
}


.solution-number {
    position: absolute;

    right: 25px;
    top: 24px;

    color: #ddd;

    font-size: 12px;
    font-weight: 800;
}


.solution-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 14px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 24px;
}


.solution-card h3 {
    color: var(--graphite-dark);

    font-family: Georgia, serif;

    font-size: 22px;

    line-height: 1.2;
}


.solution-card p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


.solution-card a {
    position: absolute;

    bottom: 28px;
    left: 31px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;
}


/* ============================= */
/* PROCESSO */
/* ============================= */

.process-header {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px;
}


.process-header .section-tag {
    justify-content: center;
}


.process-header p {
    margin-top: 17px;

    color: var(--muted);
}


.process-grid {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: start;

    gap: 20px;
}


.process-item {
    text-align: center;
}


.process-number {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    font-family: Georgia, serif;

    font-size: 21px;

    box-shadow:
        0 12px 28px rgba(245, 122, 22, 0.22);
}


.process-item h3 {
    color: var(--graphite-dark);

    font-size: 16px;
}


.process-item p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


.process-line {
    width: 60px;
    height: 1px;

    margin-top: 29px;

    background:
        repeating-linear-gradient(
            to right,
            #ddd,
            #ddd 5px,
            transparent 5px,
            transparent 10px
        );
}


/* ============================= */
/* ORÇAMENTO */
/* ============================= */

.budget {
    position: relative;

    overflow: hidden;

    padding: 90px 0;

    background:
        linear-gradient(
            120deg,
            var(--orange),
            #e96409
        );
}


.budget::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -190px;
    top: -230px;

    border-radius: 50%;

    border: 70px solid
        rgba(255, 255, 255, 0.12);
}


.budget-content {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 70px;
}


.budget-tag {
    color:
        rgba(255, 255, 255, 0.8);
}


.budget-copy {
    max-width: 720px;
}


.budget h2 {
    color: white;
}


.budget h2 span {
    color: #302f2e;
}


.budget p {
    margin-top: 18px;

    color:
        rgba(255, 255, 255, 0.85);
}


.budget-actions {
    min-width: 300px;

    text-align: center;
}


.btn-white {
    background: white;

    color: var(--orange);

    box-shadow:
        0 15px 35px rgba(75, 40, 10, 0.17);
}


.btn-white:hover {
    transform: translateY(-3px);
}


.budget-actions > span {
    display: block;

    margin-top: 11px;

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 11px;
}


/* ============================= */
/* CONTATO */
/* ============================= */

.contact {
    background: white;
}


.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 100px;

    align-items: center;
}


.contact-description {
    max-width: 520px;

    margin-top: 22px;

    color: var(--muted);

    line-height: 1.8;
}


.contact-card {
    padding: 38px;

    border-radius: 20px;

    background: var(--cream);

    border: 1px solid var(--border);
}


.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);
}


.contact-item:last-child {
    border-bottom: 0;
}


.contact-item span {
    color: #888;

    font-size: 12px;
}


.contact-item strong {
    color: var(--graphite);

    text-align: right;

    font-size: 13px;
}


/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
    background: #282828;

    color: #bbb;

    padding-top: 72px;
}


.footer-content {
    display: grid;

    grid-template-columns:
        1.6fr 0.7fr 0.7fr;

    gap: 70px;

    padding-bottom: 60px;
}


.footer-logo .brand-bio {
    color: white;
}


.footer-brand > p {
    max-width: 280px;

    margin-top: 25px;

    color: #aaa;

    font-family: Georgia, serif;

    font-size: 17px;
}


.footer-links {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.footer-links strong {
    margin-bottom: 8px;

    color: white;

    font-size: 13px;
}


.footer-links a {
    color: #aaa;

    font-size: 12px;
}


.footer-links a:hover {
    color: var(--orange);
}


.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.footer-bottom .container {
    min-height: 67px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-size: 10px;

    color: #7f7f7f;
}


/* ============================= */
/* WHATSAPP FLUTUANTE */
/* ============================= */

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 999;

    width: 57px;
    height: 57px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    font-size: 22px;

    box-shadow:
        0 12px 30px rgba(245, 122, 22, 0.35);
}


/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 1050px) {

    .nav {
        gap: 16px;
    }

    .nav > a:not(.btn) {
        font-size: 12px;
    }

    .hero-grid {
        grid-template-columns:
            1fr 0.9fr;

        gap: 40px;
    }

    .floating-card-two {
        right: -10px;
    }

    .floating-card-one {
        left: -10px;
    }

    .solutions-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 820px) {

    .header-content {
        min-height: 72px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;

        left: 20px;
        right: 20px;
        top: 72px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 15px;

        border-radius: 16px;

        background: white;

        box-shadow: var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .nav > a {
        padding: 13px;
    }

    .btn-header {
        margin-top: 7px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        padding-top: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-tag,
    .hero-actions,
    .hero-signature {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        max-width: 520px;

        width: 100%;

        margin: 20px auto 0;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-card {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .quick-card:last-child {
        border-bottom: 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-visual {
        max-width: 520px;

        width: 100%;

        margin: 0 auto;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }

    .process-line {
        display: none;
    }

    .budget-content {
        display: block;

        text-align: center;
    }

    .budget-actions {
        margin-top: 35px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / 3;
    }

}


@media (max-width: 560px) {

    .container {
        width:
            min(100% - 28px, 1180px);
    }

    .section {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 47px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card {
        height: 420px;

        border-radius:
            100px 25px
            100px 25px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .floating-card-one {
        left: -20px;
        bottom: 60px;
    }

    .floating-card-two {
        right: -20px;
        top: 80px;
    }

    .about-box {
        min-height: 380px;

        padding: 40px;
    }

    .about-box strong {
        font-size: 41px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .budget {
        padding: 70px 0;
    }

    .budget-actions {
        min-width: 0;
    }

    .btn-white {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom .container {
        flex-direction: column;

        justify-content: center;

        padding: 18px 0;

        text-align: center;
    }

}

/* ============================= */
/* LOGO OFICIAL BIOPHARMA */
/* ============================= */

.brand-official {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-biopharma {
    display: block;
    width: 165px;
    height: 72px;
    object-fit: contain;
    object-position: center;
}

.footer-logo-official {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 14px;

    background: #ffffff;

    border-radius: 12px;
}

.logo-biopharma-footer {
    display: block;
    width: 160px;
    height: 72px;
    object-fit: contain;
}

@media (max-width: 560px) {
    .logo-biopharma {
        width: 135px;
        height: 60px;
    }

    .logo-biopharma-footer {
        width: 145px;
        height: 65px;
    }
}

/* ============================= */
/* AJUSTE FINAL LOGO CABEÇALHO */
/* ============================= */

.header-content {
    min-height: 94px;
}

.brand-official {
    width: 320px;
    height: 92px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.logo-biopharma {
    width: 300px;
    height: auto;

    display: block;

    transform: scale(1.55);
    transform-origin: left center;
}

/* mantém o menu bem alinhado */
.nav {
    margin-left: auto;
}

/* versão mobile */
@media (max-width: 820px) {

    .header-content {
        min-height: 78px;
    }

    .brand-official {
        width: 190px;
        height: 74px;
    }

    .logo-biopharma {
        width: 180px;

        transform: scale(1.5);
        transform-origin: left center;
    }

}
