@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Alexandria', sans-serif;
    box-sizing: border-box;
}

html {
    background-color: #F1F1F1;
    scroll-behavior: smooth;
}

/* ================= NAVBAR ================= */
.nav {
    position: fixed;
    width: 100%;
    display: flex;
    background-color: #0C0C0C;
    flex-direction: row;
    justify-content: space-between;
    height: 70px;
    padding: 5px 10%;
    align-items: center;
    top: 0;
    z-index: 100;
}

/* LINKS NORMAIS */
.nav .links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav .links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    padding-right: 20px;
    border-right: #444444 solid 1px;
}

a {
    text-decoration: none;
}

.nav a {
    color: #AFAFAF;
    font-weight: 300;
    transition: all 0.3s ease;
}

/* ATIVO */
.nav a.active {
    color: #fff;
}

.nav a.active .down {
    margin-top: 2px;
    width: 100%;
    height: 2px;
    background-color: #22C53F;
}

/* Linha verde animada */
.nav .down {
    margin-top: 2px;
    width: 0;
    height: 2px;
    background-color: #22C53F;
    transition: all 0.3s ease;
}

.nav a:hover .down {
    width: 100%;
}

.nav a:hover {
    color: #fff;
}

/* BOTÃO CTA */
.cta-nav {
    background-color: #22C53F;
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 20px;
}

.cta-nav:hover {
    box-shadow: 0 0 75px #75d47a;
    font-weight: 400;
}

/* ================= BURGER MENU ================= */

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* ANIMAÇÃO DO "X" */
.burger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MENU MOBILE */
.mobile-menu {
    display: none;
}


/* CONTATO */

.erro-msg {
  margin-top: 3px;
  display: block;
  color: #d40000;
  font-weight: 500;
}


.contato {
  position: relative;
  background-color: #F1F1F1;
  height: auto;
  margin-top: -30px;
  z-index: 1;
  box-sizing: border-box;
}

.contato_titulo {
  text-align: center;
  margin: 100px auto;
}

.contato_general {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.contato_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contato_left h3 {
  margin-bottom: 10px;
}

.contato_left h4 {
  margin: 30px auto;
}

.contato-infos {
  font-weight: 500;
  color: #747474;
  display: flex;
  flex-direction: column;
  gap: 35px;
  font-size: 1.2rem;
}

.contato-infos h2 {
  color: #111;
}

.contato-infos img {
  width: 20px;
  margin-right: 10px;
}

.contato-tel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contato-socials {
  display: flex;
  gap: 20px;
}

.contato-socials a {
  width: 31px;
  height: 31px;
  font-size: 1.6rem;
  color: #797979;
  transition: all 0.3s ease;
}

.contato-socials a:hover {
  transform: scale(1.2);
  color: #1AA632;
}

.background-contato {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 850px;
  z-index: -1;
}

/* Formulário */
.form-contato {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

.contato-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.366);
  padding: 30px;
  max-width: 600px;
  width: 100%;
}

.contato-card h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: #111;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.form-group label span {
  color: red;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
  background-color: #F4F4F4;
}

input:focus, textarea:focus {
  border-color: #22C53F;
  box-shadow: 0 0 8px rgba(68, 221, 96, 0.5);
  transform: scale(1.02);
}

textarea {
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #444;
}

.form-check input {
  margin-top: 4px;
}

.form-check a {
  color: #22C53F;
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  background: #22C53F;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #1AA632;
}

.footer {
  border-top: #D3D3D3 solid 1px;
  background-color: #fefefe;
  color: #2D2D2D;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer a {
  color: #2D2D2D;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #22C53F;
}

.footer .footer-logo {
  text-align: center;
  width: 100%;
}

.footer .footer-logo img {
    height: 30px;
    width: auto;
    margin-bottom: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 40px;
  align-items: initial;
}

.footer-col-nav, 
.footer-col-center,
.footer-col-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-center {
  text-align: center;
}

.footer-col-center p {
  font-weight: 350;
  color: #747474;
  font-size: 0.95em;
}

.footer-col-contact {
  text-align: right;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  font-size: 0.8rem;
  color: #747474;
  border-top: #D3D3D3 solid 1px;
  background-color: #fefefe;
}

.footer-bottom .developed {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  gap: 10px;
  color: #797979;
}

.iso {
    width: 60%;
    height: auto;
    justify-content: center;
    align-items: center;
    align-self: center;
}


