:root {
    --ips: #d5005b;
    --ips-dark: #a90048;
    --ips-soft: #fff0f6;
    --dark: #101216;
    --text: #30343b;
    --muted: #747982;
    --line: #e8e9ec;
    --white: #ffffff;
    --background: #f7f7f8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

button {
    font: inherit;
}

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


/* =========================================================
   HEADER IPS — LOGO GRANDE + FAIXA BRANCA PROPORCIONAL
   ========================================================= */

.header {
    height: 150px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 4px 22px rgba(16, 18, 22, .035);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.brand {
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 500px;
    height: 150px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

/* MENU */

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

.nav-links a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: .25s;
}

.nav-links a:hover {
    color: var(--ips);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    width: 0;
    height: 3px;
    margin: auto;
    border-radius: 20px;
    background: var(--ips);
    transition: width .25s ease;
}

.nav-links a:hover::after {
    width: 32px;
}

.menu-toggle {
    display: none;
}


/* HERO */

.hero {
    min-height: 100vh;
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        radial-gradient(circle at 75% 45%, rgba(213,0,91,.08), transparent 30%),
        linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--ips);
    margin-bottom: 28px;
}

.eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--ips);
}

.hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1.04;
    letter-spacing: -3px;
    color: var(--dark);
    font-weight: 500;
}

.hero h1 strong {
    display: block;
    color: var(--ips);
    font-weight: 800;
}

.hero-content > p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
    margin-top: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
}

.btn-primary,
.btn-secondary {
    min-height: 54px;
    padding: 0 25px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-weight: 700;
    font-size: 14px;
    transition: .3s;
}

.btn-primary {
    background: var(--ips);
    color: white;
    box-shadow: 0 14px 35px rgba(213,0,91,.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--ips-dark);
}

.btn-primary span {
    font-size: 20px;
}

.btn-secondary {
    border: 1px solid var(--line);
    background: white;
}

.btn-secondary:hover {
    border-color: var(--ips);
    color: var(--ips);
}

.hero-mini {
    display: flex;
    margin-top: 55px;
}

.hero-mini div {
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid var(--line);
}

.hero-mini div:last-child {
    border: 0;
}

.hero-mini strong {
    display: block;
    font-family: "Manrope";
    font-size: 21px;
    color: var(--dark);
}

.hero-mini span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
}


/* HERO CARD */

.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;
    min-height: 500px;
    padding: 45px;
    border-radius: 32px;
    background: var(--dark);
    color: white;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(17,18,22,.18);
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: var(--ips);
    filter: blur(5px);
    opacity: .13;
    right: -120px;
    bottom: -120px;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .65;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--ips);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(213,0,91,.15);
}

.hero-symbol {
    font-family: "Manrope";
    font-size: 110px;
    line-height: 1;
    font-weight: 800;
    color: var(--ips);
    margin-top: 60px;
    letter-spacing: -8px;
}

.hero-card blockquote {
    font-family: "Manrope";
    font-size: 31px;
    font-weight: 700;
    margin-top: 20px;
}

.hero-card > p {
    color: #aeb0b5;
    max-width: 390px;
    line-height: 1.7;
    margin-top: 15px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.hero-tags span {
    border: 1px solid #35383e;
    padding: 9px 13px;
    border-radius: 100px;
    font-size: 11px;
    color: #d9dadd;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 19px;
    border-radius: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 18px 50px rgba(20,20,25,.15);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 12px;
    color: var(--dark);
}

.floating-card small {
    color: var(--muted);
    font-size: 10px;
    margin-top: 3px;
}

.floating-icon {
    color: var(--ips);
    font-size: 20px;
}

.floating-one {
    left: -50px;
    top: 90px;
}

.floating-two {
    right: -30px;
    bottom: 70px;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 2px;
    color: #8a8d94;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 30px;
    background: var(--ips);
    margin: 0 auto 8px;
}


/* GENERAL SECTIONS */

.about,
.areas,
.contact {
    padding: 120px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 65px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    color: var(--ips);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
}

.section-heading h2,
.contact h2,
.purpose h2 {
    font-family: "Manrope";
    color: var(--dark);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -2px;
    margin-top: 15px;
}

.section-heading h2 strong,
.contact h2 strong {
    color: var(--ips);
}

.section-heading p {
    color: var(--muted);
    line-height: 1.7;
    margin-top: 18px;
}


/* INTERACTIVE IPS MAP */

.about {
    background: var(--background);
}

.ips-map {
    max-width: 1050px;
    height: 600px;
    margin: auto;
    position: relative;
}

.connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connections path {
    fill: none;
    stroke: #d3d4d8;
    stroke-width: 1.3;
    stroke-dasharray: 5 7;
}

.ips-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 235px;
    height: 235px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 30px 70px rgba(20,20,25,.18);
}

