/* ===================================================
   COCRIAÇÃO ETIPI — Design System
   Font: Montserrat
   Primary: #075fac | Dark: #00172c | Accent: #70adff
=================================================== */

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #00172c;
    background: #fff;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

/* === LAYOUT UTILS === */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 159px; /* Aligned with header/footer */
    position: relative;
}

/* === SECTION HEADERS === */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 48px;
    text-align: left;
}

.section-header--center {
    align-items: center;
    text-align: center;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #075fac;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #00172c;
    letter-spacing: -0.9px;
    line-height: 40px;
}

.section-title--left {
    text-align: left;
}

.section-desc {
    font-size: 16px;
    font-weight: 400;
    color: #43474e;
    line-height: 24px;
}

.section-desc--left {
    text-align: left;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: #075fac;
    color: #fff;
}

.btn--primary:hover {
    background: #054d8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7,95,172,0.35);
}

.btn__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
}

.btn--outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 500px;
    padding: 0 32px;
    height: 60px;
    min-width: 300px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
}

.btn--white {
    background: #fff;
    color: #075fac;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    padding: 0 32px;
    height: 60px;
    min-width: 300px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.btn--white:hover {
    background: #f8faff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===================================================
   HEADER
=================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.16);
    transition: box-shadow 0.3s ease;
}

.header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 159px; /* Aligned with .container */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo-img {
    height: 52px;
    width: auto;
    aspect-ratio: 110.6 / 51.8;
    flex-shrink: 0;
    object-fit: contain;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    letter-spacing: -0.35px;
    line-height: 20px;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #075fac;
    transition: width 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: #075fac;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #00172c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animação do Burger para X */
.header__burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.open span:nth-child(2) {
    opacity: 0;
}

.header__burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   HERO SECTION
=================================================== */
.hero {
    position: relative;
    min-height: 870px;
    display: flex;
    align-items: center;
    padding: 192px 0;
    overflow: hidden;
    margin-top: 84px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__bg-color {
    position: absolute;
    inset: 0;
    background: #00172c;
}

.hero__bg-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__bg-img {
    position: absolute;
    width: 110.18%;
    height: 127.38%;
    top: -15.5%;
    left: 3.53%;
    max-width: none;
    object-fit: cover;
}

.hero__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #061727 25.962%,
        rgba(0,23,44,0.4) 52.404%,
        rgba(0,23,44,0) 89.423%
    );
}

.hero__bg-desaturate {
    position: absolute;
    inset: 0;
    background: #fff;
    mix-blend-mode: saturation;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 159px;
}

.hero__tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__tag {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 100px;
    padding: 5px 13px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__heading {
    margin-top: 8px;
}

.hero__title {
    font-size: clamp(64px, 7vw, 96px);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.32px;
}

.hero__title-accent {
    color: #70adff;
}

#typewriter {
    display: inline;
}

.hero__description {
    max-width: 672px;
    margin-top: 8px;
}

.hero__description p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.hero__cta {
    margin-top: 24px;
}

/* ===================================================
   METODOLOGIA SECTION
=================================================== */
.metodologia {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.metodologia__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.metodologia__bg-color {
    position: absolute;
    inset: 0;
    background: #f2f4f7;
}

.metodologia__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.6;
}

.steps {
    display: flex;
    gap: 2px;
    align-items: stretch;
}

.step {
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px 24px;
    flex: 1;
    min-height: 209px;
}

.step--first { border-radius: 8px 0 0 8px; }
.step--last  { border-radius: 0 8px 8px 0; }

.step__num {
    font-size: 36px;
    font-weight: 900;
    color: #e0e3e6;
    line-height: 40px;
    display: block;
}

.step__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step__title {
    font-size: 20px;
    font-weight: 700;
    color: #00172c;
    line-height: 28px;
}

.step__desc {
    font-size: 14px;
    font-weight: 400;
    color: #43474e;
    line-height: 22px;
}

/* ===================================================
   PRINCÍPIOS SECTION
=================================================== */
.principios {
    background: #fff;
    padding: 96px 0;
}

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

.principle-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 20px 50px 0 rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

.principle-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(7,95,172,0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-card__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.principle-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.principle-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #00172c;
    line-height: 28px;
}

.principle-card__desc {
    font-size: 14px;
    font-weight: 400;
    color: #43474e;
    line-height: 22px;
}