/* ================= RESPONSIVO ================= */
@media (max-width: 850px) {

    /* Esconde só os itens, não a logo */
    .nav-item {
        display: none;
    }

    .burger {
        display: flex;
    }

    .iso {
    width: 30%;
    height: auto;
    justify-content: center;
    align-items: center;
    align-self: center;
}

    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: #0C0C0C;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        transition: height 0.4s ease;
        padding-top: 0;
        z-index: 100;
    }

    .mobile-menu.open {
        height: 260px;
        padding-top: 20px;
    }

    .mobile-menu a {
        color: #fff;
        font-size: 20px;
    }

    .cta-nav {
        display: none;
    }
}



.corpo {
    color: #0C0C0C;
}

.hero {
    color: #F1F1F1 !important;
    margin-top: 70px;
    padding: 20px 15%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: center;
    align-items: center;
}

.hero .texto {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-shadow: 0 0 20px #0c0c0c80;
    text-align: initial !important;
}   

.hero .texto div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-hero {
    text-shadow: none;
    background-color: #22C53F;
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 50px;
    max-width: max-content;
    transition: all 0.3s ease;
}

.cta-hero:hover{
    background-color: #22C53F;
    box-shadow: 0 0 75px#75d47a;
    font-weight: 400;
}


.hero .legenda {
    font-weight: 300;
    color: #F1F1F1 !important;
}

.hero img {
    width: 120%;
}

