:root {
  --azul-primario: #004579;
  --azul-secundario: #116CC5;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
button{
  text-transform: uppercase;
  display: block;
  margin: auto;
  background-color: var(--azul-secundario);
  color: white;
  padding: 15px 35px;
  border: none;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
button:hover img{
  transform: translateX(6px);
}
button img{
  width: 25px;
  transition: transform 0.3s ease
}

/* HAMBURGUER */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px;
  background-color: #ffffff;
  color: white;
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 30px;
  height: 4px;
  background: var(--azul-primario);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav */
.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav ul li a {
  color: var(--azul-primario);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-family: "Montserrat";
  font-weight: 600;
  border-bottom: 2px solid white;
}


#form-contato{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:.5rem;
}
#form-contato button{
  width: 600px ;
}
input{
    padding: 15px 10px;
    border-radius: 0;
    font-size: 16px;
    width: 600px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    font-family: "Montserrat";
    border: 2px solid var(--azul-secundario);
}
#contato button{
    font-weight: 500;
}
input:focus {
    outline: none;
    border: 2px solid var(--azul-secundario); /* ou outra cor do seu tema */
  }

#contato{
    padding-bottom: 60px !important;
}

.subtitle{
  font-family: "Montserrat";
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  color: var(--azul-primario)
}





































@media (min-width: 769px) {

  /* Layout geral */
  .padding {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
  }

  /* HEADER - logo à esquerda, nav à direita (botões) */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: transparent;
  }

  /* Esconder hamburger no desktop */
  .hamburger {
    display: none !important;
  }

  /* Logo maior */
  .logo {
    width: 60px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  /* Navegação horizontal */
  .nav {
    position: static;
    top: auto;
    left: auto;
    height: auto;
    width: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border-radius: 0;
    overflow: visible;
  }

  /* esconder botão fechar no desktop */
  .close-btn {
    display: none;
  }

  .nav ul {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* transformar links em botões à direita */
  .nav ul li a {
    display: inline-block;
    padding: 10px 18px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--azul-primario);
    transition: transform .15s ease, opacity .15s ease;
  }

  .nav ul li a:hover {
    transform: translateY(-2px);
    opacity: 0.95;
  }


  /* HOME - centralizar e aumentar tipografia */
  .home {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 50%;
    position: relative;
  }

  .home h1 {
    color: var(--azul-primario, #0b63a6);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.05;
    margin: 0 0 18px 0;
  }

  .destaque-h1{
    color: var(--azul-secundario, #1e90ff);
  }

  .home h2 {
    font-family: "Lora", serif;
    font-weight: 400;
    font-size: 20px;
    max-width: 900px;
    padding: 0 100px;
    margin: 20px 0 30px 0;
    color: black;
  }

  .home button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 52px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, var(--azul-primario) 0%, var(--azul-secundario) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(5,117,230,0.2);
  }

  .home button img {
    width: 18px;
    height: auto;
  }

  /* Vantagens: organizar em linha (3 colunas) */
  .vantagens {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .subtitulo {
    font-size: 25px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    font-family: "Montserrat";
    padding: 20px 300px 0 300px;
  }

  .container-vantagens {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 12px;
    width: 32%;
    text-align: center;
    box-sizing: border-box;
    border-bottom: none;
    background: transparent;
  }

  /* container pai que agrupa as 3 vantagens */
  .vantagens > .container-wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
  }


  .container-vantagens img {
    width: 80px;
    margin: 6px 0 10px 0;
  }

  .container-vantagens h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    font-family: "Montserrat";
  }

  .container-vantagens p {
    font-size: 16px;
    max-width: 320px;
    margin: 0;
    font-family: "Lora", serif;
    color: #444;
  }

  /* Cards e grid */
  .todos-os-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
  }

  .card {
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 18px;
    background-color: rgba(237,237,237,0.3);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  }

  .card-title {
    font-size: 20px;
    max-width: 100%;
  }

  .card-list li {
    font-size: 15px;
  }

  /* CTA centralizado */
  .cta {
    margin: 50px auto;
    text-align: center;
  }

  .cta h2 {
    font-size: 28px;
    max-width: 900px;
    margin: 0 auto 18px auto;
  }

  /* Sobre-nos */
  .sobre-nos {
    padding: 40px 80px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    text-align: center;
  }

  .sobre-nos h1 {
    font-size: 36px;
  }

  .sobre-nos p {
    font-size: 18px;
    line-height: 1.6;
  }

  /* Cartoes (componentes secundários) */
  .cartoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin: 40px auto;
    max-width: 1200px;
  }

  .cartao {
    width: 100%;
    padding: 26px;
    border-radius: 12px;
    background: #fafafa;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
  }

  .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }

  .icon-circle img {
    width: 44px;
  }

  /* Lists with blue bullet already defined - adjust spacing */
  .card ul li, .cartoes li {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Responsividade entre breakpoints (largura média) */
  @media (min-width: 1024px) {
    .home h1 { font-size: 56px; }
    .home h2 { font-size: 22px; }
    .subtitulo { font-size: 34px; }
    .container-vantagens img { width: 76px; }
  }

  .container-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .fantasma{
    display: block;
    position: absolute;
    top: 140px;
    right: -300px;
    width: 370px;
    z-index: -1;
    transform: rotate(8deg);
    opacity: .9;
  }
  .fantasma2{
      display: block;
    position: absolute;
    top: 140px;
    left: -300px;
    width: 370px;
    z-index: -1;
    transform: rotate(-8deg);
    opacity: .9;
    }

    .ajuste-chato{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      text-decoration: none;
    }
    .ajuste-chato p{
      font-family: "Montserrat";
      color: var(--azul-primario);
      font-size: 20px;
      font-weight: 700;
      text-decoration: none;
    }































    :root{
    --azul-primario: #004579;
    --azul-secundario: #5DA2F9;
}

body{
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #004579;
    color: white;
}

.logo{
    width: 60px;
}

.header a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 10px;
}

