:root {
    --navy: #092b3a;
    --navy2: #061f2b;
    --ink: #12212a;
    --muted: #61717a;
    --cream: #f5f2eb;
    --paper: #fbfaf7;
    --line: #dce1de;
    --accent: #b6a36a;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(5,31,43,.10);
    --brand-teal: #30504f;
    --brand-teal-dark: #203837;
    --brand-orange: #ea7e02;
    --brand-orange-light: #f7a83e
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans",Arial,sans-serif;
    line-height: 1.6
}

a {
    color: inherit;
    text-decoration: none
}

section[id],main#inicio {
    scroll-margin-top: 96px
}

:focus-visible {
    outline: 3px solid #7fa7bd;
    outline-offset: 2px;
    border-radius: 4px
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    background: var(--navy);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    z-index: 100;
    transition: top .2s ease
}

.skip-link:focus {
    top: 12px
}

.nav a[aria-current="true"] {
    opacity: 1;
    color: var(--navy);
    font-weight: 800
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1!important;
        transform: none!important;
        transition: none!important
    }

    * {
        animation-duration: .01ms!important;
        transition-duration: .01ms!important
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20
}

.topbar {
    background: var(--navy2);
    color: #dce7e9;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: .04em
}

.topbar span {
    margin: 0 10px;
    color: var(--accent)
}

.header {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding: 0 6%;
    background: rgba(251,250,247,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220,225,222,.75)
}

.brand {
    display: flex;
    align-items: center
}

.logo {
    height: 40px;
    width: auto;
    display: block
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600
}

.nav a {
    opacity: .78
}

.nav a:hover {
    opacity: 1;
    color: var(--navy)
}

.nav-cta {
    background: var(--navy);
    color: white!important;
    padding: 12px 19px;
    border-radius: 999px;
    opacity: 1!important
}

.menu-btn {
    display: none;
    border: 0;
    background: none;
    font-size: 25px;
    margin-left: auto
}

.hero {
    min-height: 720px;
    padding: 48px 8% 70px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
    background: linear-gradient(135deg,#fbfaf7 55%,#f0eee7)
}

.eyebrow,.section-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    color: #8b7842;
    margin: 0 0 16px
}

.hero h1,h2 {
    font-family: Manrope,Arial,sans-serif;
    letter-spacing: -.045em;
    line-height: 1.04;
    margin: 0
}

.hero h1 {
    font-size: clamp(45px,5.5vw,78px);
    max-width: 800px
}

.hero h1 em,h2 em {
    font-style: normal;
    color: var(--navy)
}

.hero-text {
    max-width: 650px;
    font-size: 18px;
    color: var(--muted);
    margin: 28px 0 32px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 0;
    border-radius: 999px;
    padding: 15px 23px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 28px rgba(9,43,58,.18)
}

.btn-primary:hover {
    transform: translateY(-2px)
}

.btn-ghost {
    border: 1px solid var(--line);
    background: #fff
}

.btn-light {
    background: #fff;
    color: var(--navy);
    padding: 17px 25px
}

.trust-row {
    display: flex;
    gap: 38px;
    margin-top: 55px;
    border-top: 1px solid var(--line);
    padding-top: 23px
}

.trust-row div {
    display: flex;
    flex-direction: column
}

.trust-row strong {
    font: 800 20px Manrope
}

.trust-row span {
    font-size: 11px;
    color: var(--muted)
}

.hero-card {
    height: 490px;
    border-radius: 32px;
    background: linear-gradient(to bottom,rgba(6,31,43,.58) 0%,rgba(6,31,43,.66) 60%,rgba(6,31,43,.85) 100%),url("assets/photos/reuniao-negocios.webp") center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
    align-self: flex-start
}

.hero-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 15%,rgba(182,163,106,.15),transparent 35%),linear-gradient(135deg,transparent 40%,rgba(255,255,255,.02));
}

.orb {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    right: -80px;
    top: -80px
}

