/* assets/styles.css */

:root {
  --cor1: #276DF1;
  --dark: #1C1C1C;
  --texto-destaque: #FAFBFF;
  --texto: rgba(255, 255, 255, 0.82);
  --menu-scroll-margin: 80px; /* Ajuste este valor se o menu mudar de altura */
}

html {
    scroll-behavior: smooth;
}

body {
    background: #060606;
    margin: 0px;
    background-image: url(luz.svg);
    background-repeat: no-repeat;
    font-family: 'Outfit', sans-serif;
    color: var(--texto);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}


h1, h2, h3, h4, h5, h6 {
    color: var(--texto-destaque);
    margin: 0px;
}

h1 {
    font-size: 4em;
    margin: 12px 0px;
}

h2 {
    font-size: 2em;
    margin: 12px 0px;
}

h4 {
    font-size: 1.3em;
}

p, span, label, input {
    color: var(--texto);
    margin: 12px 0px;
}

p {
    font-size: 1.1rem;
    line-height: 1.7rem;
}

b, strong {
   color: var(--texto-destaque);
   font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--cor1);
}

#main {
    max-width: 1600px;
    padding: 0px 4%;
    display: block;
    margin: 0 auto;
    overflow-x: hidden;
}

#header {
    display: flex;
    flex-direction: column;
    padding-top: 170px;
    padding-bottom: 170px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 4%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(158, 158, 158, 0.04);
    transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
}

.sticky {
    backdrop-filter: blur(8px) brightness(0.87);
    background: rgb(35 35 35 / 11%);
    border-bottom: 1px solid rgba(158, 158, 158, 0.15);
}

#logo {
    max-width: 205px;
    height: auto;
    filter: brightness(1) grayscale(0);
    transition: filter 0.5s ease;
}

.sticky #logo {
    filter: brightness(3) grayscale(1);
}

navbar a {
    text-decoration: none;
    color: var(--texto);
    font-size: 1.15em;
    padding: 12px;
    transition: color 0.3s ease;
}

navbar a:hover {
    color: var(--texto-destaque);
}

.linha {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.coluna {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.centro {
    align-items: center;
}

.pad-r7 {
    padding-right: 7%;
}

.pad-l7 {
    padding-left: 7%;
}

.subtitulo {
    text-transform: uppercase;
    padding-bottom: 12px;
    font-size: 1em;
    font-weight: 300;
    margin: 0px;
    color: var(--texto);
}

.texto-destaque {
    padding: 12px 0px;
    font-size: 1.25em;
    color: var(--texto-destaque);
}

.texto1 {
    padding: 12px 0px;
    font-size: 1.1em;
}

.size_50 {
    width: 50%;
    box-sizing: border-box;
}

.imagem1 {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.botao1 {
    background: var(--cor1);
    border: 1px solid var(--cor1);
    padding: 18px 35px;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.botao1:hover {
    background: white;
    border: 1px solid white;
    color: #000;
}

.botao-texto {
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
}

#sessao2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sessao2 h2 {
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 40px 0px;
    width: 100%;
}

.icone {
    width: 96px;
    height: 96px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
    border: 1px solid rgba(158, 158, 158, 0.25);
    border-radius: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-20px);
    cursor: pointer;
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.67);
    box-shadow: 0px 0px 30px 0px rgba(158, 158, 158, 0.15);
}

.card h4 { margin: 0; }
.card p { text-align: center; margin: 0; }

#sessao3, #sessao4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 60px 0px;
    flex-wrap: wrap;
}

#contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0px;
    text-align: center;
    scroll-margin-top: var(--menu-scroll-margin);
}

ul {
    margin: 0;
    padding: 12px;
    list-style: none;
}

li {
    color: var(--texto);
    font-size: 1.1em;
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

li:hover {
    transform: translateY(-10px);
}

.vantagem {
    color: var(--texto-destaque);
    font-size: 1.25em;
    font-weight: 600;
}

.vantagem_icone {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.max_900 {
    max-width: 900px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.sociais {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 40px 0;
}

.icone_social {
    width: 42px;
    height: 42px;
    background: #5d5d5d;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    display: block;
    border: 1px solid #696969;
}

.icone_social:hover {
    background: transparent;
    border: 1px solid white;
    transform: scale(1.07);
}

footer {
    border-top: 1px solid rgba(158, 158, 158, 0.25);
    padding: 12px 4%;
    margin-top: 40px;
}

footer p {
    text-align: center;
    margin: 0;
    color: var(--texto);
}


/* --- Mobile Styles --- */
@media (max-width: 1024px) {
    :root {
      --menu-scroll-margin: 70px;
    }

    body {
        background-size: 200%;
        background-position-x: center;
    }

    #menu {
        padding: 10px 4%;
    }

    navbar {
        display: none;
    }

    #logo {
        max-width: 124px;
    }

    #header {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    h1 { font-size: 2em; } /* Reduzido do critical inline */
    h2 { font-size: 1.5em; text-align: center; }
    a h4 { font-size: 1em; }

    p { font-size: 0.95rem; line-height: 1.4rem;} /* Reduzido do critical inline */
    .texto-destaque { font-size: 1em; } /* Reduzido do critical inline */
    .botao1 { padding: 14px 24px; font-size: 1em; } /* Reduzido do critical inline */


    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0px;
    }

    .card {
        padding: 20px;
        gap: 8px;
    }

     .card:hover {
        transform: none;
    }

    .size_50 {
        width: 100%;
    }

    .pad-r7, .pad-l7 {
        padding-right: 0%;
        padding-left: 0%;
    }

    #sessao3, #sessao4 {
        padding: 30px 0px;
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
    }

     #contato {
        padding: 30px 0px;
    }


    #sessao3 .size_50,
    #sessao4 .size_50 {
        text-align: center;
    }


    ul {
        margin: 0;
        padding: 0px;
        width: 100%;
    }

    li {
        align-items: flex-start;
        font-size: 0.95em;
        margin-top: 30px;
        gap: 15px;
    }

     li:hover {
        transform: none;
    }

    li p {
        margin: 0px;
        text-align: left;
    }

    .icone {
        width: 80px;
        height: 80px;
    }
    .vantagem_icone {
        width: 40px;
        height: 40px;
    }

    .icone_social {
        width: 32px;
        height: 32px;
    }

    .sociais {
        padding: 25px 0;
    }

    .imagem1 {
        width: 50%;
        height: auto;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}