.ips-center::after {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(213,0,91,.25);
    border-radius: 50%;
}

.center-small {
    font-size: 9px;
    letter-spacing: 2px;
    opacity: .5;
}

.ips-center strong {
    color: var(--ips);
    font-family: "Manrope";
    font-size: 70px;
    letter-spacing: -5px;
}

.ips-center p {
    font-size: 12px;
    color: #b8bac0;
}

.value-point {
    position: absolute;
    border: 0;
    background: white;
    border-radius: 17px;
    width: 210px;
    padding: 18px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(20,20,25,.06);
    cursor: pointer;
    transition: .3s;
}

.value-point:hover,
.value-point.active {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(20,20,25,.12);
}

.point-dot {
    display: block;
    width: 9px;
    height: 9px;
    background: var(--ips);
    border-radius: 50%;
    margin-bottom: 11px;
}

.value-point strong {
    color: var(--dark);
    font-size: 13px;
}

.point-description {
    display: block;
    font-size: 11px;
    line-height: 1.55;
    color: var(--muted);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: .35s;
}

.value-point:hover .point-description,
.value-point.active .point-description {
    max-height: 100px;
    opacity: 1;
    margin-top: 9px;
}

.point-one {
    left: 60px;
    top: 45px;
}

.point-two {
    right: 60px;
    top: 45px;
}

.point-three {
    left: 0;
    top: 250px;
}

.point-four {
    right: 0;
    top: 250px;
}

.point-five {
    left: 80px;
    bottom: 20px;
}

.point-six {
    right: 80px;
    bottom: 20px;
}


/* AREAS */

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

.area-card {
    min-height: 320px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    position: relative;
    transition: .3s;
}

.area-card:hover {
    transform: translateY(-6px);
    border-color: rgba(213,0,91,.25);
    box-shadow: 0 20px 50px rgba(20,20,25,.07);
}

.area-card.featured {
    background: var(--ips);
    color: white;
    border-color: var(--ips);
}

.area-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 10px;
    opacity: .5;
}

.area-icon {
    height: 80px;
    display: flex;
    align-items: center;
    font-family: "Manrope";
    color: var(--ips);
    font-size: 27px;
    font-weight: 800;
}

.featured .area-icon {
    color: white;
}

.area-card h3 {
    font-family: "Manrope";
    font-size: 23px;
    color: var(--dark);
}

.area-card.featured h3 {
    color: white;
}

.area-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    margin-top: 12px;
}

.featured p {
    color: rgba(255,255,255,.75);
}

.area-link {
    position: absolute;
    left: 30px;
    bottom: 28px;
    font-size: 11px;
    font-weight: 700;
}