.orb:after {
    content: "";
    position: absolute;
    inset: 34px;
    border: 1px solid rgba(182,163,106,.35);
    border-radius: 50%
}

.card-title {
    position: relative;
    font: 600 31px/1.12 Manrope;
    margin-bottom: 35px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,.35)
}

.card-title strong {
    color: #f0e4b8
}

.mini-chart {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    position: relative
}

.mini-chart span {
    display: block;
    width: 10%;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(#c5b47a,#82959a)
}

.mini-chart span:nth-child(1) {
    height: 25%
}

.mini-chart span:nth-child(2) {
    height: 42%
}

.mini-chart span:nth-child(3) {
    height: 31%
}

.mini-chart span:nth-child(4) {
    height: 62%
}

.mini-chart span:nth-child(5) {
    height: 55%
}

.mini-chart span:nth-child(6) {
    height: 78%
}

.mini-chart span:nth-child(7) {
    height: 100%
}

.card-footer {
    position: relative;
    border-top: 1px solid rgba(255,255,255,.3);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 11px;
    text-shadow: 0 1px 4px rgba(0,0,0,.35)
}

.card-footer i {
    color: #f38000
}

.statement {
    padding: 125px 14%;
    text-align: center;
    background: var(--cream)
}

.statement h2 {
    font-size: clamp(34px,4vw,56px);
    max-width: 1050px;
    margin: auto
}

.statement h2 span {
    color: inherit
}

.statement h2 span i {
    color: #f38000
}

.statement p {
    max-width: 680px;
    margin: 25px auto 0;
    color: var(--muted)
}

.section {
    padding: 120px 8%
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: end;
    margin-bottom: 55px
}

.section-head h2 {
    font-size: clamp(38px,4.5vw,60px)
}

.section-head>p {
    max-width: 430px;
    color: var(--muted);
    margin: 0
}

.about {
    background: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 25px
}

.about-panel {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    padding: 55px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.big-number {
    font: 800 clamp(70px,9vw,130px)/.9 Manrope;
    color: #d1c18a;
    letter-spacing: -.08em
}

.about-panel p {
    color: #d4dfe2;
    max-width: 500px
}

.text-link {
    font-weight: 800;
    margin-top: 15px
}

.principles {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius);
    overflow: hidden
}

.principles>div {
    background: var(--paper);
    padding: 35px
}

.principles h3 {
    font: 700 21px Manrope;
    margin: 0 0 10px
}

.principles p {
    color: var(--muted);
    font-size: 14px
}

.services {
    background: var(--cream)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: .25s
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--brand-orange)
}

.service-card .icon {
    margin: 30px 0 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--brand-teal);
    font-size: 18px
}

.service-card h3 {
    font: 700 22px Manrope;
    margin: 0 0 10px;
    color: var(--brand-teal-dark)
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0
}

.service-card a {
    margin-top: auto;
    padding-top: 24px;
    font-weight: 800;
    font-size: 13px;
    color: var(--brand-orange)
}

.service-card a:hover {
    color: var(--brand-teal)
}

.segments {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    background: var(--navy);
    color: #fff
}

.segment-intro h2 {
    font-size: clamp(40px,4.5vw,62px)
}

.segment-intro h2 em {
    color: #d5c588
}

.segment-intro>p:last-child {
    color: #b8c8cb;
    max-width: 420px;
    margin-top: 25px
}

.segment-list {
    border-top: 1px solid rgba(255,255,255,.16)
}

.segment-list div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    align-items: center;
    padding: 23px 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
    color: #91a5a9;
    font-size: 11px
}

.segment-list strong {
    color: #fff;
    font-size: 17px
}

.team {
    background: #fff
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.team-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    min-height: 320px
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cream);
    object-fit: cover;
    display: block;
    margin-bottom: 28px;
    border: 1px solid var(--line)
}

.avatar-fallback {
    color: var(--navy);
    display: grid;
    place-items: center;
    font: 800 15px Manrope
}