/* ===================================================
   CASE DE SUCESSO SECTION
=================================================== */
.case {
    background: #fff;
    padding: 96px 0;
}

.section-header--left {
    align-items: flex-start;
    text-align: left;
}

.case-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 0;
}

.case-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Card body (content + divider + button) */
.case-card__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 32px;
    flex: 1;
}

.case-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.case-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 26px;
    text-align: left;
}

.case-card__desc {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    line-height: 22px;
    text-align: left;
}

.case-card__divider {
    border: none;
    border-top: 1px solid #e8edf2;
    margin: 0;
}

/* Button: Conhecer projeto */
.btn--case {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #075fac;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    align-self: flex-start;
}

.btn--case:hover {
    background: #054d8c;
    transform: translateY(-2px);
}

/* Evidence Bar */
.evidence-bar {
    background: rgba(27,45,107,0.05);
    border: 1px solid rgba(27,45,107,0.10);
    border-radius: 8px;
    padding: 17px 25px;
}

.evidence-bar p {
    font-size: 16px;
    font-weight: 500;
    color: #1b2d6b;
    line-height: 22.75px;
}

/* ===================================================
   MÉTRICAS SECTION
=================================================== */
.metricas {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.metricas__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.metricas__bg-color {
    position: absolute;
    inset: 0;
    background: #f2f4f7;
}

.metricas__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
    opacity: 0.5;
}

.metrics-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 48px;
}

.metric-card {
    flex: 1;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 33px 25px;
    box-shadow: 0 20px 50px 0 rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.25s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
}

.metric-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1b2d6b;
    line-height: 28px;
}

.metric-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
}

.metric-badge--up {
    background: rgba(40,167,69,0.10);
    color: #28a745;
}

.metric-badge__icon {
    width: 12px;
    height: 7px;
}

.metric-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric-card__desc {
    font-size: 14px;
    font-weight: 400;
    color: #43474e;
    line-height: 22px;
}