.images {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.images .fundo {
    width: 100%;
    height: 500px;
    position: relative;
    top: 30px;
    object-fit: cover;
}

.images .rectangle {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 200px;
  z-index: 2;
}


.corpo {
    padding: 20px 15% 20px 15%;
}

.about {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #0C0C0C;
    margin-bottom: 50px;
}

.legenda {
    color: #747474;
    font-weight: 300;
}

.valores {
    background: url("../images/background_sobre.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.valores .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 20px;
}

.valores .card {
    background-color: #0c0c0c85;
    backdrop-filter: blur(10px);
    border: #2c2c2c solid 1px;
    border-radius: 10px;
    padding: 20px;
    color: #F1F1F1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.card hr {
    height: 2px; 
    border: none;
    background-color: #2c2c2c;
}

.card:hover hr {
    height: 2px; 
    border: none;
    background-image: linear-gradient(to right, #0d531a, #22C53F, #0d531a);
}

.valores .card .descricao {
    font-weight: 200;
    font-size: 1rem;
}

.card:hover {
    border-color: #22C53F;
    box-shadow: 0 0 120px#22c54079;
    transform:scale(1.1);
    filter: brightness(1.4);
    cursor: default;
    z-index: 2;
}


.vantagens {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    text-align: center;
    gap: 25px;
}

.grid-vantagens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 30px 15%;
}

.grid-vantagens .item {
    display: flex;
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: center;
    transition: 0.5s ease-in-out;
    padding: 10px 20px;
    border-radius: 10px;
}

.grid-vantagens img {
    width: 70px;
    height: auto;
}

.grid-vantagens .item:hover {
    transform: rotate(35deg);
    transform: scale(1.2);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: 0.5s ease-in-out;
}

.grid-vantagens .item-bottom {
     grid-column: span 2;
     display: flex;
     flex-direction: column;
     gap: 20px;
     align-items: center;
}

.head-card {
    padding: 5%;
    background-color: #ffff;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    text-align: center;
}

.portfolio .head-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    text-align: center;
}

.imgpad {
  padding: 10px;
}

.head-card .title {
    display: grid;
    grid-template-columns: auto 1fr;
    text-align: left;
    gap: 20px;
}

.head-card .title img {
    width: 60px;
    height: auto;
}

.head-card .textos {
  display: flex;
  flex-direction: column;
}

.head-card .textos .titulo {
    font-size: 1.4rem;
    font-weight: 500;
    color: #0C0C0C;
    min-height: 60px;
    justify-content: center;
    align-content: center;
}

.head-card .textos .subtexts {
    list-style-type: none;
    color: #747474;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.head-card .textos .subtexts li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.head-card .textos .subtexts img {
    width: 20px;
    height: auto;
}

.content-title {
    padding: 10px 20px;
    border-left: #22C53F solid 5px;
    color: #22C53F;
    text-transform: uppercase;
    font-weight: 500;
}

.catalogo {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.item-catalogo {
    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 100%;
    padding: 10px;
    border-radius: 10px;

    background: #fff;
    transition: all 0.3s ease-in-out;

    overflow-wrap: break-word;
    word-break: break-word;
}


.item-catalogo:hover {
    transform: scale(1.1);
    background-color: #ffff;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.item-catalogo img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
}

.item-catalogo .imagem {
  position: relative;
}

.item-catalogo .imagem .tag {
  background-color: #FFCC00;
  color: #0c0c0c;
  padding: 5px 10px;
  position: absolute; 
  top: 0;
  left: 0; 
  z-index: 10;
  border-radius: 5px 0px 10px 0px;
}

.item-catalogo .desc {
    display: flex;
    flex-direction: column;
    gap: 5px;
    
}

.btw {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.item-catalogo .condicoes {
    background-color: #22C53F;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: 300;
}

.voltar-ao-topo {
    position: fixed;
    right: 55px;
    bottom: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #202020a8;
    backdrop-filter: blur(10px);
    height: 30px;
    width: 30px;
    aspect-ratio: 1 / 1;
    padding: 5px;
    color: #fff;
    border-radius: 50%;
    border: #222222 solid 1px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    z-index: 10;
}

.whatsapp-btn-fixed {
    transition: all 0.3s ease;
    z-index: 10;
    position: fixed;
    right: 45px;
    bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #22C53F;
    height: 50px;
    width: 50px;
    font-size: 1.6rem;
    aspect-ratio: 1 / 1;
    padding: 5px;
    color: #fff;
    border-radius: 50%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.whatsapp-btn-fixed:hover {
    transform: scale(1.2);
}


@media (min-width: 320px) and (max-width: 768px) {

    .head-card .items ul{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .catalogo {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .item-catalogo .condicoes {
        background-color: #22C53F;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        margin-top: 10px;
        width: 100%;
        gap: 10px;
        text-align: center;
        display: grid;
        grid-template-columns: 1fr;
    }

    .condicoes .preco-un {
        display: none;
        overflow: hidden;
    }

    .grid-vantagens {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 10px 5%;
    }

    .grid-vantagens .item-bottom {
     grid-column: span 1;
}

    .hero {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
        padding: 20px 5%;
    }

    .hero .legenda {
        color: #747474 !important;
    }

    .corpo {
        padding: 20px 5% 20px 5%;
    }

    .images {
        height: 350px;
    }

    .hero .texto {
        display: flex;
        flex-wrap: wrap;
        color: #0C0C0C;
        text-shadow: none;
        text-align: center !important;
        padding-bottom: 50px;
    }

    .hero img {
        width: 100%;
    }

    .cta-hero {
        align-self: center;
    }

    .valores .cards {
        display: flex;
        flex-direction: column;
    }

    .contato_general{
    flex-direction: column;
  }

  .contato_left {
    text-align: center;
  }
  
.contato-infos {
  margin-top: -120px;
}

.contato-soc{
  margin-top: 30px;
}

.contato-socials {
  margin-bottom: 70px;
}

.form-check {
  display: flex !important;
}

  .contato-socials{
    justify-content: center;
  }

  .contato_left h2, .background-contato {
    visibility: hidden;
  }

  .contato-card{
    box-shadow: none;
    position: static;
  }

  .footer {
    display: flex;
    flex-direction: column;
  }

  .footer .footer-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .footer .footer-col-contact {
    text-align: left;
  }
  
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .head-card .textos .subtexts {
    grid-template-columns: 1fr;
  }

  .head-card .textos {
    gap: 10px;
  }
}

@media (min-width: 720px) and (max-width: 1200px) {
    .hero {
        padding: 20px 10%;
        gap: 0;
    }

    .corpo {
        padding: 20px 10% 20px 10%;
    }

     .head-card .items ul{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .catalogo {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }


    .item-catalogo .condicoes {
        background-color: #22C53F;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        margin-top: 10px;
        width: 100%;
        gap: 10px;
        text-align: center;
    }

      .grid-vantagens {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px 5%;
    }

    .grid-vantagens .item-bottom {
     grid-column: span 1;
}

}

@media (min-width: 1440px) and (max-width: 2560px) {
    .hero {
        padding: 20px 25%;
    }

    .grid-vantagens {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 10px 5%;
    }

    .grid-vantagens .item-bottom {
     grid-column: span 4;
}

    .images {
        height: 550px;
    }
}


[data-animate] {
  opacity: 0;
  transform: translateY(40px) scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}


[data-animate].show {
  opacity: 1;
  transform: none; 
}

/* aparecer */
[data-animate="fade"] {
  transform: none;
}

/* subir */
[data-animate="up"] {
  transform: translateY(40px);
}

/* descer */
[data-animate="down"] {
  transform: translateY(-40px);
}

/* vir da direita */
[data-animate="right"] {
  transform: translateX(40px);
}

/* vir da esquerda */
[data-animate="left"] {
  transform: translateX(-40px);
}

/* zoom suave */
[data-animate="zoom"] {
  transform: scale(0.95);
}

/* Acessibilidade: respeitar prefere-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
