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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul,
ol {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font: inherit;
}.fade-element {
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.fade-element.visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

.fade-up { transform: translateY(40px); }
.fade-down { transform: translateY(-40px); }
.fade-left { transform: translateX(40px); }
.fade-right { transform: translateX(-40px); }
.fade-none { transform: translate(0, 0); }

.delay-0 { transition-delay: 0ms; }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }
.delay-700 { transition-delay: 700ms; }
.delay-800 { transition-delay: 800ms; }
.delay-1000 { transition-delay: 1000ms; }

.duration-fast { transition-duration: 500ms; }
.duration-normal { transition-duration: 1000ms; }
.duration-slow { transition-duration: 1500ms; }

.stagger-container > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-container.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(7) { transition-delay: 600ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(8) { transition-delay: 700ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(9) { transition-delay: 800ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(10) { transition-delay: 900ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(11) { transition-delay: 1000ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(12) { transition-delay: 1100ms; opacity: 1; transform: translateY(0); }
.stagger-container.visible > *:nth-child(13) { transition-delay: 1200ms; opacity: 1; transform: translateY(0); }body {
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1637px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}

@media (max-width: 768px) {
  .container {
      padding-left: 30px;
      padding-right: 30px;
  }
}.hero-section {
    position: relative;
    min-height: 480px;
    background: url('../images/hero-fallback.webp') center center / cover no-repeat;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
    z-index: 1;
}

.hero-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-subtitulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    color: #FF6700;
    margin-bottom: 12px;
}

.hero-titulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.15;
    color: #FFFFFF;
    max-width: 100%;
    margin-bottom: 16px;
}

.hero-descricao {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 100%;
    margin-bottom: 32px;
}

.hero-botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 49px;
    padding: 0 32px;
    background: #FF6700;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-botao:hover {
    background: #e55b00;
    transform: translateY(-1px);
}

.hero-botao:active {
    transform: translateY(0);
}

.hero-cert {
    position: absolute;
    bottom: 24px;
    right: 25px;
    z-index: 3;
    display: block;
    width: 72px;
    height: auto;
    object-fit: contain;
    text-decoration: none;
}

.hero-cert img {
    display: block;
    width: 72px;
    height: auto;
    object-fit: contain;
}

.hero-badge__link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-subtitulo {
        font-size: 1.25rem;
    }

    .hero-titulo {
        font-size: 3rem;
        line-height: 1.15;
        max-width: 750px;
    }

    .hero-descricao {
        font-size: 1rem;
        max-width: 560px;
    }

    .hero-botao {
        font-size: 1rem;
    }

    .hero-cert {
        top: auto;
        bottom: 36px;
        width: 96px;
    }

    .hero-cert img {
        width: 96px;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        min-height: 903px;
    }

    .hero-container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-subtitulo {
        font-size: 1.5rem;
        line-height: 29px;
        margin-bottom: 16px;
    }

    .hero-titulo {
        font-size: 4rem;
        line-height: 71px;
        max-width: 1200px;
        margin-bottom: 20px;
    }

    .hero-descricao {
        font-size: 1rem;
        line-height: 29px;
        max-width: 663px;
        margin-bottom: 40px;
    }

    .hero-botao {
        min-width: 288px;
        font-size: 1rem;
    }

    .hero-cert {
        width: 118px;
        bottom: 60px;
        right: max(45px, calc((100vw - 1637px) / 2 + 64px));
    }

    .hero-cert img {
        width: 118px;
    }
}.sobre-section {
    background: #100030;
    overflow: hidden;
}

.sobre-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sobre-conteudo {
    display: flex;
    flex-direction: column;
    padding-top: 48px;
    padding-bottom: 16px;
}

.sobre-subtitulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 29px;
    color: #FF6700;
    margin-bottom: 12px;
}

.sobre-titulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.sobre-descricao {
    max-width: 100%;
    margin-bottom: 32px;
}

.sobre-descricao p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9375rem;
    line-height: 28px;
    letter-spacing: 0;
    color: #FFFFFF;
}

