* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

:root {
    --primary-color: #01023A;
    --secundary-color: #FFFFFF;
    --terciary-color: #D9D9D9;
    --gray: #F5F5F5;
    --font-size-h1: clamp(1.8rem, 4vw, 3rem);
    --line-height-h1: clamp(2.5rem, 4vw, 3.8rem);
    --font-size-h2-atenction: clamp(1.15rem, 4vw, 1.25rem);
    --line-heigth-h2-atenction: clamp(1.8rem, 4vw, 2rem);
    --font-size-h3-atenction: clamp(1.7rem, 4vw, 1.5rem);
    --line-heigth-h3-atenction: clamp(1.7rem, 4vw, 2.5rem);
    --font-size-h2: clamp(1.5rem, 2.5vw, 2.5rem);
    --line-heigth-h2: clamp(2rem, 4vw, 3rem);
    --font-size-h3: clamp(1.375rem, 2.5vw, 1.5rem);
    --line-heigth-h3: clamp(2rem, 4vw, 2.5rem);
    --font-size-h2-footer: clamp(1.25rem, 4vw, 1.5rem);
    --font-size-h3-footer: clamp(0.90rem, 4vw, 1rem);
    --font-size-p: clamp(1rem, 3vw, 1.125rem);
    --line-heigth-p: clamp(1.7rem, 4vw, 2rem);
    --font-size-a: clamp(1rem, 3vw, 1.125rem);
    --line-heigth-a: clamp(1.7rem, 4vw, 2rem);
} 

.lazy-section {
  opacity: 1; /* muda para visível */
  transform: translateY(10px); /* desloca pra "esconder" visualmente */
  filter: blur(0.1rem); /* borrão para esconder */
  transition: all 0.5s ease-out;
}

.lazy-section.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.lazy-el {
  opacity: 1; /* visível */
  transform: translateY(60px);
  filter: blur(0.1rem);
  transition: all 0.8s ease;
}

.lazy-el.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

section {
    width: 100%;
    height: 100%;
}

footer {
    width: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
p,
a,
strong,
button,
img {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: var(--font-size-h2);
    line-height: var(--line-heigth-h2);
    color: var(--primary-color);
}

h3 {
    margin-top: 1rem;
    font-size: var(--font-size-h3);
    line-height: var(--line-heigth-h3);
    color: var(--primary-color);
}

p {
    margin-top: 1rem;
    line-height: var(--line-heigth-p);
    font-size: var(--font-size-p);
    color: var(--primary-color); 
}

strong {
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: var(--secundary-color);
    font-size: var(--font-size-a);
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
}

ul {
    list-style-type: none;
}

li {
    margin-top: 1rem;
    font-size: var(--font-size-p);
    line-height: var(--line-heigth-p);
    display: flex;
    align-items: initial;
    font-weight: bold;
    cursor: pointer;
}

button {
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 1rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem;
    margin: 0;
    display: inline-block;
    font-weight: bold;
}

img {
    border: none;
}

.desktop {
    display: none;
}

.container {
    width: 100%;
    max-width: 1180px;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0 20px;
    margin: auto;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    background-color: var(--secundary-color);
    box-shadow: 0px 2px 6px var(--primary-color);
}

header .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: nowrap;
    flex-direction: row;
}

header .logo {
    width: 60%;
}