.team-grid small {
    font-size: 9px;
    letter-spacing: .15em;
    font-weight: 800;
    color: #9a8650
}

.team-grid h3 {
    font: 700 20px Manrope;
    margin: 8px 0 10px
}

.team-grid p {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.team-note {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)!important
}

.team-note p {
    color: #b9c8cb
}

.team-note>span {
    font: 500 48px Manrope;
    color: #d2bf7e
}

.testimonials {
    background: var(--cream)
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    gap: 18px
}

.testimonial-track {
    flex: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none
}

.testimonial-track::-webkit-scrollbar {
    display: none
}

.testimonial-grid {
    display: flex;
    gap: 16px
}

.testimonial-card {
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 48px) / 4);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: .25s
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent)
}

.testimonial-brand {
    font: 700 16px Manrope;
    color: var(--navy);
    margin: 0 0 10px
}

.testimonial-text {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 18px;
    flex-grow: 1
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    width: 100%
}

.testimonial-name {
    font: 700 12px Manrope;
    color: var(--ink)
}

.testimonial-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .2s
}

.testimonial-arrow:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px
}

.testimonial-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: var(--line);
    cursor: pointer;
    transition: .2s
}

.testimonial-dots button.active {
    background: var(--navy);
    width: 22px;
    border-radius: 5px
}

.cta {
    margin: 0 8% 120px;
    padding: 70px 7%;
    border-radius: 32px;
    background: linear-gradient(120deg,var(--navy),#123f4e);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

.cta h2 {
    font-size: clamp(35px,4vw,54px)
}

.cta .eyebrow {
    color: #d2bf7e
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    background: var(--cream)
}

.contact h2 {
    font-size: clamp(40px,4vw,58px)
}

.contact-copy>p:not(.eyebrow) {
    color: var(--muted);
    max-width: 500px
}

.contact-items {
    margin-top: 45px;
    display: grid;
    gap: 24px
}

.contact-items small,.contact-form label {
    font-size: 10px;
    letter-spacing: .12em;
    font-weight: 800
}

.contact-items p,.contact-items a {
    display: block;
    margin: 5px 0 0;
    font-size: 14px
}

.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: 0 15px 50px rgba(10,35,45,.06);
    display: grid;
    gap: 18px
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #526269
}

.contact-form label span {
    font-weight: 500;
    letter-spacing: 0;
    color: #899398
}

.contact-form input,.contact-form textarea {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 15px;
    font: 500 14px "DM Sans";
    outline: none;
    background: #fff;
    color: var(--ink)
}

.contact-form input:focus,.contact-form textarea:focus {
    border-color: #8d9e9e;
    box-shadow: 0 0 0 3px rgba(9,43,58,.06)
}

.form-status {
    font-size: 12px;
    color: #667;
    margin: 0
}

.contact-items a[href^="mailto"]:hover,.contact-items a[href^="https://wa.me"]:hover,.contact-items a[href^="https://www.instagram.com"]:hover {
    color: var(--navy);
    text-decoration: underline
}

address {
    font-style: normal
}

.map-embed {
    margin-top: 36px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    background: #fff
}

.map-embed iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block
}

.contact-form input.invalid,.contact-form textarea.invalid {
    border-color: #c0554f;
    box-shadow: 0 0 0 3px rgba(192,85,79,.08)
}

.field-error {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    color: #c0554f;
    min-height: 14px;
    display: block
}

.hp-field {
    position: absolute!important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap
}

.contact-form button[disabled] {
    opacity: .6;
    cursor: not-allowed;
    transform: none!important
}

.form-status.success {
    color: #2f7a4f;
    font-weight: 700
}

.form-status.error {
    color: #c0554f;
    font-weight: 700
}

footer {
    background: var(--navy2);
    color: #d7e1e3;
    padding: 65px 8% 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    position: relative
}

.footer-brand p {
    font-size: 12px;
    color: #91a5a9;
    margin-top: 14px
}

