
    :root {
      --azul: #003c8f;
      --verde: #00a676;
      --cinza-claro: #f5f7fa;
      --texto: #222;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--texto);
      line-height: 1.5;
      background: #ffffff;
    }


    @font-face {
  font-family: "MontserratLocal";
  src: url("screen/Montserrat-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("screen/Montserrat-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "MontserratLocal", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}


    a { text-decoration: none; color: inherit; }

    /* NAVBAR */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      border-bottom: 1px solid #e0e4ea;
    }

.alert-sucesso,
.alert-erro {
  max-width: 1100px;
  margin: 1rem auto 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Sucesso */
.alert-sucesso {
  background: #e6fff2;      /* verde bem claro */
  color: #00663a;           /* verde escuro */
  border: 1px solid #00a676;
}

/* Erro */
.alert-erro {
  background: #ffecec;      /* vermelho claro */
  color: #a80000;           /* vermelho escuro */
  border: 1px solid #ff4d4d;
}

    
    .nav-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.6rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo-text {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--azul);
      letter-spacing: 0.08em;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 1.2rem;
      font-size: 1rem;
    }

    nav a {
      position: relative;
      padding-bottom: 0.1rem;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--verde);
      transition: width 0.2s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    /* SEÇÕES */
    main {
      margin-top: 60px; /* espaço para o header fixo */
    }

    section {
      padding: 3.5rem 1rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--azul);
      text-align: center;
    }

    .section-subtitle {
      max-width: 640px;
      margin: 0 auto 1rem;
      text-align: center;
      color: #555;
      font-size: 1rem;
    }

    /* HERO */
    #hero {
      background: linear-gradient(135deg, #e2f5ef 0%, #f5f9ff 50%, #ffffff 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .hero-title {
      font-size: clamp(1.9rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--azul);
      margin-bottom: 1rem;
    }

    .hero-text {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      color: #444;
    }

    .hero-highlight {
      color: var(--verde);
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }

    .btn-primary {
      background: #661B20;
      color: #fff;
      padding: 0.8rem 1.4rem;
      border-radius: 999px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.1s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-primary:hover {
      background: #002b63;
      transform: translateY(-1px);
    }

    .hero-note {
      font-size: 0.8rem;
      color: #666;
    }

    .hero-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      padding: 1.5rem;
      border-top: 4px solid var(--verde);
    }

    .hero-card h2 {
      font-size: 1rem;
      margin-bottom: 0.6rem;
      color: var(--azul);
    }

    .hero-list {
      list-style: none;
      font-size: 1rem;
      color: #444;
    }

    .hero-list li + li {
      margin-top: 0.4rem;
    }

    .hero-list li::before {
      content: "✓";
      color: var(--verde);
      margin-right: 0.4rem;
    }

    /* COMO FUNCIONA */
    .steps-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(3, 1fr);
    }

    .step-card {
      background: var(--cinza-claro);
      border-radius: 12px;
      padding: 1.4rem 1.2rem;
    }

    .step-number {
      width: 100px;
      height: 50px;
      border-radius: 999px;
      background: rgba(0,60,143,0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--azul);
      font-weight: 700;
      margin-bottom: 0.7rem;
      font-size: 2rem;
    }

    .step-title {
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .step-text {
      font-size: 1rem;
      color: #555;
    }

    /* SERVIÇOS */
    #servicos {
      background: var(--cinza-claro);
    }

    .services-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(3, 1fr);
    }

    .service-card {
      background: #fff;
      border-radius: 12px;
      padding: 1.4rem 1.2rem;
      border: 1px solid #e3e6ee;
    }

    .service-icon {
      width: 100px;
      height: 50px;
      border-radius: 10px;
      background: #e6fff5;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--azul);
      font-size: 2rem;
      margin-bottom: 0.4rem;
    }

    .service-title {
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .service-text {
      font-size: 1rem;
      color: #555;
    }

    /* CONTATO */
    #contato {
      background: #fff;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .contact-box {
      padding: 1.5rem 1.4rem;
      border-radius: 12px;
      border: 1px solid #e3e6ee;
      background: #fff;
    }

    .contact-box h3 {
      font-size: 1.1rem;
      margin-bottom: 0.7rem;
      color: var(--azul);
    }

    .contact-box p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 0.8rem;
    }

    .contact-info {
      list-style: none;
      font-size: 1rem;
      color: #444;
    }

    .contact-info li + li {
      margin-top: 0.3rem;
    }

    .contact-info span {
      font-weight: 600;
      color: var(--azul);
    }

    form {
      display: grid;
      gap: 0.7rem;
    }

    input, textarea {
      width: 100%;
      padding: 0.7rem 0.8rem;
      border-radius: 8px;
      border: 1px solid #ced4e0;
      font-size: 1rem;
      font-family: inherit;
    }

    textarea { min-height: 110px; resize: vertical; }

    input:focus, textarea:focus {
      outline: 2px solid rgba(0,166,118,0.3);
      border-color: var(--verde);
    }

    /* RODAPÉ */
    footer {
      padding: 1.2rem 1rem 1.6rem;
      background: #f4f6fb;
      font-size: 1rem;
      color: #666;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    /* RESPONSIVO */
    @media (max-width: 900px) {
      .hero-grid,
      .steps-grid,
      .services-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      header {
        position: static;
      }
      main {
        margin-top: 0;
      }
      nav ul {
        display: none; /* simplificação: esconde menu em mobile */
      }
      .nav-container {
        justify-content: center;
      }
      section {
        padding: 2.8rem 1.2rem;
      }
    }


    .logo-img {
  max-width: 400px; /* limite de largura */
  width: 100%;   /* nunca ultrapassa o container */
  height: auto;      /* mantém proporção */
}


@media (max-width: 480px) {
  .logo-img  {max-width: 90%;   /* reduz mais em celulares */
  }
}


@media (min-width: 769px) {
  section {
    scroll-margin-top: 80px;
  }
}

    .faq-wrapper {
      max-width: 900px;
      margin: 80px auto 40px;
          padding: 3.5rem 1rem;
          
    }

    .faq-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #003c8f;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .faq-subtitle {
      text-align: center;
      font-size: 1rem;
      color: #555;
      margin-bottom: 2rem;
    }

    .faq-item {
      border-radius: 10px;
      border: 1px solid #e3e6ee;
      background: #ffffff;
      padding: 1rem 1.2rem;
      margin-bottom: 0.9rem;
    }

    .faq-question {
      font-weight: 600;
      color: #003c8f;
      margin-bottom: 0.4rem;
      font-size: 1rem;
    }

    .faq-answer {
      font-size: 1rem;
      color: #444;
      line-height: 1.5;
    }

/* Cards */

.card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e3e6ee;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #003c8f;
  margin-bottom: 0.4rem;
}

.card-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}



/* Header condensado */
header {
  background: white;
  color: #1e293b;
  padding: 0.75rem 0;  /* padding menor */
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.logo-img { height: 35px; width: auto; 
color:#0b1fae;
-webkit-text-stroke:1.5px rgba(0,0,0,0.15);
}

.logo-subtext {
  font-weight: 600;
  font-size: 1em;
color:#0b1fae;
-webkit-text-stroke:1.5px rgba(0,0,0,0.15);
  line-height: 1.1;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;  /* gap MUITO MENOR */
  margin: 0;
  padding: 0;
  flex-wrap: wrap;  /* quebra linha */
  align-items: center;
}

.nav-menu a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3rem 0.5rem;  /* padding SUPER condensado */
  border-radius: 4px;
  transition: background 0.2s;
  font-size: 1rem;  /* fonte menor */
  white-space: nowrap;
}

.nav-menu a:hover {
  background: rgba(30,41,59,0.08);
}










/* RESPONSIVO - celular */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  
  .nav-menu ul {
    flex-direction: row;  /* continua horizontal no mobile */
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-menu a {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
  }
  
  .logo-img { height: 30px; }
}
