:root {
    --md-sys-color-on-primary: #ffffff;
    --md-sys-color-surface: #191919;
    --md-sys-color-on-surface: #ffffff;
    --md-sys-color-outline: #9e9e9e;
    --md-sys-color-surface-variant: #2c2c2c;
    --md-elevation-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
    --color-text: navy;
    --color-bg: papayawhip;
    --color-bg-accent: #ecdcc0;
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

@font-face {
    font-family: 'Optika';
    font-style: normal;
    font-weight: 400;
    src:
        local('Optika-Regular'),
        url('./../fonts/Optika-Regular.woff2') format('woff2');
    font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}



body {
    line-height: 1;
    height: 100%;
    font-family: "Optika", sans-serif;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    border: 0;
    padding: 0;
    font-family: inherit;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

@media (min-width: 880px) {
    html {
        scroll-padding-top: 30px;
    }
}

body {
    font-family: "Optika", sans-serif;
    background-color: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    margin: 0;
    position: relative;
}

a {
    color: var(--md-sys-color-on-surface);
    text-decoration: none;
}

p {
    font-weight: 400;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background: #000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 600px) {
    .navbar {
        position: fixed;
        justify-content: space-between;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(8.6px);
        -webkit-backdrop-filter: blur(8.6px);
    }

    .navbar-center {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
    }

    .nav-logo {
        margin: 10px;
    }
}

.navbar-overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

body.open .navbar-overlay {
    visibility: visible;
    opacity: 1;
}

@media only screen and (min-width: 600px) {
    .navbar-overlay {
        display: none;
    }
}

.navbar-burger {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 64px;
    height: 100%;
    padding: 0;
}

@media only screen and (min-width: 600px) {
    .navbar-burger {
        display: none;
    }
}

.navbar-title {
    margin: 0;
    font-size: 16px;
}

.navbar-menu {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    translate: -100% 0;
    width: 300px;
    height: 100%;
    padding: 20px;
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    background: #000000;
    visibility: hidden;
    transition: translate 0.3s;
}

.logo-mobile {
    width: 180px;
}

.navbar-menu a {
    margin-bottom: 10px;
    font-size: 18px;
}



body.open .navbar-menu {
    translate: 0 0;
    visibility: visible;
}

@media only screen and (min-width: 600px) {
    .navbar-menu {
        position: static;
        translate: 0 0;
        width: auto;
        background: transparent;
        flex-direction: row;
        visibility: visible;
        align-items: center;
        margin-right: 20px;
    }

    .logo-mobile {
        display: none;
    }
}

.navbar-menu>button {
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    padding: 0 8px;
}

.navbar-menu>button.active {
    color: inherit;
}

.sub-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.25px;
    color: #e1e1e1;
}

.description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    text-align: center;
    color: var(--md-sys-color-on-surface);
    line-height: 1.5;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(1rem, 4vw, 2.5rem);
}



@media (min-width:880px) {
    .nav {
        justify-content: space-between;
    }
}

.logo {
    width: 180px;

}


.hero{
    margin-top: 100px;
}

.hero-texts {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
    text-align: center;
    color: #e1e1e1;
}

.hero-texts h1 {
    font-size: clamp(2rem, 5vw, 4.375rem);
    line-height: 1.2;
    max-width: 650px;
    margin: 20px 0;
    font-weight: 700;
    opacity: 0.7;
}


.hero-image-desktop {
    width: 100%;
    height: 100%;
}

@media (min-width:880px) {

    .hero{
    max-width: 1440px;
    margin:  100px auto;
    padding: clamp(1rem, 4vw, 2.5rem);
    }

    
.hero-image-desktop {
    border-radius: 12px;
}

    .hero-texts {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-text-image img {
        display: block;
    }

    .hero-texts h1 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
}




.about h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    font-weight: 600;
    padding-top: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-content-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    display: flex;
    flex-direction: column;
    gap: 40px;
    line-height: 1.5;
    text-align: center;
}