.footer-brand .logo {
    height: 36px
}

footer>div:not(.footer-brand):not(.footer-bottom) {
    display: flex;
    flex-direction: column;
    gap: 9px
}

footer small {
    font-size: 9px;
    letter-spacing: .16em;
    color: #8ea1a5;
    font-weight: 800;
    margin-bottom: 7px
}

.footer-bottom {
    grid-column: 1/-1;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 22px;
    margin-top: 25px;
    color: #72888d;
    font-size: 11px
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease,transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(9,43,58,.28);
    z-index: 40;
    transition: transform .2s ease
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04)
}

.whatsapp-float svg {
    width: 28px;
    height: 28px
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 90px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(9,43,58,.22);
    z-index: 40;
    transition: opacity .2s ease,transform .2s ease
}

.back-to-top:hover {
    transform: translateY(-3px)
}

.back-to-top[hidden] {
    display: none
}

@media(max-width: 600px) {
    .whatsapp-float {
        right:16px;
        bottom: 16px;
        width: 50px;
        height: 50px
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px
    }

    .back-to-top {
        right: 16px;
        bottom: 76px;
        width: 40px;
        height: 40px
    }
}

@media print {
    .topbar,.header,.whatsapp-float,.back-to-top,.menu-btn,form,.map-embed {
        display: none!important
    }

    main,section {
        padding: 20px 0!important
    }

    body {
        background: #fff
    }
}

@media(max-width: 900px) {
    .nav {
        position:absolute;
        left: 0;
        right: 0;
        top: 82px;
        background: var(--paper);
        padding: 18px 7%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        border-bottom: 1px solid var(--line)
    }

    .nav.open {
        display: flex
    }

    .nav a {
        padding: 12px
    }

    .menu-btn {
        display: block
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 65px
    }

    .hero-card {
        height: 390px
    }

    .about-grid,.contact {
        grid-template-columns: 1fr
    }

    .service-grid,.team-grid {
        grid-template-columns: 1fr 1fr
    }

    .testimonial-card {
        flex-basis: 78%
    }

    .segments {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .cta {
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width: 600px) {
    section[id],main#inicio {
        scroll-margin-top:80px
    }

    .topbar {
        font-size: 10px
    }

    .header {
        height: 70px;
        padding: 0 5%
    }

    .nav {
        top: 70px
    }

    .section {
        padding: 80px 5%
    }

    .hero {
        padding: 32px 5% 55px;
        min-height: auto
    }

    .hero h1 {
        font-size: 44px
    }

    .hero-text {
        font-size: 16px
    }

    .trust-row {
        gap: 16px;
        justify-content: space-between
    }

    .trust-row strong {
        font-size: 16px
    }

    .trust-row span {
        font-size: 9px
    }

    .hero-card {
        height: 340px;
        padding: 28px
    }

    .section-head {
        display: block
    }

    .section-head>p {
        margin-top: 22px
    }

    .about-grid,.principles,.service-grid,.team-grid {
        grid-template-columns: 1fr
    }

    .testimonial-card {
        flex-basis: 92%
    }

    .testimonial-carousel {
        gap: 10px
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px
    }

    .principles>div {
        padding: 25px
    }

    .principles h3 {
        margin-top: 0
    }

    .statement {
        padding: 85px 7%
    }

    .statement h2 {
        font-size: 35px
    }

    .segments {
        padding-left: 5%;
        padding-right: 5%
    }

    .segment-list strong {
        font-size: 14px
    }

    .cta {
        margin: 0 5% 80px;
        padding: 45px 30px
    }

    .cta h2 {
        font-size: 34px
    }

    .contact {
        gap: 45px
    }

    .contact-form {
        padding: 24px
    }

    footer {
        padding: 50px 5%;
        grid-template-columns: 1fr 1fr
    }

    .footer-brand,.footer-bottom {
        grid-column: 1/-1
    }
}