/* IPS EM AÇÃO */
.ips-action{padding:125px 0;background:#fff}
.action-heading{display:grid;grid-template-columns:1fr .72fr;gap:90px;align-items:end;margin-bottom:58px}
.action-heading h2{font-family:"Manrope",sans-serif;color:var(--dark);font-size:clamp(35px,4vw,52px);line-height:1.08;letter-spacing:-2px;margin-top:15px;max-width:700px}
.action-heading h2 strong{display:block;color:var(--ips)}
.action-heading>p{color:var(--muted);line-height:1.8;font-size:15px;max-width:500px}
.action-gallery{display:grid;grid-template-columns:1.15fr .85fr .85fr;grid-template-rows:310px 310px;gap:16px}
.action-photo{position:relative;border-radius:24px;overflow:hidden;background:var(--dark);min-height:0;isolation:isolate}
.action-photo-main{grid-row:1/3}.action-photo-wide{grid-column:2/3}
.action-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .7s cubic-bezier(.2,.7,.2,1)}
.action-photo:after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,15,.02) 25%,rgba(10,12,15,.82) 100%);pointer-events:none}
.action-photo:hover img{transform:scale(1.045)}
.action-overlay{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:28px;color:#fff}
.action-overlay>span{display:inline-block;margin-bottom:9px;color:#ff70ad;font-size:9px;font-weight:800;letter-spacing:1.8px}
.action-overlay h3{font-family:"Manrope",sans-serif;font-size:21px;line-height:1.2;letter-spacing:-.6px;max-width:390px}
.action-photo-main .action-overlay{padding:38px}.action-photo-main .action-overlay h3{font-size:31px}
.action-overlay p{color:rgba(255,255,255,.76);font-size:12px;line-height:1.6;margin-top:9px;max-width:390px}
.action-bottom{margin-top:34px;padding-top:28px;display:flex;align-items:center;justify-content:space-between;gap:35px;border-top:1px solid var(--line)}
.action-quote{display:flex;align-items:center;gap:16px}.action-quote>span{font-family:"Manrope",sans-serif;color:var(--ips);font-size:58px;line-height:.7;font-weight:800}
.action-quote p{color:var(--muted);font-size:14px;line-height:1.6}.action-quote strong{color:var(--dark)}
.action-instagram{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;gap:22px;min-height:50px;padding:0 22px;border:1px solid var(--line);border-radius:12px;color:var(--dark);font-size:12px;font-weight:700;transition:.3s}
.action-instagram:hover{color:var(--ips);border-color:rgba(213,0,91,.35);transform:translateY(-2px)}.action-instagram span{color:var(--ips);font-size:18px}

/* PURPOSE */

.purpose {
    padding: 110px 0;
    background: var(--dark);
    color: white;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 100px;
}

.section-label.light {
    color: #ff4d98;
}

.purpose h2 {
    color: white;
}

.purpose h2 strong {
    color: var(--ips);
}

.purpose-copy {
    padding-top: 30px;
}

.purpose-copy p {
    color: #aeb1b7;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* CONTACT */

.contact-box {
    border-radius: 30px;
    padding: 60px;
    background: var(--ips-soft);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.contact h2 {
    max-width: 700px;
}

.contact p {
    margin-top: 16px;
    color: var(--muted);
}


/* FOOTER */

.footer {
    padding: 70px 0 25px;
    background: #0b0c0f;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer-brand img {
    width: 320px;
    height: 100px;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    border-radius: 0;
}

.footer-brand p {
    color: #858990;
    font-size: 12px;
    margin-top: 15px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid strong {
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-grid a,
.footer-grid span {
    color: #858990;
    font-size: 12px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #22242a;
    display: flex;
    justify-content: space-between;
    color: #5f6268;
    font-size: 10px;
}


/* MOBILE */

@media (max-width: 900px) {

    .container {
        width: min(100% - 30px, 700px);
    }

    .header {
        height: 82px;
    }

    .brand img {
        width: 190px;
        height: 58px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 10px;
        background: var(--dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .menu-toggle span {
        width: 17px;
        height: 2px;
        background: white;
    }

    .nav-links {
        position: absolute;
        top: 82px;
        left: 15px;
        right: 15px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding: 205px 0 100px;

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-mini {
        justify-content: space-between;
    }

    .hero-mini div {
        padding-right: 15px;
        margin-right: 15px;
    }

    .hero-card {
        min-height: 440px;
        padding: 30px;
    }

    .hero-symbol {
        font-size: 90px;
    }

    .floating-one {
        left: -5px;
        top: -30px;
    }

    .floating-two {
        right: -5px;
        bottom: -30px;
    }

    .scroll-indicator {
        display: none;
    }

    .about,
    .areas,
    .contact {
        padding: 80px 0;
    }

    .ips-map {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .connections {
        display: none;
    }

    .ips-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 30px;
        width: 190px;
        height: 190px;
    }

    .ips-center strong {
        font-size: 58px;
    }

    .value-point {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
    }

    .point-description {
        max-height: 100px;
        opacity: 1;
        margin-top: 8px;
    }

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

    .area-card {
        min-height: 280px;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-box {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        gap: 30px;
    }

    .contact-action .btn-primary {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 520px) {

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

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

    .hero-mini {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-mini div {
        padding: 0 10px;
        margin: 0;
    }

    .hero-mini div:first-child {
        padding-left: 0;
    }

    .hero-mini strong {
        font-size: 17px;
    }

    .hero-mini span {
        font-size: 9px;
    }

    .floating-card {
        display: none;
    }
}
@media(max-width:900px){.ips-action{padding:80px 0}.action-heading{grid-template-columns:1fr;gap:22px;margin-bottom:38px}.action-gallery{grid-template-columns:1fr 1fr;grid-template-rows:430px 280px 280px}.action-photo-main{grid-column:1/3;grid-row:auto}.action-photo-wide{grid-column:auto}.action-bottom{align-items:flex-start;flex-direction:column}}
@media(max-width:520px){.action-gallery{grid-template-columns:1fr;grid-template-rows:none}.action-photo,.action-photo-main,.action-photo-wide{grid-column:auto;grid-row:auto;height:330px;border-radius:18px}.action-photo-main{height:420px}.action-photo-main .action-overlay,.action-overlay{padding:22px}.action-photo-main .action-overlay h3,.action-overlay h3{font-size:21px}.action-instagram{width:100%}}


/* =========================================================
   HEADER — CELULAR PEQUENO
   ========================================================= */
@media (max-width: 520px) {
    .header {
        height: 78px;
    }

    .brand img {
        width: 175px;
        height: 54px;
    }

    .nav-links {
        top: 78px;
    }
}

/* =========================================================
   IPS — HEADER PREMIUM DEFINITIVO
   ========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 126px;

    background: rgba(255,255,255,.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(15,18,24,.055);

    box-shadow:
        0 8px 30px rgba(15,23,42,.035);

    z-index: 9999;
}


/* =========================================================
   CONTAINER DO HEADER
   ========================================================= */

.header > .container.nav {
    height: 100%;

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

    gap: 35px;
}


/* =========================================================
   LOGO
   ========================================================= */

.header .brand {
    height: 100%;

    display: flex;
    align-items: center;

    flex: 0 0 auto;

    position: relative;
}


/* brilho muito leve atrás da logo */

.header .brand::before {
    content: "";

    position: absolute;

    left: 20px;
    top: 50%;

    width: 220px;
    height: 70px;

    transform: translateY(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(213,0,91,.07),
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;
}


.header .brand img {
    position: relative;

    width: 245px;
    height: 92px;

    display: block;

    object-fit: contain;
    object-position: left center;

    z-index: 2;
}


/* =========================================================
   CAIXA PREMIUM DO MENU
   ========================================================= */

.header .nav-links {
    display: flex;
    align-items: center;

    gap: 5px;

    padding: 8px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.98),
            rgba(255,247,251,.94)
        );

    border: 1px solid rgba(213,0,91,.09);

    border-radius: 18px;

    box-shadow:
        0 12px 32px rgba(15,23,42,.075),
        0 6px 22px rgba(213,0,91,.075),
        inset 0 1px 0 rgba(255,255,255,.95);

    position: relative;
}


/* brilho rosa por baixo do menu */

.header .nav-links::before {
    content: "";

    position: absolute;

    left: 12%;
    right: 12%;
    bottom: -14px;

    height: 28px;

    background:
        radial-gradient(
            ellipse,
            rgba(213,0,91,.17),
            rgba(213,0,91,.05) 45%,
            transparent 72%
        );

    filter: blur(14px);

    z-index: -1;

    pointer-events: none;
}


/* =========================================================
   BADGES / ITENS
   ========================================================= */

.header .nav-item {
    position: relative;

    min-width: 72px;
    height: 62px;

    padding: 7px 11px;

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

    gap: 5px;

    border: 1px solid transparent;

    border-radius: 12px;

    background: transparent;

    color: #16181d;

    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


/* =========================================================
   ÍCONE
   ========================================================= */

.header .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 19px;

    color: #d5005b;

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

    line-height: 1;

    transition:
        transform .22s ease,
        color .22s ease;
}


/* =========================================================
   TEXTO
   ========================================================= */

.header .nav-text {
    display: block;

    font-family: "DM Sans", sans-serif;

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

    line-height: 1.1;

    color: #202229;

    white-space: nowrap;
}


/* =========================================================
   HOVER DOS BADGES
   ========================================================= */

.header .nav-item:not(.nav-contato):hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff7fa
        );

    border-color: rgba(213,0,91,.14);

    box-shadow:
        0 10px 25px rgba(15,23,42,.08),
        0 7px 20px rgba(213,0,91,.12),
        inset 0 0 0 1px rgba(255,255,255,.7);
}


.header .nav-item:not(.nav-contato):hover .nav-icon {
    transform: scale(1.14);

    color: #ec0064;
}


.header .nav-item:not(.nav-contato):hover .nav-text {
    color: #d5005b;
}


/* =========================================================
   INÍCIO ATIVO
   ========================================================= */

.header .nav-item.active {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fff1f7 100%
        );

    border-color: rgba(213,0,91,.17);

    box-shadow:
        0 10px 26px rgba(213,0,91,.13),
        0 3px 10px rgba(15,23,42,.045),
        inset 0 0 0 1px rgba(255,255,255,.8);
}


.header .nav-item.active .nav-icon,
.header .nav-item.active .nav-text {
    color: #d5005b;
}


/* risquinho rosa */

.header .nav-item.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 27px;
    height: 3px;

    transform: translateX(-50%);

    border-radius: 30px;

    background: #e0005c;

    box-shadow:
        0 0 10px rgba(224,0,92,.45);
}


/* =========================================================
   CONTATO — BOTÃO ROSA
   ========================================================= */

.header .nav-contato {
    min-width: 96px;
    height: 52px;

    margin-left: 5px;

    border-radius: 12px;

    border: 1px solid rgba(213,0,91,.25);

    background:
        linear-gradient(
            135deg,
            #ed0063 0%,
            #d5005b 55%,
            #bd004f 100%
        );

    box-shadow:
        0 12px 28px rgba(213,0,91,.27),
        0 0 25px rgba(213,0,91,.09);

    overflow: hidden;
}


.header .nav-contato .nav-icon,
.header .nav-contato .nav-text {
    color: #ffffff;
}


.header .nav-contato::before {
    content: "";

    position: absolute;

    top: 0;
    left: 12px;
    right: 12px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.8),
            transparent
        );
}


.header .nav-contato:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #f50067,
            #c80053
        );

    box-shadow:
        0 16px 35px rgba(213,0,91,.36),
        0 0 35px rgba(213,0,91,.14);
}


/* remove underline antigo */

.header .nav-links a::after {
    display: none;
}

.header .nav-item.active::after {
    display: block;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .header {
        height: 82px;
    }


    .header > .container.nav {
        position: relative;
    }


    .header .brand img {
        width: 190px;
        height: 60px;
    }


    .header .brand::before {
        width: 140px;
        height: 50px;
    }


    /* HAMBÚRGUER */

    .header .menu-toggle {
        width: 44px;
        height: 44px;

        padding: 0;

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

        gap: 5px;

        border: 0;

        border-radius: 12px;

        background: #111318;

        box-shadow:
            0 10px 25px rgba(15,18,24,.16),
            0 4px 12px rgba(213,0,91,.08);

        z-index: 10002;
    }


    .header .menu-toggle span {
        display: block;

        width: 20px;
        height: 2px;

        background: white;

        border-radius: 20px;
    }


    /* MENU ABERTO */

    .header .nav-links {
        position: absolute;

        top: calc(100% + 12px);
        left: 0;
        right: 0;

        display: none;

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

        gap: 6px;

        padding: 12px;

        border-radius: 19px;

        background: rgba(255,255,255,.98);

        border: 1px solid rgba(213,0,91,.10);

        box-shadow:
            0 25px 60px rgba(15,18,24,.16),
            0 8px 30px rgba(213,0,91,.09);

        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }


    .header .nav-links::before {
        display: none;
    }


    .header .nav-links.active {
        display: flex;
    }


    .header .nav-item {
        width: 100%;
        min-height: 52px;
        height: auto;

        padding: 0 16px;

        flex-direction: row;

        justify-content: flex-start;

        gap: 12px;

        font-size: 14px;
    }


    .header .nav-icon {
        width: 25px;

        font-size: 17px;
    }


    .header .nav-text {
        font-size: 13px;
    }


    .header .nav-item.active::after {
        left: 17px;
        bottom: 5px;

        width: 27px;

        transform: none;
    }


    .header .nav-contato {
        width: 100%;
        min-width: 0;
        height: 54px;

        margin: 4px 0 0;

        justify-content: flex-start;
    }
}


/* =========================================================
   CELULAR PEQUENO
   ========================================================= */

@media (max-width: 520px) {

    .header {
        height: 78px;
    }


    .header .brand img {
        width: 175px;
        height: 55px;
    }
}