/* -------------------------------------------
   1) ROLAGEM SUAVE E RESET
------------------------------------------- */
html {
    scroll-behavior: smooth;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: black;
    color: white;
    overflow-x: hidden;
  }
  
  /* -------------------------------------------
     2) HEADER STICKY COM FUNDO TRANSPARENTE
        QUE FICA PRETO AO ROLAR
  ------------------------------------------- */
  header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 10px 5%;
    background: transparent;
    transition: background 0.3s ease-in-out;
  }
  
  /* Classe adicionada via JS ao rolar a página */
  header.scrolled {
    background: black;
  }
  
  .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  
  .logo {
    max-width: 100px;
    border-radius: 100%;
  }
  
  .menu-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .menu-links li {
    display: inline;
  }
  
  .menu-links a {
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
  }
  
  .cta-button {
    background: #DF5D13;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid white;
    text-decoration: none;
    color: white;
    font-weight: 800;
  }
  
  /* Ícone do menu para mobile */
  .menu-icon {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  #menu-toggle {
    display: none;
  }
  
  /* Responsividade do menu */
  @media screen and (max-width: 480px) {
    .menu {
      flex-direction: column;
      text-align: center;
    }
    .logo {
      margin-bottom: 10px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .menu-links {
      display: none;
      flex-direction: column;
      position: absolute;
      background: rgba(0, 0, 0, 0.8);
      top: 60px;
      right: 0;
      width: 100%;
      padding: 20px;
      text-align: center;
    }
    .menu-links li {
      margin-bottom: 15px;
    }
    .menu-icon {
      display: block;
    }
    #menu-toggle:checked + .menu-icon + .menu-links {
      display: flex;
    }
  }
  
  /* -------------------------------------------
     3) SEÇÃO INÍCIO
  ------------------------------------------- */
  .background {
    position: relative;
    width: 100%;
  }
  
  .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.57);
  }
  
  .content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    flex-wrap: wrap;
  }
  
  .text-box {
    max-width: 500px;
  }
  
  .text-box h1 {
    font-size: 65px;
    font-weight: 900;
    line-height: 74px;
  }
  
  .text-box p {
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
    color: #DF5D13;
    margin-top: 30px;
  }
  
  /* Formulário de Contato no topo */
  .contact-form {
    background: #DF5D13;
    padding: 32px;
    border-radius: 5px;
    width: 100%;
    max-width: 489px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 50px;
    text-align: center;
    color: white;
  }
  
  .contact-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
  }
  
  .contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    width: 100%;
    color: white;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin-top: 5px;
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    color: white;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
  }
  
  .contact-form textarea {
    height: 50px;
    resize: none;
  }
  
  .contact-form button {
    margin-top: 20px;
    background: white;
    color: #DF5D13;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid white;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
  }
  
  .contact-form button:hover {
    background: #DF5D13;
    color: white;
  }
  
  /* Responsividade da Seção Início */
  @media screen and (max-width: 1024px) {
    .content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .text-box {
      margin-bottom: 20px;
    }
    .text-box h1 {
      font-size: 32px;
      line-height: 45px;
    }
    .text-box p {
      font-size: 20px;
    }
    .contact-form {
      width: 90%;
    }
  }
  
  @media screen and (max-width: 480px) {
    .text-box h1 {
      font-size: 28px;
      line-height: 40px;
    }
    .text-box p {
      font-size: 18px;
    }
    .contact-form {
      width: 95%;
      padding: 20px;
    }
  }
  
  /* -------------------------------------------
     4) SEÇÃO SOBRE NÓS
  ------------------------------------------- */
  .about {
    background: black;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1104px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-text {
    max-width: 464px;
  }
  
  .about-text h3 {
    font-size: 20px;
    font-weight: 900;
  }
  
  .about-text .orange {
    color: #DF5D13;
    font-size: 42px;
    font-weight: 900;
    margin-top: 40px;
  }
  
  .about-text .highlight {
    color: rgba(220,136,51,0.79);
    font-size: 25px;
    font-weight: 900;
    margin-top: 10px;
  }
  
  .about-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 30px;
  }
  
  .about-image video {
    max-width: 584px;
    height: auto;
    border: 1px solid black;
  }
  
  @media screen and (max-width: 1024px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-text {
      max-width: 100%;
    }
  }
  
  @media screen and (max-width: 768px) {
    .about-text h3 {
      font-size: 18px;
    }
    .about-text .orange,
    .about-text .highlight {
      font-size: 25px;
    }
    .about-text p {
      font-size: 15px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .about-text h3 {
      font-size: 16px;
    }
    .about-text .orange,
    .about-text .highlight {
      font-size: 24px;
    }
    .about-text p {
      font-size: 18px;
    }
  }
  
  /* -------------------------------------------
     5) SEÇÃO QUEM SOMOS II
  ------------------------------------------- */
  .quem-somos-ii {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
  }
  
  .quem-ii {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .quem-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 80px;
    max-width: 592px;
  }
  
  .quem-title {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0;
    color: #000;
    text-align: center;
  }
  
  .botao-fale {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DF5D13;
    border-radius: 20px;
    padding: 10px 20px;
    width: fit-content;
    border: 2px solid black;
  }
  
  .image-1 {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .fale-conosco {
    color: black;
    font-size: 16px;
    text-decoration: none;
  }
  
  .quem-somos-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .icones-controle {
    display: flex;
    gap: 15px;
  }
  
  .icones-controle img {
    width: 30px;
    cursor: pointer;
  }
  
  .icones-play {
    margin: 20px 0;
  }
  
  .text-container {
    padding: 15px;
    max-width: 400px;
  }
  
  .text {
    font-size: 16px;
    color: black;
  }
  
  @media (max-width: 1024px) {
    .quem-ii {
      flex-direction: column;
      text-align: center;
      margin-left: 0;
    }
    .quem-left,
    .quem-somos-right {
      max-width: 100%;
      margin-left: 0;
    }
    .botao-fale {
      margin: 0 auto;
    }
  }
  
  /* -------------------------------------------
     6) SEÇÃO PORTFÓLIO
  ------------------------------------------- */
  .portfolio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1140px;
    margin: 0 auto;
    background: #000;
    padding: 20px;
  }
  
  .portfolio-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .portfolio-text {
    flex: 1;
    color: white;
    padding-right: 50px;
  }
  
  .portfolio-title {
    font-size: 24px;
    font-weight: bold;
    color: #DF5D13;
    margin-bottom: 20px;
  }
  
  .portfolio-list {
    list-style: none;
  }
  
  .portfolio-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .portfolio-list img {
    width: 24px;
    margin-right: 10px;
  }
  
  .portfolio-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .portfolio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  @media (max-width: 1024px) {
    .portfolio-container {
      width: 100%;
      min-height: auto;
      padding: 30px 5%;
    }
    .portfolio-content {
      flex-direction: column;
      text-align: center;
    }
    .portfolio-text {
      padding: 0;
    }
    .portfolio-image {
      margin-top: 20px;
    }
  }
  
  /* ============================
   SEÇÃO SERVIÇOS - LAYOUT EXATO
============================ */

/* Seção de serviços com fundo preto */
.services-section {
    background: #000; /* Fundo preto geral */
    color: #fff;      /* Texto branco para o título e subtítulo */
    padding: 60px 5%;
    position: relative;
  }
  
  /* Título (SERVIÇOS) e subtítulo (O que podemos criar para você) */
  .services-header {
    margin-bottom: 30px;
    text-align: left; /* Alinhado à esquerda */
  }
  .services-header h2 {
    font-size: 32px;
    margin-bottom: 5px;
  }
  .services-header p {
    font-size: 18px;
    margin-left: 2px; /* leve ajuste se quiser */
  }
  
  /* Container geral que terá o fundo branco deslocado 10px */
  .services-container {
    position: relative; /* Para usar pseudo-elemento */
    z-index: 1;         /* Cards ficam acima do pseudo-elemento */
    min-height: 400px;  /* Ajuste se quiser */
  }
  
  /* Fundo branco deslocado 10px para a direita */
  .services-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;       /* Deslocamento de 10px */
    width: calc(100% - 10px); /* Fundo branco ocupa o resto */
    height: 100%;
    z-index: -1;      /* Fica atrás dos cards */
    border-radius: 0 20px 20px 0; /* Opcional: canto arredondado à direita */
  }
  
  /* Envolve apenas os 3 cards e o botão */
  .cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinha os cards pelo topo */
    gap: 20px;               /* Espaço horizontal entre as colunas */
    flex-wrap: wrap;         /* Quebra em telas menores */
    margin-bottom: 40px;     /* Espaço antes do botão */
  }
  
  /* Cada card */
  .service-card {
    background: #fff;       /* Fundo branco do card */
    color: #000;            /* Texto em preto */
    width: 280px;           /* Ajuste conforme desejar */
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 15px;
    position: relative;
  }
  
  /* Imagem dentro do card */
  .service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  /* Título e texto dentro do card */
  .service-card h3 {
    font-size: 20px;
    color: #DF5D13; /* Laranja */
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Efeito “escada” (stair) usando margin-top */
  .service-card:nth-child(1) {
    margin-top: 40px; /* 1º card => 40px */
  }
  .service-card:nth-child(2) {
    margin-top: 20px; /* 2º card => 20px */
  }
  .service-card:nth-child(3) {
    margin-top: 0;    /* 3º card => 0px */
  }
  
  /* Botão após os cards */
  .cta-button {
    text-align: center;
  }
  .cta-button button {
    background: #DF5D13;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
  }
  .cta-button button:hover {
    background: #b94a0e;
  }
  
  /* RESPONSIVIDADE para telas menores */
  @media (max-width: 768px) {
    .cards-wrapper {
      flex-direction: column;
      align-items: center;
    }
    .service-card {
      margin-top: 20px !important; /* Sobrescreve o “stair” no mobile */
      width: 90%;
    }
    .service-card:nth-child(1) {
      margin-top: 0 !important;
    }
  }
  
  
  /* -------------------------------------------
     8) SEÇÃO CLIENTES
  ------------------------------------------- */
  .clientes-container {
    text-align: center;
    padding: 50px 30px;
    background-color: white;
  }
  
  .clientes-titulo {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
  }
  
  .clientes-carrossel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .prev-btn,
  .next-btn {
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #000;
    padding: 10px;
    transition: 0.3s;
  }
  
  .prev-btn:hover,
  .next-btn:hover {
    color: #DF5D13;
  }
  
  .clientes-wrapper {
    overflow: hidden;
    width: 90%;
    max-width: 910px;
    border-radius: 10px;
    background: #e6e6e6;
    padding: 15px;
  }
  
  .clientes-slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }
  
  .clientes-slider img {
    width: 160px;
    border-radius: 5px;
    padding: 8px;
    transition: 0.3s;
  }
  
  .clientes-slider img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .clientes-wrapper {
      width: 95%;
    }
    .clientes-slider img {
      width: 130px;
    }
  }
  
  @media (max-width: 480px) {
    .clientes-wrapper {
      width: 100%;
    }
    .clientes-slider img {
      width: 100px;
    }
  }
  
  /* -------------------------------------------
     9) SEÇÃO CONTATO
  ------------------------------------------- */
  .contato-container {
    background: linear-gradient(180deg, white 57%, black 95%);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }
  
  .contato {
    background: #000;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 720px;
    width: 100%;
    color: white;
    box-shadow: 0px 4px 10px rgba(255,255,255,0.2);
  }
  
  .contato h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .email-contato {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .email-contato img {
    width: 24px;
  }
  
  .email-contato a {
    color: #DF5D13;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
  }
  
  .email-contato a:hover {
    text-decoration: underline;
  }
  
  .form-contato {
    display: contents;
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }
  
  .form-contato label {
    font-weight: bold;
    font-size: 14px;
  }
  
  .form-contato input {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
  }
  
  .form-contato input::placeholder {
    color: rgba(255,255,255,0.7);
  }
  
  .form-contato textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid white;
    background: white;
    color: black;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    height: 90px;
    resize: none;
    transition: 0.3s;
  }
  
  .form-contato textarea::placeholder {
    color: rgba(0,0,0,0.6);
  }
  
  .form-contato button {
    background: #DF5D13;
    color: white;
    font-size: 18px;
    padding: 14px;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .form-contato button:hover {
    background: #DC8833;
  }
  
  @media (max-width: 768px) {
    .contato {
      padding: 40px;
    }
    .form-contato input,
    .form-contato textarea {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .contato {
      padding: 30px;
    }
    .contato h2 {
      font-size: 18px;
    }
    .form-contato button {
      font-size: 16px;
      padding: 12px;
    }
  }
  
  /* -------------------------------------------
     10) FOOTER
  ------------------------------------------- */
  footer {
    background: #000;
    padding: 50px 20px;
    color: white;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
  }
  
  .footer-logo img {
    width: 120px;
    display: block;
    margin: auto;
  }
  
  .footer-institucional h3 {
    color: #DF5D13;
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .footer-institucional ul {
    list-style: none;
  }
  
  .footer-institucional ul li {
    margin-bottom: 8px;
  }
  
  .footer-institucional ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  .footer-institucional ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-contato p {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .footer-contato a {
    color: white;
    text-decoration: none;
  }
  
  .footer-contato a:hover {
    text-decoration: underline;
  }
  
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-social a img {
    width: 30px;
    transition: transform 0.2s;
  }
  
  .footer-social a:hover img {
    transform: scale(1.1);
  }
  
  @media (max-width: 1024px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
      text-align: center;
    }
    .footer-social {
      margin-top: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  
    /* =========================
   Seção Galeria Laranja (4 col x 3 row)
========================= */
.gallery-mid {
    background: #DF5D13; /* Fundo laranja */
    padding: 40px 5%;
    /* Se quiser texto branco no título (se houver), inclua color: #fff; */
  }
  
  .gallery-mid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas */
    grid-auto-rows: auto; /* Altura automática (3 linhas, total 12 imagens) */
    gap: 10px; /* Espaço entre as imagens */
  }
  
  .gallery-mid-container img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ajusta a imagem sem distorcer */
    border: 2px solid #000; /* Se quiser borda preta (opcional) */
    border-radius: 4px; /* Canto levemente arredondado (opcional) */
  }
  
  #inicio .background {
    width: 100%;
    height: 1100px; 
    background: url("./imagens/HOMETESTE2.jpg") center center no-repeat;
    background-size: cover; /* Mantém proporção e cobre todo o espaço */
    /* Remove <img> real do HTML e use apenas background */
  }
  
/* Título do footer (INSTITUCIONAL) */
.footer-institucional h3 {
  color: #DF5D13;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Reaplicando o mesmo estilo para CONTATOS e REDES SOCIAIS */
.footer-contato h3,
.footer-social h3 {
  color: #DF5D13;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-credits {
  text-align: center; 
  margin-top: 20px; /* Espaço acima, se desejar */
}

.footer-credits p {
  font-size: 14px; /* Ajuste conforme o layout */
  color: white;    /* Mantém texto em branco */
}

.footer-credits a {
  color: #DF5D13;  /* Link em laranja */
  text-decoration: none;
  font-weight: bold;
}

.footer-credits a:hover {
  text-decoration: underline;
}

/* BOTÃO FLUTUANTE DE WHATSAPP */
.whatsapp-float {
  position: fixed;
  width: 60px;              /* Largura do botão */
  height: 60px;             /* Altura do botão */
  bottom: 20px;             /* Distância do rodapé */
  right: 20px;              /* Distância da lateral direita */
  z-index: 9999;            /* Fica acima dos outros elementos */
  background-color: #25D366;/* Cor oficial do WhatsApp */
  border-radius: 50%;       /* Botão circular */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;    /* Remove sublinhado */
}

/* Ícone dentro do botão */
.whatsapp-icon {
  width: 30px;              /* Ajuste conforme o tamanho desejado */
  height: 30px;
  object-fit: contain;      /* Ajuste a exibição da imagem */
}

/* Efeito de hover */
.whatsapp-float:hover {
  background-color: #20b557;/* Tom ligeiramente mais escuro ao passar o mouse */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* MODAL (POPUP) GERAL */
.modal {
  display: none;            /* Inicialmente escondido */
  position: fixed;          /* Fica sobre a tela */
  z-index: 9999;            /* Acima de outros elementos */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;           /* Se o conteúdo for grande, rola */
  background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
}

/* Conteúdo do popup */
.modal-content {
  background-color: #fff;   /* Fundo branco do formulário */
  margin: 100px auto;       /* Centraliza vertical/horizontal */
  padding: 20px;
  width: 500px;             /* Largura do popup */
  max-width: 90%;           /* Em telas pequenas, não ultrapassa 90% */
  border-radius: 8px;
  color: #000;              /* Texto preto */
  position: relative;       /* Para posicionar o botão close se quiser */
}

/* Botão fechar (X) no canto superior direito */
.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Título do popup */
.modal-content h2 {
  margin-top: 0;
  color: #DF5D13;           /* Laranja */
  margin-bottom: 15px;
}

/* Formulário dentro do popup */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-form label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.popup-form textarea {
  resize: none;
  height: 80px;
}

.enviar-orcamento {
  background: #DF5D13;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.enviar-orcamento:hover {
  background: #b94a0e;
}

/* Ajuste Responsivo para o popup */
@media (max-width: 480px) {
  .modal-content {
    margin: 80px auto; /* Menos espaçamento no topo */
  }
}

/* Força o menu a ser um contêiner flex horizontal */
.menu-links {
  display: flex;           /* Itens em linha */
  align-items: center;     /* Alinha verticalmente no centro */
  /* Se já existir outro display, mantenha ou ajuste */
}

/* Estiliza os <li> para ficarem em linha */
.menu-links li {
  list-style: none;
  margin: 0 10px; /* Espaçamento horizontal entre itens */
}

/* Se quiser que o botão fique colado à direita,
   use margin-left: auto; na classe .solicite */
.solicite {
  /* margin-left: auto;  <-- Descomente se quiser o botão “grudado” no lado direito */
}

/* Ajuste a altura e padding do botão para combinar com os links */
.cta-button.orcamento-button {
  /* Se estiver muito alto, reduza o padding */
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 800;
  /* Se quiser a mesma altura dos links, 
     tente algo como line-height: 1; ou ajuste */
}

/* Responsivo: no modo hambúrguer, o .menu-links vira coluna */
@media screen and (max-width: 768px) {
  .menu-links {
    display: none; /* ou position: absolute, etc. */
    flex-direction: column;
    align-items: center;
  }

  #menu-toggle:checked + .menu-icon + .menu-links {
    display: flex;
  }

  /* Para que o botão apareça logo abaixo dos itens do menu */
  .solicite {
    margin-left: 0;    /* Remove auto no mobile, se estiver usando */
    margin-top: 10px;  /* Pequeno espaçamento acima do botão */
  }
}
/* =====================
   FORMULÁRIO POPUP
===================== */

/* Geral do modal já existente:
.modal {
  ...
}
.modal-content {
  ...
}
.close {
  ...
}
*/

/* Container do formulário */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Cada 'linha' com dois grupos de 50% */
.form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px; /* Espaço horizontal entre colunas */
}

/* Cada coluna (form-group) ocupa 50% */
.form-group {
  width: 50%;
  display: flex;
  flex-direction: column;
}

/* Inputs e Textareas */
.form-group label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333; /* Ajuste de cor */
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: none;
  height: 60px; /* Ajuste conforme necessário */
}

/* Botão de Enviar */
.enviar-orcamento {
  background: #DF5D13;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px; /* Pequeno espaçamento acima do botão */
}

.enviar-orcamento:hover {
  background: #b94a0e;
}

/* Responsivo: no mobile, cada .form-group ocupa 100% */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .form-group {
    width: 100%;
  }
}

.form-status {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
  color: #fff; /* cor padrão */
}