.nav{
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav ul{
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}



.hamburger{
    display: none;
}

.header-produtos h1{
    color: var(--azul-primario);
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.header-produtos .destaque-h1{
    color: var(--azul-secundario);
}

.header-produtos p{
    font-family: "Lora";
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 50px;
}

.todos-os-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.card{
    position: relative;
    width: 500px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, height 0.3s ease;
    cursor: pointer;
    background-color: rgba(237, 237, 237, 0.51);
}

.card-front{
    padding: 20px;
}

.card-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.card-title{
    color: black;
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    max-width: 250px;
}

.text{
    font-family: "Lora";
    font-weight: 400;
    font-size: 16px;
    margin-top: 10px;
}

.container-icon{
    background-color: #D2E3FD;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
}

.card .icon-card{
    width: 40px;
}

.card .icon-arrow{
    color: black;
    width: 40px;
}

.card-hover{
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    padding: 15px 20px 0 20px;
}

.card-list{
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-list li{
    margin-bottom: 10px;
    font-family: "Lora";
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.card-list li::before{
    content: "";
    width: 8px;
    height: 8px;
    background: var(--azul-secundario);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.card-button{
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.card:hover{
    transform: scale(1.05);
}

.card:hover .card-hover{
    opacity: 1;
    max-height: 1000px;
}

.cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
}

.cta h2{
    text-align: center;
    font-family: "Montserrat";
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    width: 70%;
}

.cta button{
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.sobre-nos{
    padding: 0 60px 50px 60px;
    font-family: "Lora";
    text-align: center;
}

.sobre-nos h1{
    color: var(--azul-primario);
    font-family: "Montserrat";
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.cartoes{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 50px;
}

.cartao{
    width: 350px;
    padding: 25px;
    border-radius: 12px;
    background: #f4f4f4;
}

.icon-circle{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #D2E3FD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle img{
    width: 50px;
}

.cartao h3{
    margin: 0 0 12px 0;
    font-family: "Montserrat";
    font-size: 22px;
}

.cartao p{
    margin: 0 0 12px 0;
    font-family: "Lora";
    font-size: 16px;
}

.cartao ul{
    margin-left: 0px;
    font-family: "Lora";
    list-style: none;
}

.cartao li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.cartao li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--azul-secundario);
}
}