/* NPS */
.nps-comparison {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nps-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nps-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.nps-label--before { color: #c0272d; }
.nps-label--after  { color: #28a745; }

.nps-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 36px;
}

.nps-number--before { color: #c0272d; }
.nps-number--after  { color: #28a745; }

.nps-bars {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
}

.nps-bar-track {
    height: 16px;
    background: rgba(7,95,172,0.10);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.nps-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 12px;
    transition: width 1.5s ease;
}

.nps-bar-fill--before { background: #c0272d; }
.nps-bar-fill--after  { background: #28a745; }

/* Big metric */
.big-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.big-metric__number {
    font-size: 40px;
    font-weight: 800;
    color: #1b2d6b;
    line-height: 48px;
}

.big-metric__label {
    font-size: 12px;
    font-weight: 700;
    color: #43474e;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Time metric */
.time-metric {
    display: flex;
    align-items: center;
    gap: 16px;
}

.time-metric__icon {
    flex-shrink: 0;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-metric__icon img {
    width: 100%;
    height: 100%;
}

.time-metric__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-metric__number {
    font-size: 40px;
    font-weight: 800;
    color: #1b2d6b;
    line-height: 40px;
}

.time-metric__label {
    font-size: 12px;
    font-weight: 700;
    color: #43474e;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.evidence-bar--metrics {
    margin-top: 0;
}

/* ===================================================
   ROADMAP SECTION
=================================================== */
.roadmap {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.roadmap__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.roadmap__bg-color {
    position: absolute;
    inset: 0;
    background: #f2f4f7;
}

.roadmap__bg-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    mix-blend-mode: luminosity;
    opacity: 0.20;
}

.roadmap__bg-img {
    position: absolute;
    width: 117.92%;
    height: 202.87%;
    top: -51.43%;
    left: -8.96%;
    max-width: none;
    object-fit: cover;
}

.roadmap-timeline {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
}

.roadmap-line {
    position: absolute;
    top: 47px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(130,130,130,0.3);
    z-index: 0;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 270px;
    position: relative;
    z-index: 1;
}

.roadmap-step__circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-step__circle--outline {
    background: #fff;
    border: 1px solid rgba(130,130,130,0.20);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.roadmap-step__circle--filled {
    background: #00172c;
    box-shadow: 0 10px 15px -3px rgba(0,23,44,0.20), 0 4px 6px -4px rgba(0,23,44,0.20);
}

.roadmap-step__circle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.roadmap-step__circle--filled img {
    filter: brightness(0) invert(1);
}

.roadmap-step__title {
    font-size: 24px;
    font-weight: 700;
    color: #00172c;
    text-align: center;
    line-height: 28px;
}

.roadmap-step__desc {
    font-size: 14px;
    font-weight: 400;
    color: #43474e;
    text-align: center;
    line-height: 22.75px;
    max-width: 182px;
}

.roadmap-step--active .roadmap-step__title {
    color: #075fac;
}

/* ===================================================
   CTA SECTION
=================================================== */
.cta-section {
    position: relative;
    padding: 96px 159px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 524px;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-section__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(107.156deg, #053d6d 14.073%, #075fac 97.098%);
}

.cta-section__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    max-width: 768px;
    text-align: center;
}

.cta-content__title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    letter-spacing: -1.5px;
}

.cta-content__desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.80);
    line-height: 28px;
}

.cta-content__actions {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
    background: #0f172a;
    padding: 64px 159px;
}

.footer__container {
    max-width: 1170px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 33px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 32px;
}

.footer__logo-img {
    height: 61px;
    width: auto;
    aspect-ratio: 130 / 60.8;
    flex-shrink: 0;
    object-fit: contain;
}

.footer__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer__nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #94a3b8;
    line-height: 16px;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer__nav-link:hover {
    color: #fff;
}

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

.footer__copy {
    font-size: 16px;
    font-weight: 400;
    color: #94a3b8;
    line-height: 24px;
    max-width: 728px;
}

.footer__gov-logo-img {
    height: 68px;
    width: auto;
    aspect-ratio: 141 / 68.2;
    flex-shrink: 0;
    object-fit: contain;
}

/* ===================================================
   BACK TO TOP BUTTON
=================================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #717171;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    opacity: 0;
    visibility: hidden;
    color: #717171;
    padding: 0;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #075fac;
    border-color: #075fac;
    color: #fff;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.cursor-blink {
    animation: blink 1.2s step-end infinite;
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger children */
.hero__tags    { animation: fadeInUp 0.5s 0.1s ease both; }
.hero__heading { animation: fadeInUp 0.5s 0.25s ease both; }
.hero__description { animation: fadeInUp 0.5s 0.4s ease both; }
.hero__cta     { animation: fadeInUp 0.5s 0.55s ease both; }

/* Scroll-triggered sections */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 48px;
    }

    .header__container {
        padding: 16px 48px;
    }

    .hero {
        padding: 140px 0;
    }

    .hero__content {
        padding: 0 48px;
    }

    .footer {
        padding: 64px 48px;
    }

    .cta-section {
        padding: 96px 48px;
    }
}

@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-wrap: wrap;
    }

    .step--first, .step--last {
        border-radius: 8px;
    }

    .step {
        border-radius: 8px;
    }

    .roadmap-timeline {
        flex-wrap: wrap;
        gap: 32px;
    }

    .roadmap-line {
        display: none;
    }

    .case-cards {
        flex-direction: column;
        gap: 24px;
    }

    .metrics-grid {
        flex-direction: column;
    }

    .cta-content__title {
        font-size: 48px;
        line-height: 52px;
    }
}

@media (max-width: 768px) {
    .header__container {
        padding: 16px 24px;
    }

    .header__nav {
        display: none;
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .header__nav.open {
        display: flex;
    }

    .header__burger {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero__content {
        padding: 0 24px;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__description p {
        font-size: 16px;
    }

    .container {
        padding: 0 24px;
    }

    .footer {
        padding: 48px 24px;
    }

    .footer__top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 24px;
    }

    .steps {
        flex-direction: column;
        gap: 16px;
    }

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

    .cta-content__title {
        font-size: 36px;
        line-height: 40px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .btn--outline-white {
        min-width: auto;
        width: 100%;
        max-width: 320px;
    }
}

/* === MÉTRICAS ACTIONS === */
.metricas__actions {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.btn--outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #075fac;
    color: #075fac;
    background: transparent;
    border-radius: 8px;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn--outline-primary:hover {
    background: rgba(7, 95, 172, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 95, 172, 0.15);
}

@media (max-width: 768px) {
    .metricas__actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .metricas__actions .btn,
    .metricas__actions .btn--outline-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
