/* =========================================
   COMEÇO
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f8faff;
    overflow-x: hidden;
    color: #000000;
}


/* =========================================
   CABEÇALHO
========================================= */

header {
    width: 100%;
    height: 80px;
    background: #f8faff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.00);
}

.logo img {
    width: 285px;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 55px;
    list-style: none;
}

.nav-desktop ul li a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    transition: .3s;
}

.nav-desktop ul li a:hover {
    color: #1c4ed8;
}

.nav-desktop ul li a::after {
    content: "";
    width: 0;
    height: 3px;
    background: #1c4ed8;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: .3s;
}

.nav-desktop ul li a:hover::after {
    width: 100%;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: .3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 100%;
}

.nav-mobile ul li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-mobile ul li a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    transition: .3s;
}

.nav-mobile ul li a:hover {
    background: #f8faff;
    color: #1c4ed8;
}


/* =========================================
   BOTÃO ORÇAMENTO
========================================= */

.btn-orcamento {
    background: #ef2323;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.btn-orcamento:hover {
    background: #d81616;
    transform: translateY(-2px);
}


/* =========================================
   HERO
========================================= */

.hero {
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}


/* =========================================
   BANNER
========================================= */

.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(95, 95, 95, 0.48);
    z-index: 5;
    pointer-events: none;
}


/* =========================================
   CONTEÚDO HERO
========================================= */

.hero-content {
    width: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.hero-text {
    width: 59%;
    position: relative;
    z-index: 20;
}

.hero-text > span {
    color: #1c4ed8;
    font-size: 33px;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1;
    margin: 2px 0;
    font-weight: 900;
}

.hero-text > p {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-top: 15px;
    max-width: 700px;
}


/* =========================================
   BENEFÍCIOS
========================================= */

.beneficios {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-top: 45px;
}

.beneficio {
    width: 150px;
    display: flex;
    justify-content: center;
    position: relative;
}

.beneficio-conteudo {
    text-align: center;
}

.beneficio-conteudo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto 11px;
}

.beneficio h3 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
}

.beneficio p {
    font-size: 14px;
    color: #000000;
    line-height: 1.2;
}

