/* =========================
   IMPORTS (mantidos do header/footer)
========================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');


/* =========================
   VARIÁVEIS DO TEMA (header/footer)
========================= */
:root{
  --main-color:#d3ad7f;
  --black:#13131a;
  --bg:#7a6d6d;
  --border:.1rem solid rgba(255,255,255,.3);

  --cor-azul1:rgb(28, 54, 97);
  --cor-azul2:rgb(70, 140, 188);
  --cor-azul3:rgb(130, 206, 234);
  --cor-azul4:rgb(13, 45, 67);
  --cor-branco:rgb(255, 255, 255);
  --cor-preto:rgb(0, 0, 0);
  --cor-dourado:rgb(204, 204, 204);

    /* espaçamento */
  --section-padding: 60px;

  /* transições usadas */
  --transition-2: 0.5s ease;
}

/* =========================
   RESET / BASE (header/footer)
========================= */
*{
  font-family: 'Play','Roboto', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
  transition: .2s linear;
}

html::-webkit-scrollbar { width: .8rem; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 5rem;
}

body{
  background: var(--cor-branco);
}


/* =========================
   OFFSET DO HEADER FIXO (NOVO)
========================= */
.page-content {
  padding-top: 8rem;
}
.section:first-of-type { padding-top: 8rem; }
@media (max-width: 600px) {
  .page-content { padding-top: 7.2rem; }
  .section:first-of-type { padding-top: 7.2rem; }
}






/* =========================
   HEADER COMPLETO E RESPONSIVO
========================= */
.header {
    background-color: var(--cor-branco);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 5%;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    min-height: 7rem;
}

.header .logo img {
    height: 5.3rem;
    width: auto;
    flex-shrink: 0;
}

.header .navbar {
    transition: right 0.3s ease;
}

.header .navbar.active {
    right: 0;
}

.header .navbar ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.header .navbar ul li a {
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--cor-azul1);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.header .navbar ul li a:hover {
    color: var(--cor-azul2);
    border-bottom: .1rem solid var(--cor-azul2);
    padding-bottom: .3rem;
}

.header .icons button {
    background: none;
    border: none;
    font-size: 1.9rem;
    color: var(--cor-azul1);
    cursor: pointer;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.header .icons button:hover {
    color: var(--cor-azul2);
}

#menu-btn {
    display: none;
}


/* ===== Responsividade ===== */
@media (max-width: 1670px) {
    .header .logo img {
        height: 5.2rem; /* menor que o desktop para caber melhor */
        width: auto;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        background: #fff;
        width: 30rem;
        /* acompanha a altura do header */
        height: calc(100vh - 7rem);
        overflow: auto; /* garante scroll se necessário */
    }

    .header .navbar.active {
        display: block;
    }

    .header .navbar ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    #menu-btn {
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .header .logo img {
        height: 2.5rem; /* ligeiramente maior que 3rem, ajuste conforme necessidade */
        width: auto;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        background: #fff;
        width: 15rem;
        height: calc(100vh - 6rem); /* compatível com a altura do header em mobile */
        overflow: auto;
    }

    .header .navbar.active {
        display: block;
    }

    .header .icons button {
        font-size: 1.5rem;
    }
}

/* -- Final Header Section  -- */




/* =========================
   HEADING COMPLETO E RESPONSIVO
========================= */
.heading-section {
  padding-top: 125px;
  color: var(--cor-azul1);
  text-transform: uppercase;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.heading {
    color:var(--cor-azul1);
    font-size: 3rem;
}

.heading span {
  color:var(--cor-azul2);
}
/* -- Final Heading Section  -- */



/*-----------------------------------*\
 * #REUSED STYLE RELEVANTE
\*-----------------------------------*/

/* .product .heading{
    text-align: center;
    color:var(--cor-azul1);
    text-transform: uppercase;
    font-size: 3rem;
}

.product .heading span{
    color:var(--cor-azul2);
    text-transform: uppercase;
}  */

li { list-style: none; }
.container { padding-inline: 15px; }
.section { padding-block: var(--section-padding); }

/* Card base usado no produto */
.card-banner {
  background: var(--white);
  position: relative;
  height: 350px;
  overflow: hidden;
}

.image-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: var(--transition-2);
}

.product-card:is(:hover, :focus) .image-contain { transform: scale(1.1); }

.card-content {
  padding: 24px 15px 0;
  text-align: center;
}