header .logo img {
    width: 100%;
    max-width: 230px;
    height: auto;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.menu {
    display: block;
    position: fixed;
    top: 3.4rem;
    left: 0;
    width: 100%;
    height: 100vh;
    border-top: solid 0.1rem var(--gray);
    background-color: var(--secundary-color);
    color: var(--secundary-color);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
}

.menu.menu-aberto {
    transform: translateX(0);
    opacity: 1;
}

.menu li {
    color: var(--primary-color);
    border-bottom: solid 0.1rem var(--gray);
}

.menu .solutions {
    padding: 0;
    margin-top: 1rem;
    border-bottom: solid 0.1rem var(--gray);
    padding-bottom: 0.3rem;
    width: 100%;
    text-align: start;
    font-size: var(--font-size-p);
}

.menu-icon {
    justify-content: right;
}

.menu-icon button {
    padding: 0;
    margin: 0;
}

.icon-close-menu button {
    padding: 0;
    margin: 0;
}

.btn-menu .btn {
    position: fixed;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px); /* 100% menos o padding lateral de 20px */
    padding: 1rem;
    background-color: var(--primary-color);
    text-align: center;
    box-sizing: border-box;
    z-index: 9999;
}

.atenction {
        width: 100%;
        height: 100vh;
        display: flex;
        background-image: url('../imagens/img-hero-mobile.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: scroll;
        align-items: center;
        box-sizing: border-box;
        color: var(--secundary-color);
}

.atenction .content {
    margin-top: 3rem;
}

.atenction h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
}

.atenction h2 {
    font-size: var(--font-size-h2-atenction);
    line-height: var(--line-heigth-h2-atenction);
    margin-top: 2rem;
    max-width: 90%;
    color: var(--secundary-color);
}

.atenction .btn {
    background-color: var(--primary-color);
    padding: 0.7rem 2rem;
    display: inline-block;
    margin-top: 2rem;
    text-align: center;
    border-radius: 0;
}

.sobre .mobile {
    width: 100%;
    overflow: hidden;
}

.sobre .mobile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
}

.services h2 {
    margin-top: 2rem;
}

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.card {
    border: solid 0.1rem var(--primary-color);
    padding: 1rem;
    cursor: pointer;
    height: 100%;
}

.services .cards .card:hover {
    background-color: var(--primary-color);
    color: var(--secundary-color);
}

.services .card:hover img,
.services .card:hover h3,
.services .card:hover p {
    filter: brightness(0) invert(1); /* deixa o ícone branco */
    color: var(--secundary-color);
}

.services .card:hover .btn {
    background: var(--secundary-color);
    color: var(--primary-color);
}

.btn, 
.call-to-action a {
    background-color: var(--primary-color);
    padding: 0.7rem 2rem;
    display: inline-block;
    text-align: center;
    margin-top: 1rem;
    color: var(--secundary-color);
}

.advantages {
    background-color: var(--gray);
}

.slides-container {
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

.advantages h2 {
    margin-top: 2rem;
    padding: 0 20px;
}

.slides-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    position: relative;
    box-sizing: border-box;
    padding: 0 20px;
    margin: auto;
    scrollbar-width: none; /* Firefox */
}

.slides-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.slide {
    width: 90%;
    flex: 0 0 auto;
    border: solid 0.1rem var(--primary-color);
    background-color: var(--terciary-color);
    padding: 1rem;
    box-shadow: 0 4px 10px 1px var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: space-between; /* distribui elementos igualmente */
    box-sizing: border-box;
}

.prev, 
.next {
    display: none;
}

.sobre {
    background-color: var(--primary-color);
}

.sobre .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sobre .card {
    border: none;
    padding: 0;
}

.sobre h2 {
    color: var(--secundary-color);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1rem;
}