.beneficio-centro::before {
    content: "";
    width: 2px;
    height: 52px;
    background: #1c4ed8;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.beneficio-centro::after {
    content: "";
    width: 2px;
    height: 52px;
    background: #1c4ed8;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}


/* =========================================
   PRODUTOS
========================================= */

.produtos {
    padding: 70px 40px;
    background: #f8faff;
    position: relative;
    z-index: 2;
}

.subtitulo {
    display: block;
    text-align: center;
    color: #ef2323;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 0px;
}

.produtos h2,
.cores-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

.cards {
    margin-top: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.card {
    background: #ffffff;
    border-radius: 28px;
    padding: 22px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 5px 18px rgba(0,0,0,.07);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 200px;
}

.card-text h3 {
    font-size: 20px;
    line-height: 1.05;
    font-weight: 900;
}

.card-text span {
    display: block;
    color: #ef2323;
    font-size: 20px;
    font-weight: 900;
    margin: 14px 0;
}

.card-text p {
    font-size: 15px;
    color: #333;
}


/* =========================================
   CORES
========================================= */

.cores-section{
  padding:70px 40px;
}

.cores-section p{
  text-align:center;
  margin-top:-10px;
  font-size:20px;
  color:#333;

  margin-bottom:40px;
}

/*cores paleta*/

.paleta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.cor-item {
  width: 110px;
  text-align: center;
  position: relative;
}

.cor-box {
  width: 85px;
  height: 85px;
  border-radius: 24px;
  margin: auto;
  cursor: pointer;
  position: relative;
  border: 1px solid #fff;
  box-shadow: 0 4px 17px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.cor-box:hover {
  transform: translateY(-6px);
}

.zoom-cor {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -135px;
  transform: translateX(-50%) scale(0);
  border: 1px solid #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  opacity: 0;
  transition: 0.3s;
  z-index: 20;
}

.zoom-cor::after {
  content: "";
  width: 22px;
  height: 22px;
  background: inherit;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.cor-box:hover .zoom-cor {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.cor-item span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .paleta {
    gap: 18px;
  }

  .cor-item {
    width: 92px;
  }

  .cor-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .cor-box::before {
    width: 95px;
    height: 95px;
    top: -110px;
  }

  .cor-box::after {
    width: 18px;
    height: 18px;
  }

  .cor-item span {
    font-size: 12px;
  }

  .cores-section h2 {
    font-size: 28px;
  }
}

/* =========================================
   CONTATO
========================================= */

.contato {
    background: linear-gradient(180deg,#f8f8fa,#f1f1ff);
    padding: 70px 45px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.contato-container {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    align-items: center;
}


/* =========================================
   ESQUERDA
========================================= */

.contato-left {
    position: relative;
    width: 30%;
}

.linha-vermelha {
    width: 55px;
    height: 4px;
    background: #ef2323;
    margin-bottom: 20px;
}

.contato-left h2 {
    font-size: 50px;
    line-height: .95;
    font-weight: 900;
}

.contato-left h2 span {
    color: #ef2323;
}

.contato-left p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.4;
    color: #555;
    max-width: 320px;
}


/* =========================================
   FORMULÁRIO
========================================= */

.contato-center {
    width: 28%;
    position: relative;
    z-index: 2;
}

.contato-center h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.linha-inputs {
    width: 100%;
}

.contato-center input,
.contato-center textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    font-size: 15px;
    outline: none;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.03);
}

.contato-center input:focus,
.contato-center textarea:focus {
    border-color: #ef2323;
}

.contato-center textarea {
    height: 180px;
    resize: none;
}

.contato-center button {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 18px;
    background: #ef2323;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: .3s;
}

.contato-center button:hover {
    background: #d81616;
    transform: translateY(-3px);
}


/* =========================================
   INFORMAÇÕES
========================================= */

.contato-right {
    width: 37%;
    position: relative;
    z-index: 2;
}

.infos {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.info {
    display: flex;
    gap: 12px;
    position: relative;
}

.info i {
    font-size: 30px;
    color: #ef2323;
}

.info strong {
    display: block;
    font-size: 15px;
}

.info span {
    display: block;
    color: #555;
    font-size: 13px;
    margin-top: 4px;
}


/* =========================================
   MAPA + QR
========================================= */

.mapa-qr {
    display: flex;
    gap: 18px;
}

.mapa-qr iframe {
    width: 70%;
    height: 350px;
    border: none;
    border-radius: 28px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.qr-box {
    width: 30%;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.qr-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.qr-box h4 span {
    color: #ef2323;
}

.qr-box img {
    width: 100%;
}


/* =========================================
   RODAPÉ
========================================= */

.footer-bottom {
    background: #111;
    width: calc(100% + 90px);
    margin-left: -45px;
    padding: 12px 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-bottom p {
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:1200px) {

    .contato-container {
        flex-direction: column;
    }

    .contato-left,
    .contato-center,
    .contato-right {
        width: 100%;
    }

    .mapa-qr {
        flex-direction: column;
    }

    .mapa-qr iframe,
    .qr-box {
        width: 100%;
    }
}

/* RESPONSIVO - TABLET */
@media(max-width:768px) {
    header {
        height: 70px;
        padding: 0 20px;
    }

    .logo img {
        width: 180px;
    }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-orcamento {
        padding: 12px 18px;
        font-size: 13px;
        gap: 6px;
    }

    .btn-text {
        display: inline;
    }

    .hero {
        margin-top: 70px;
        height: calc(100vh - 70px);
    }

    .hero-content {
        padding: 30px 25px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text > span {
        font-size: 24px;
    }

    .hero-text h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-text > p {
        font-size: 16px;
    }

    .beneficios {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 30px;
        justify-content: flex-start;
    }

    .beneficio {
        width: calc(50% - 10px);
        min-width: 120px;
    }

    .beneficio-centro::before,
    .beneficio-centro::after {
        display: none;
    }

    .produtos {
        padding: 50px 20px;
    }

    .produtos h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        flex-direction: column;
        text-align: center;
    }

    .card img {
        width: 150px;
    }

    .cores-section {
        padding: 50px 20px;
    }

    .cores-section h2 {
        font-size: 28px;
    }

    .paleta {
        gap: 15px;
        justify-content: center;
    }

    .cor-item {
        width: 92px;
    }

    .cor-box {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    .contato {
        padding: 50px 20px 0;
    }

    .contato-left h2 {
        font-size: 36px;
        line-height: 1.1;
    }

    .contato-center h3 {
        font-size: 18px;
    }

    .contato-center input,
    .contato-center textarea {
        padding: 14px;
        font-size: 14px;
    }

    .contato-right {
        font-size: 14px;
    }

    .info i {
        font-size: 24px;
    }

    .mapa-qr {
        flex-direction: column;
        gap: 15px;
    }

    .mapa-qr iframe {
        height: 300px;
    }

    .footer-bottom {
        width: calc(100% + 40px);
        margin-left: -20px;
        font-size: 11px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container {
        width: min(1200px, 100%);
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

/* RESPONSIVO - MOBILE */
@media(max-width:480px) {
    header {
        height: 60px;
        padding: 0 15px;
    }

    .logo img {
        width: 140px;
    }

    .btn-orcamento {
        padding: 10px 15px;
        font-size: 12px;
    }

    .btn-orcamento i {
        font-size: 14px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        margin-top: 60px;
    }

    .banner {
        height: 100%;
    }

    .hero-content {
        padding: 50px 15px;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }

    .hero-text > span {
        font-size: 18px;
    }

    .hero-text h1 {
        font-size: 28px;
        margin: 8px 0;
    }

    .hero-text > p {
        font-size: 14px;
        line-height: 1.5;
    }

    .beneficios {
        gap: 15px;
        margin-top: 25px;
    }

    .beneficio {
        width: calc(50% - 7.5px);
        min-width: 100px;
    }

    .beneficio-conteudo img {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .beneficio h3 {
        font-size: 14px;
    }

    .beneficio p {
        font-size: 12px;
    }

    .produtos {
        padding: 40px 15px;
    }

    .produtos h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .card img {
        width: 120px;
    }

    .card-text h3 {
        font-size: 16px;
    }

    .card-text span {
        font-size: 16px;
        margin: 10px 0;
    }

    .card-text p {
        font-size: 13px;
    }

    .cores-section {
        padding: 40px 15px;
    }

    .cores-section h2 {
        font-size: 24px;
    }

    .cores-section p {
        font-size: 16px;
    }

    .paleta {
        gap: 12px;
    }

    .cor-item {
        width: 75px;
    }

    .cor-box {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .cor-item span {
        font-size: 11px;
    }

    .contato {
        padding: 40px 15px 0;
    }

    .contato-container {
        gap: 20px;
    }

    .contato-left {
        width: 100%;
    }

    .contato-left h2 {
        font-size: 28px;
    }

    .contato-left p {
        font-size: 14px;
        max-width: 100%;
    }

    .contato-center {
        width: 100%;
    }

    .contato-center h3 {
        font-size: 16px;
    }

    .contato-center input,
    .contato-center textarea {
        padding: 12px;
        font-size: 13px;
        margin-bottom: 15px;
    }

    .contato-center textarea {
        height: 150px;
    }

    .contato-center button {
        height: 50px;
        font-size: 14px;
    }

    .contato-right {
        width: 100%;
    }

    .infos {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .info i {
        font-size: 20px;
    }

    .info strong {
        font-size: 13px;
    }

    .info span {
        font-size: 12px;
    }

    .mapa-qr {
        flex-direction: column;
    }

    .mapa-qr iframe {
        height: 250px;
        border-radius: 16px;
    }

    .qr-box {
        padding: 15px;
        border-radius: 16px;
    }

    .qr-box h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        width: calc(100% + 30px);
        margin-left: -15px;
        font-size: 10px;
        padding: 15px 10px;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }
}

/* RESPONSIVO - Extra Small */
@media(max-width:360px) {
    header {
        height: 55px;
        padding: 0 10px;
    }

    .logo img {
        width: 120px;
    }

    .btn-orcamento {
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero-text > span {
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 22px;
        margin: 5px 0;
    }

    .hero-text > p {
        font-size: 13px;
    }

    .beneficio {
        width: calc(50% - 5px);
    }

    .beneficio-conteudo img {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
    }

    .beneficio h3 {
        font-size: 12px;
    }

    .beneficio p {
        font-size: 11px;
    }

    .produtos {
        padding: 30px 10px;
    }

    .produtos h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .card img {
        width: 100px;
    }

    .card-text h3 {
        font-size: 14px;
    }

    .card-text span {
        font-size: 14px;
    }

    .card-text p {
        font-size: 12px;
    }

    .cores-section {
        padding: 30px 10px;
    }

    .cores-section h2 {
        font-size: 20px;
    }

    .cores-section p {
        font-size: 14px;
    }

   /*=========== PALETA DE CORES ===========*/
    
   
   .paleta {
        gap: 10px;
    }

    .cor-item {
        width: 65px;
    }

    .cor-box {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .cor-item span {
        font-size: 10px;
    }

    .contato {
        padding: 30px 10px 0;
    }

    .contato-left h2 {
        font-size: 24px;
    }

    .contato-left p {
        font-size: 13px;
    }

    .contato-center h3 {
        font-size: 14px;
    }

    .contato-center input,
    .contato-center textarea {
        padding: 10px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .contato-center textarea {
        height: 120px;
    }

    .contato-center button {
        height: 45px;
        font-size: 12px;
    }

    .mapa-qr iframe {
        height: 200px;
    }

    .qr-box h4 {
        font-size: 14px;
    }

    .footer-bottom {
        width: calc(100% + 20px);
        margin-left: -10px;
        font-size: 9px;
        padding: 12px 5px;
    }
}