.about-cta {
    border: 1px solid var(--md-sys-color-on-primary);
    padding: 10px 30px;
    background: transparent;
    color: var(--md-sys-color-on-primary);
    cursor: pointer;
    transition: 0.3s ease;

}

.about-cta:hover {
    background-color: var(--md-sys-color-on-primary);
    color: #000;
}

.about-content-image {
    background-image: url("/src/images/empresa.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 400px;
    box-shadow: var(--shadow);
    display: block;
}

@media (min-width:880px) {
.about{
    max-width: 1440px;
    margin: 0 auto;
}

.about h2 {
  
    padding: 60px;
}
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content-text {
        text-align: left;
        margin-bottom: 20px;
        justify-content: center;
        align-items: flex-start;
    }

    .about-content-image {
        height: 600px;
    border-radius: 12px;

    }
}

.services-texts {
    padding: 60px 20px;
}

.services-texts h2 {
    max-width: 600px;
    margin: 20px auto;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

.services-texts p {
    max-width: 500px;
    margin: 0 auto;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.5;
    text-align: center;
}

.services-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width:880px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1200px) {
    .services-cards {
        grid-template-columns: repeat(3, 1fr);
    }

}

.card {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--md-elevation-shadow);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
}

.card-image {
    border: 1px solid var(--md-sys-color-outline);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}




.products-texts {
    padding: 60px 20px;
}

.products h2 {
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.products p {
    text-align: center;
}



.product-card {
    max-width: 100%;
    display: grid;
    margin-bottom: 50px;
}

.product-card-img {
    width: 100%;
    height: auto;
    order: -1;
}



@media (min-width:996px) {
    .products{
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(1rem, 4vw, 2.5rem);
}

    .product-card {
        max-width: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        place-items: center;
    }

    .product-card-img {
        width: 600px;
        height: 800px;
        order: initial;
    }
}

.product-card-descrpition {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.title {
    font-size: 24px;
    margin-bottom: 20px;
}

.description {
    max-width: 400px;
    font-size: 16px;
}



.product-cta {
    border: 1px solid var(--md-sys-color-on-primary);
    padding: 10px 30px;
    background: transparent;
    color: var(--md-sys-color-on-primary);
    cursor: pointer;
    transition: 0.3s ease;
}

.product-cta:hover {
    background-color: var(--md-sys-color-on-primary);
    color: #000;
}





.partners {
    padding: 80px 20px;
    background-color: var(--md-sys-color-surface);
    color: var(--md-sys-color-on-surface);
    text-align: center;
    position: relative;
    overflow: hidden;
    /* mantém visibilidade controlada */
}


.partners-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.partners-header .sub-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--md-sys-color-on-surface);
    margin-bottom: 16px;
}

.partners-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5;
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    overflow: visible;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.marquee img {
    width: 200px;
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}

.marquee--vertical {
    --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column;
}

.marquee--vertical .marquee__group {
    animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }

    to {
        transform: translateY(var(--scroll-end));
    }
}



 .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.flex-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-direction: column;
}


@media (min-width:1200px) {
        .flex-content{
    flex-direction:row;
}
}


.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

 .nets {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (min-width:1200px) {
    .footer-logo {
        align-items: flex-start;
    }
}

.footer-texts {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}


.footer-Information{
    display: flex;
    flex-direction: column;
    gap: 30px;
}



.information h3{
    font-weight: bold;
    margin-bottom: 8px;
}


.information p{
    font-size: 14px;
    color: #9e9e9e;
}


@media (min-width:1200px) {
    .footer-texts {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        gap: 20px;
    }

    .nets {
        display: flex;
        gap: 20px;
    }
} 

.hr{
    height: .6px;
    background-color: #9e9e9e;

}

.copy{
    font-size: 14px;
    text-align: center;
}


.btn-whatsapp{
    position: fixed;
    bottom: 30px;
    right: 30px;
}