.sobre-descricao p + p {
    margin-top: 16px;
}

.sobre-descricao strong {
    font-weight: 800;
}

.sobre-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sobre-servico-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sobre-servico-icone {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.sobre-servico-item span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: 0;
    color: #FFFFFF;
}

.sobre-imagem-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.sobre-imagem {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .sobre-container {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .sobre-conteudo {
        flex: 1;
        min-width: 0;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sobre-titulo {
        font-size: 2.75rem;
    }

    .sobre-imagem-wrapper {
        width: 320px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .sobre-imagem {
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .sobre-conteudo {
        flex: 1;
        padding-top: 0;
        padding-bottom: 0;
    }

    .sobre-subtitulo {
        font-size: 1.5rem;
        line-height: 29px;
        margin-bottom: 16px;
    }

    .sobre-titulo {
        font-size: 4rem;
        line-height: 100%;
        max-width: 590px;
        margin-bottom: 28px;
    }

    .sobre-descricao {
        max-width: 670px;
        margin-bottom: 40px;
    }

    .sobre-descricao p {
        font-size: 1rem;
        line-height: 31px;
    }

    .sobre-servicos {
        gap: 35px;
    }

    .sobre-servico-item {
        gap: 17px;
    }

    .sobre-servico-icone {
        width: 27px;
        height: 27px;
        margin-top: 2px;
    }

    .sobre-servico-item span {
        font-size: 1.125rem;
        line-height: 30px;
    }

    .sobre-imagem-wrapper {
        width: 570px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .sobre-imagem {
        height: 750px;
    }
}.linha-section {
    background: #100030;
    padding-top: 80px;
    padding-bottom: 80px;
}

.linha-header {
    text-align: center;
    margin-bottom: 48px;
}

.linha-subtitulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 29px;
    color: #FF6700;
    margin-bottom: 12px;
}

.linha-titulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

.linha-parceiro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.linha-parceiro-logo {
    width: 160px;
    height: auto;
    display: block;
    object-fit: contain;
}

.linha-parceiro-texto {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 29px;
    letter-spacing: 0;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

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

.linha-card {
    display: flex;
    flex-direction: column;
    max-width: 446px;
    margin: 0 auto;
    width: 100%;
    background-color: #000000;
}

.linha-card-imagem {
    width: 100%;
    aspect-ratio: 446 / 346;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.linha-card-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.linha-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 12px 8px;
    text-align: center;
    gap: 2px;
}

.linha-card-titulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 21px;
    letter-spacing: 0;
    color: #FF6700;
}

.linha-card-detalhe {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9375rem;
    line-height: 21px;
    letter-spacing: 0;
    color: #FFFFFF;
}

@media (min-width: 600px) {
    .linha-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .linha-card {
        max-width: none;
    }
}

@media (min-width: 768px) {
    .linha-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .linha-subtitulo {
        font-size: 1.25rem;
    }

    .linha-titulo {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .linha-section {
        padding-top: 157px;
        padding-bottom: 157px;
    }

    .linha-subtitulo {
        font-size: 1.5rem;
        line-height: 29px;
        margin-bottom: 16px;
    }

    .linha-titulo {
        font-size: 3rem;
        line-height: 100%;
    }

    .linha-parceiro {
        margin-top: 32px;
        gap: 16px;
    }

    .linha-parceiro-logo {
        width: 242px;
    }

    .linha-parceiro-texto {
        font-size: 1.25rem;
    }

    .linha-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        row-gap: 48px;
    }

    .linha-card-imagem {
        aspect-ratio: 446 / 346;
    }

    .linha-card-info {
        min-height: 100px;
        padding: 12px 10px;
    }

    .linha-card-titulo {
        font-size: 1rem;
        line-height: 21px;
    }

    .linha-card-detalhe {
        font-size: 1rem;
        line-height: 21px;
    }
}.diferenciais-section {
    background: #100030;
    padding-top: 60px;
    padding-bottom: 80px;
}

.diferenciais-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.diferencial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 21px;
}

.diferencial-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.diferencial-icone img {
    height: 64px;
    width: auto;
}

.diferencial-titulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    text-align: center;
}

.diferencial-descricao {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9375rem;
    line-height: 22px;
    letter-spacing: 0;
    color: #FFFFFF;
    text-align: center;
}

@media (min-width: 768px) {
    .diferenciais-section {
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .diferenciais-grid {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
    }

    .diferencial-card {
        flex: 1;
    }

    .diferencial-card:nth-child(1) {
        max-width: 490px;
    }

    .diferencial-card:nth-child(2) {
        max-width: 345px;
    }

    .diferencial-card:nth-child(3) {
        max-width: 490px;
    }
}

@media (min-width: 1200px) {
    .diferenciais-section {
        padding-top: 113px;
        padding-bottom: 160px;
    }

    .diferenciais-grid {
        display: grid;
        grid-template-columns: minmax(0, 467px) minmax(0, 345px) minmax(0, 497px);
        grid-template-rows: auto auto auto;
        justify-content: space-between;
        gap: 0;
    }

    .diferencial-card {
        display: grid;
        grid-row: span 3;
        grid-template-rows: subgrid;
        gap: 21px;
        justify-items: center;
        align-content: start;
        max-width: none;
    }

    .diferencial-icone {
        height: 72px;
    }

    .diferencial-icone img {
        height: 72px;
    }

    .diferencial-titulo {
        font-size: 2rem;
        line-height: 100%;
        align-self: start;
    }

    .diferencial-descricao {
        font-size: 1rem;
        line-height: 23px;
        align-self: start;
    }
}.contato-section {
    background: #100030;
    padding-top: 0;
    padding-bottom: 80px;
}

.contato-header {
    text-align: center;
    margin-bottom: 32px;
}

.contato-subtitulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 29px;
    color: #FF6700;
    margin-bottom: 12px;
}

.contato-titulo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.contato-descricao {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #717171;
}

.contato-card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-mapa-titulo {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #FF6700;
    text-align: center;
}

.contato-mapa-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
}

.contato-mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contato-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 4px;
}

