@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');

: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);
}

*{
    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);
}


/* =========================
   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  -- */




/* =========================
   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  -- */