.sobre p {
    color: var(--secundary-color);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.sobre .btn {
    background-color: var(--gray);
    color: var(--primary-color);
    margin-top: 0;
}

.call-to-action img {
    margin-top: 2rem;
    width: 100%;
    height: auto;
}

.call-to-action .text {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.call-to-action p {
    font-weight: bold;
}

#homeSite button {
    margin: 1rem auto 0.5rem auto;
    display: block;
    background-color: var(--primary-color);
    color: var(--secundary-color);
}

footer {
    background-color: var(--primary-color);
}

.container-social {
    width: auto;
    max-width: 1180px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
    gap: 5px;
}

.share button {
    padding: 0;
}

footer .logo img {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.container-wrapper {
    width: auto;
    max-width: 1180px;
    display: flex;
    flex-direction: column;
    border-top: solid .1rem var(--terciary-color);
    border-bottom: solid .1rem var(--terciary-color);
    margin: 0 20px;
    padding: 1rem 0;
    justify-content: space-between;
    box-sizing: border-box;
}

footer h2 {
    color: var(--secundary-color);
    font-size: var(--font-size-h2-footer);
    margin-top: 1rem;
}

footer h3 {
    color: var(--secundary-color);
    margin-top: 1rem;
    font-size: var(--font-size-h3-footer);
}

.endereco h2 {
    margin-top: 0;
}

address {
    font-style: normal;
}

.contato a {
    font-weight: normal;
    margin-top: 0;
    font-size: 1rem;
    color: var(--secundary-color);
}

footer p {
    color: var(--terciary-color);
    font-size: 1rem;
    font-weight: normal;
}

.legal a {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: var(--secundary-color);
}

.legal li {
    font-weight: normal;
}

.container-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.copy {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.copy p {
    font-size: clamp(0.60rem, 3vw, 0.70rem);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--terciary-color);
    padding: 20px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, .1);
    z-index: 1000;
}

.container-cookie {
    width: auto;
    margin: auto;
    display: flex;
    padding: 0 20px;
    gap: 5px;
    box-sizing: border-box;
}

.cookie-banner .container-cookie p {
    color: var(--secundary-color);
    font-size: clamp(0.70rem, 3vw, 0.85rem);
    line-height: 1rem;
    margin: 0;
    padding: 0;
}

.cookie-banner a {
    color: var(--secunday-color);
    font-size: clamp(0.70rem, 3vw, 0.85rem);
    text-decoration: underline;
    line-height: clamp(1rem, 3vw, 1.2rem);
    margin: 0;
    padding: 0;
}

.cookie-banner button {
    padding: 10px 20px;
    font-size: var(--footer-a);
    font-family: var(--font-family);
    color: var(--primary-color);
    background-color: var(--secundary-color);
    border-radius: 5px;
}

.cookie-banner {
    display: none;
}

.formulario {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    display: none;
}

.formulario .container {
    width: 100%;
    padding: 1rem;
}

.formulario .content {
    background-color: var(--terciary-color);
    width: 100%;
    max-width: 800px;
    margin: auto;
    color: var(--terciary-color);
    box-sizing: border-box;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#homeSite {
    background-color: var(--gray);
    padding: 1rem;
    margin-top: 1rem;
}

.close-popup-form {
    text-align: right;
    color: var(--primary-color);
}

.close-popup-form button:hover {
    background-color: var(--gray);
    border-radius: 3rem;
}

.formulario h2 {
    text-align: center;
}

.formulario p {
    text-align: center;
    font-weight: bold;
}

.formulario h3 {
    margin-bottom: 2rem;
    font-size: var(--font-size-p);
    line-height: var(--line-heigth-p)
}

form {
    background-color: var(--gray);
    padding: 1rem;
    margin-top: 2rem;
}

.content-display input, select {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

label {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
}

input, select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    box-sizing: border-box;
    border: solid 0.1rem var(--primary-color);
    font-family: var(--font-family);
    cursor: pointer;
}

.products-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.display-position {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  gap: 0.5rem;
  align-items: first baseline;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1.7rem;
}

input[type="checkbox"] {
    width: 15px; /* Largura do checkbox */
    height: 15px; /* Altura do checkbox */
    cursor: pointer; /* Adiciona um cursor de ponteiro ao passar sobre o checkbox */
}

.checkbox-container {
    width: auto;
    display: flex;
    margin: 0 auto;
    padding: 0 0;
    box-sizing: border-box;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 2rem;
}

.checkbox-container .aceite {
    width: 5%;
    display: flex;
    margin-top: 0.15rem;
}

.checkbox-container label a {
    font-size: 0.85rem;
    text-decoration: underline;
}

.checkbox-container .texto-aceite {
    width: 92%;
}

.texto-aceite {
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.popup-form-success {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8); /* ou o que combinar com o layout */
  display: none; /* Será mudado para flex pelo JS */
  
}

.popup-form-success .content {
  background-color: var(--primary-color);
  padding: 0;
  margin: auto;
  border-radius: 0.5rem;
}

.popup-form-success h2,
.popup-form-success p,
.popup-form-success button {
    color: var(--secundary-color);
}

.close-popup-sucess {
   text-align: right;
}

.popup-form-success .text {
    display: block;
    padding: 2rem;
}

@media screen and (min-width:744px) {

    .atenction {
        width: 100%;
        height: 100vh;
        display: flex;
        background-image: url('../imagens/img-hero-tablet.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
        justify-content: center;
        align-items: center;
        box-sizing: border-box
    }

    .atenction h1 {
        width: 60%;
    }

    .atenction h2 {
        width: 60%
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .call-to-action .container {
        flex-direction: row;
        gap: 1rem;
    }

    .advantages .slide {
        width: 40%;
    }

    .call-to-action .image {
        width: 48%;
        margin-bottom: 2rem;
    }

    .call-to-action img {
        height: 236px;
    }

    .call-to-action .text {
        width: 48%;
        margin-top: 0;
    }

    .call-to-action h2 {
        margin-top: 2rem;
        width: 80%;
    }

    .call-to-action p {
        width: 75%;
    }

    .content-form {
        display: flex;
        gap: 1rem;
    }

    .content-display {
        width: 50%;
    }

    footer .logo img {
        width: 100%;
    }

    .container-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        box-sizing: border-box
    }

    .endereco {
        width: 28%
    }

    .solutions {
        width: 28%
    }

    .contato {
        width: 40%
    }

    .solutions h2 {
        margin-top: 0
    }

    .contato h2 {
        margin-top: 0
    }

    .legal {
        width: 48%
    }

    .products-form {
        grid-template-columns: 1fr 1fr;
    }

    .popup-form-success .content {
        padding: 2rem;
        width: 60%;
    }

    .close-popup {
        margin-top: 0;
    }

    .cookie-banner {
        height: 6rem;
    }

}

@media screen and (min-width:1280px) {

    .container {
        width: 1180px;
        padding: 0;
    }

    header .container {
        width: 1180px;
        padding: 0;
    }

    header .logo img {
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    header .icon-close-menu {
        position: fixed;
        top: 1.7rem;
        right: 20px;
    }

    .menu {
        background-color: rgba(0, 0, 0, 0.8);
        top: 4.95rem;     
        overflow: hidden;
        border: none;
    }

    .menu .container {
        position: fixed;
        display: block;
        justify-content: flex-end;
        align-items: flex-end;
        width: 440px;
        height: 100vw;
        right: 0;
        padding: 1rem;
        background-color: var(--secundary-color);
        border-top: solid 0.1rem var(--gray);
    }

    .menu li {
        position: relative;
        color: var(--primary-color);
        border-bottom: solid 0.1rem var(--gray);
        overflow: hidden; /* Garante que o efeito não ultrapasse o li */
    }

    /* Linha animada */
    .menu li::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.1rem;
        background: var(--primary-color);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    }

    /* Hover: anima a linha da esquerda para a direita */
    .menu li:hover::after {
        transform: scaleX(1);
    }

    .menu .solutions {
        position: relative;
        overflow: hidden;
    }

    /* Linha animada para o botão solutions */
    .menu .solutions::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.1rem;
        background: var(--primary-color);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    }

    .menu .solutions:hover::after {
        transform: scaleX(1);
    }

    .menu .btn-menu .btn {
        position: relative;
        bottom: 0;
        top: 15rem;
        right: 0;
        width: 400px; /* 440px (container) - 40px (padding: 20px de cada lado) */
        margin-right: 20px;
        z-index: 1001;
    }

    .atenction {
        width: 100%;
        height: 100vh;
        display: flex;
        background-image: url('../imagens/img-hero-desktop.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
        justify-content: center;
        align-items: center;
        box-sizing: border-box
    }

    .atenction .content {
        margin-top: 5rem;
    }

    .atenction h1 {
        width: 70%;
    }

    .atenction h2 {
        width: 60%
    }

    .services h2 {
        margin-top: 4rem;
    }

    .mobile {
        display: none;
    }

    .cards {
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 4rem;
    }

    .advantages h2 {
        padding: 0 85px;
        margin-top: 4rem;
    }

    .slides-wrapper {
        padding: 0 85px;
        margin-bottom: 4rem;
    }

    .advantages .slide {
        width: 31.2%;
    }

    .prev, 
    .next {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 48%;
        transform: translateY(-50%);
        padding: 1rem;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        z-index: 10;
        color: var(--primary-color);
        border-radius: 3rem;
        border: solid 0.15rem var(--primary-color);
    }

    .prev:hover, 
    .next:hover {
         background-color: var(--primary-color);
         color: var(--secundary-color);
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 50px;
    }

    .sobre .text {
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        
    }

    .sobre .card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 4rem;
        margin-bottom: 4rem;
        gap: 2rem;
    }

    .sobre .desktop {
        display: flex;
    }

    .sobre .desktop img {
        width: 100%;
        height: auto;
    }

    .call-to-action .container {
        flex-wrap: wrap;
    }

    .call-to-action .image {
        width: 58%;
        margin-top: 2rem;
        margin-bottom: 4rem;
    }

    .call-to-action img {
        height: auto;
    }

    .call-to-action .text {
        width: 40%;
        margin-top: 2rem;
    }

    .call-to-action h2 {
        font-size: 2.5rem;
        width: 100%;
        line-height: 3rem;
    }

    .call-to-action p {
        font-size: 1.5rem;
        width: 100%;
    }

    .formulario .content {
        padding: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .checkbox-container .texto-aceite {
        width: 97%;
        display: flex;
    }

    .checkbox-container .aceite {
        width: 2%;
    }

    .container-social {
        width: 1180px;
        padding: 0;
    }

    .linkedin img,
    .share img {
        width: 32px;
        height: 32px
    }

    .container-wrapper {
        width: 1180px;
        margin: 0 auto;
    }

    .endereco {
        width: 22%;
    }

    .solutions {
        width: 24%
    }

    .contato {
        width: 20%
    }

    .legal {
        width: 20%;
    }

    h2 {
        margin-top: 0
    }

    footer .solutions p {
        position: relative;
        display: inline-block; /* Essencial para o tamanho da palavra */
        overflow: hidden;
    }

    /* Linha animada para o botão solutions */
    footer .solutions p::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.1rem;
        background: var(--secundary-color);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    }

    footer .solutions p:hover::after {
        transform: scaleX(1);
    }

    footer .contato a {
        position: relative;
        display: inline-block; /* Essencial para o tamanho da palavra */
        overflow: hidden;
    }

    /* Linha animada para o botão solutions */
    footer .contato a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.1rem;
        background: var(--secundary-color);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    }

    footer .contato a:hover::after {
        transform: scaleX(1);
    }

    .legal h2 {
        margin-top: 0;
    }

    .legal a {
        position: relative;
        display: inline-block; /* Essencial para o tamanho da palavra */
        overflow: hidden;
    }

    /* Linha animada para o botão solutions */
    .legal a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0.1rem;
        background: var(--secundary-color);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    }

    .legal a:hover::after {
        transform: scaleX(1);
    }

    .container-cookie {
        width: 1180px;
        padding: 0;
    }

    .popup-form-success .content {
        width: 40%;
    }
}