.contato-localizacao {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.contato-endereco {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 22px;
    letter-spacing: 0;
    color: #FF6700;
    text-align: center;
    margin: 0;
}

.contato-email {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 22px;
    letter-spacing: 0;
    color: #FF6700;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s ease;
}

.contato-email:hover {
    opacity: 0.7;
}

.contato-whatsapps {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contato-zap-icone {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contato-zap-numeros {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 22px;
    letter-spacing: 0;
    color: #FF6700;
}

.contato-zap-numeros a {
    color: #FF6700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contato-zap-numeros a:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .contato-section {
        padding-bottom: 100px;
    }

    .contato-header {
        margin-bottom: 40px;
    }

    .contato-titulo {
        font-size: 2.25rem;
    }

    .contato-descricao {
        font-size: 1.125rem;
    }

    .contato-card {
        padding: 32px 40px;
        gap: 24px;
    }

    .contato-mapa-titulo {
        font-size: 1.75rem;
    }

    .contato-card-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .contato-localizacao {
        align-items: flex-start;
    }

    .contato-endereco {
        text-align: left;
    }

    .contato-email {
        text-align: left;
    }

    .contato-zap-numeros {
        font-size: 1rem;
    }

    .contato-zap-icone {
        width: 22px;
        height: 22px;
    }
}

@media (min-width: 1200px) {
    .contato-section {
        padding-bottom: 120px;
    }

    .contato-header {
        margin-bottom: 50px;
    }

    .contato-subtitulo {
        font-size: 1.5rem;
        line-height: 29px;
        margin-bottom: 16px;
    }

    .contato-titulo {
        font-size: 2.5rem;
        line-height: 100%;
        margin-bottom: 20px;
    }

    .contato-descricao {
        font-size: 1.125rem;
    }

    .contato-card {
        max-width: 1450px;
        margin: 0 auto;
        padding: 40px 62px;
        gap: 28px;
    }

    .contato-mapa-titulo {
        font-size: 2rem;
        line-height: 100%;
    }

    .contato-mapa-wrapper {
        max-width: 1326px;
        margin: 0 auto;
        aspect-ratio: 1326 / 474;
        border-radius: 46px;
    }

    .contato-endereco {
        font-size: 1.125rem;
    }

    .contato-email {
        font-size: 1.125rem;
    }

    .contato-whatsapps {
        gap: 13px;
    }

    .contato-zap-icone {
        width: 24px;
        height: 24px;
    }

    .contato-zap-numeros {
        font-size: 1.25rem;
        line-height: 22px;
    }
}:root {
    --header-height: 70px;
    --header-bg: #100030;
    --header-z: 1200;
    --nav-panel-z: 1100;
    --nav-overlay-z: 1090;
}

.site-header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--header-z);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
}