.card-cat {
  font-family: var(--ff-roboto);
  color: var(--onyx);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card-cat-link {
  display: inline-block;
  color: inherit;
  transition: 0.25s ease;
}

.card-cat-link:is(:hover, :focus) { color: var(--bittersweet); }

.product-card .card-title { margin-bottom: 12px; }

.product-card .card-title > a {
  color: inherit;
  transition: 0.25s ease;
}

.product-card .card-title > a:is(:hover, :focus) { color: var(--bittersweet); }

/*-----------------------------------*\
 * #PRODUCTS (lista e título da seção)
\*-----------------------------------*/
.product .section-title {
  text-align: center;
  margin-bottom: 25px;
}

.product-list {
  display: grid;
  gap: 50px 25px;
}


.btn-whats {
    display: inline-block;
    background: var(--cor-azul1);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
    transition: background 0.25s ease;
    text-align: center;
}
.btn-whats:hover {
    background: var(--cor-azul2);
}


/* Responsividade */

/* >= 575px */
@media (min-width: 575px) {

  .product .heading{
      font-size: 2.3rem;
  }

  .container {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .product-list { 
    grid-template-columns: 1fr 1fr; 
  }

}


/* >= 768px */
@media (min-width: 768px) {
  :root {
    --fs-2: 3rem; /* h2 maior em telas médias */
  }

  .container { max-width: 720px; }
}

/* >= 992px */
@media (min-width: 992px) {

  .container { max-width: 970px; }

  .product-list { grid-template-columns: repeat(3, 1fr); }
}

/* >= 1200px */
@media (min-width: 1200px) {

    .product .heading{
      font-size: 2.3rem;
  }
  :root {
    --fs-2: 3.6rem; /* h2 ainda maior em desktop grande */
  }

  .container { max-width: 1280px; }

  .product-list { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {

    .product .heading{
        font-size: 1.9rem;
    }

}






/* =========================
   FOOTER SECTION COMPLETO E RESPONSIVO
========================= */


.footer {
  padding: 5rem 7%;
  background-color: #f7f7f9;

}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-box {
    flex: 1;
    min-width: 200px;
}

.footer-box h3 {
    color: var(--cor-azul1);
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-box a {
    color: var(--cor-azul1);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
}

.footer-box a:hover {
    color: var(--cor-azul3);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-box p {
    color: var(--cor-azul1);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
}

.footer-box p:hover {
    color: var(--cor-azul2);
}


.credit {
    text-align: center;
    margin-top: 30px;
    color: var(--cor-azul1);
    font-size: 1.5rem;
}

.credit span {
    color: var(--cor-azul2);
}


/* LINKS DE MAPA */
.map-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
}

.map-link img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

.map-link:hover {
    color: #0af;
    transform: translateX(3px);
}

/* REDES SOCIAIS */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-link img {
    width: 21px;
    height: 21px;
    object-fit: contain;
}

.social-link:hover {
    color: #0af;
    transform: translateX(3px);
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-item img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Responsividade */

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* -- Final Footer Section  -- */



/* =========================
   BOTÃO FLUANTE DO WHATSAPP SECTION COMPLETO E RESPONSIVO
========================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    border: 3px solid #fff;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float i {
    margin-top: 12px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* -- Final Botão Flutuante do WhatsApp Section Section  -- */




/* =========================
   MODAL AVISO SOFTWARE BITZER
========================= */

.modal{
  display:none;
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  z-index:1000
}
  .modal-conteudo{
    background:#fff;
    width:90%;
    max-width:500px;
    margin:8% auto;
    padding:25px;
    border-radius:12px;
    text-align:center;
    animation:fadeIn .35s
  }
  @keyframes fadeIn{from{
    opacity:0;
    transform:scale(.9)}to{
      opacity:1;
      transform:scale(1)}
    }
  .btn-modal{
    display:block;
    background:#0c7a3d;
    color:#fff;
    padding:12px;
    border-radius:8px;
    margin:10px 0;
    font-size:17px;
    text-decoration:none
  }
  .btn-modal:hover{
    background:#0a6131
  }
  .btn-fechar{
    background:#b30000;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    border:none;
    margin-top:15px;
    cursor:pointer;
    font-size:16px
  }
  .btn-fechar:hover{
    background:#900
  }

/* -- Final Modal Aviso Software Bitzer Section  -- */