.site-logo {
    height: 40px;
    width: auto;
    display: block;
}

.main-navigation {
    display: none;
}

.header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-menu a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #f4f4f4;
    padding: 5px 0;
    position: relative;
    transition: color 0.2s ease;
}

.header-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--color-primary, #f4f4f4);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease-out;
}

.header-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-menu .current-menu-item > a::after,
.header-menu .current-menu-ancestor > a::after {
    transform: scaleX(1);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    z-index: calc(var(--nav-panel-z) + 1);
    position: relative;
}

.mobile-menu-toggle .line {
    width: 26px;
    height: 2px;
    display: block;
    background: #f4f4f4;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--nav-overlay-z);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    height: 100dvh;
    background: var(--header-bg);
    padding: calc(var(--header-height) + 30px) 30px 30px;
    z-index: var(--nav-panel-z);
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-menu__list a {
    color: #f4f4f4;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.3;
    padding: 10px 0;
    display: block;
    transition: color 0.2s ease;
}

.mobile-menu__list a:hover {
    color: var(--color-primary, #f4f4f4);
}

.mobile-menu__list .current-menu-item > a,
.mobile-menu__list .current-menu-ancestor > a {
    color: var(--color-primary, #f4f4f4);
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-toggle .line-1 {
    transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle .line-2 {
    opacity: 0;
}

body.mobile-menu-open .mobile-menu-toggle .line-3 {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
    :root {
        --header-height: 108px;
    }

    .site-logo {
        height: 68px;
    }

    .main-navigation {
        display: flex;
    }

    .header-menu {
        gap: 92px;
    }

    .header-menu a {
        font-size: 1.25rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}.site-footer {
    background: #FF6700;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 25px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo-img {
    width: 200px;
    height: auto;
    display: block;
}

.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-col-titulo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #160040;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0;
    color: #160040;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-menu a:hover {
    opacity: 0.7;
}

.footer-endereco-texto {
    font-family: 'DM Sans', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    line-height: 140%;
    letter-spacing: 0;
    color: #160040;
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #160040;
    transition: opacity 0.2s ease;
}

.footer-social-link:hover {
    opacity: 0.8;
}

.footer-social-link img {
    width: auto;
    height: auto;
    max-width: 12px;
    max-height: 12px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 23px;
    letter-spacing: 0;
    color: #000000;
}

.footer-credits {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 26px;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-amor-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.footer-credits a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-credits a:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-columns {
        flex-direction: row;
        gap: 60px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .footer-container {
        position: relative;
        min-height: 325px;
        padding-top: 0;
        padding-bottom: 25px;
        justify-content: flex-end;
    }

    .footer-top {
        position: absolute;
        top: 0;
        left: 64px;
        right: 64px;
        bottom: 70px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
    }

    .footer-logo-img {
        width: 361px;
        height: 117px;
    }

    .footer-columns {
        gap: 80px;
        align-self: flex-start;
        padding-top: 55px;
    }

    .footer-col-titulo {
        font-size: 1rem;
        margin-bottom: 27px;
    }

    .footer-endereco-texto {
        max-width: 140px;
    }

    .footer-copyright {
        font-size: 1rem;
    }
}