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

    body {
      font-family: 'Montserrat', sans-serif;
      background: #F6F6F6;
      color: #333;
    }

    header {
      background: #A19072;
      height: 90px;
      display: flex;
      align-items: center;
      position: relative;
    }

    .container {
      width: 90%;
      max-width: 1500px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 70px;
      width: auto;
    }

    /* Menu Mobile Toggle */
    .menu-toggle {
      display: none; /* Esconde no PC */
      font-size: 2rem;
      background: transparent;
      border: none;
      color: #FFEBC4; /* Cor das barras */
      cursor: pointer;
      z-index: 1001;
    }

    .overlay {
      height: 100%;
      width: 0;
      position: fixed;
      top: 0;
      left: 0;
      background-color: rgba(37, 153, 92, 0.95); /* verde do seu logo com transparência */
      overflow-x: hidden;
      transition: 0.5s;
      z-index: 1000;
    }

    /* Conteúdo centralizado */
    .overlay-content {
      position: relative;
      top: 30%;
      width: 100%;
      text-align: center;
    }

    .overlay-content a {
      display: block;
      font-size: 2rem;
      padding: 20px;
      text-decoration: none;
      color: white;
      transition: 0.3s;
    }

    .overlay-content a:hover {
      color: #000;
    }

    .menu-central {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 40px;
      padding: 0;
      margin: 0;
    }

    nav a {
      text-decoration: none;
      color: #FFEBC4;
      font-size: 18px;
      font-weight: 600;
      display: inline-block;
      transition: transform 0.2s ease;
    }

    nav a:hover {
      transform: scale(1.1);
    }

    .hero {
      width: 100%;
      height: 900px;
      position: relative;
      overflow: hidden;
    }

    .slideshow {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 1s ease-in-out, transform 6s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    .sobre {
      padding: 60px 0;
      background: #F6F6F6;
    }

    .sobre .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .sobre .imagem img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 400px;
    }

    .sobre .texto {
      flex: 1;
    }

    .sobre .texto h2 {
      font-size: 30px;
      margin-bottom: 20px;
      color: #A19072;
    }

    .sobre .texto p {
      font-size: 19px;
      line-height: 1.6;
      color: black;
      margin-bottom: 15px;
      text-align: justify;
    }

    .servicos {
      padding: 60px 0;
    }

    .servicos-grid {
      display: flex;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
      padding: 20px 20px;
      margin: 0 auto;
    }

    .card-servico {
      width: 200px;
      min-height: 210px;
      border-radius: 30px;
      background: #F6F6F6;
      box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px white;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 20px;
      text-align: center;
    }

    .card-servico img {
      width: 60px;
      height: 60px;
    }

    .servicos .container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .titulo-secao {
      font-size: 30px;
      margin-bottom: 40px;
      color: #A19072;
      text-align: left;
    }

    .card-servico h3 {
      font-size: 16px;
      font-weight: 600;
      color: black;
    }

    .trabalho {
      padding: 60px 0;
    }

    .trabalho h2 {
      font-size: 30px;
      color: #A19072;
      text-align: center;
      margin-bottom: 40px;
    }

    .accordion-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .accordion-item {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      width: 250px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .accordion-header {
      background: #A19072;
      color: white;
      font-weight: 600;
      padding: 20px;
      font-size: 16px;
      width: 100%;
      border: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .accordion-header:hover {
      background: #8c7c63;
    }

    .accordion-header img {
      width: 50px;
      height: 50px;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 10px;
      background: #F9F9F9;
      color: black;
      transition: max-height 0.4s ease, padding 0.3s ease;
      opacity: 0;
      visibility: hidden;
    }

    .accordion-content p {
      padding: 10px 0;
      font-size: 14px;
      text-align: justify;
    }

    .accordion-item.active .accordion-content {
      max-height: 500px;
      padding: 20px;
      opacity: 1;
      visibility: visible;
    }

    .carrossel {
      background: #F6F6F6;
      padding: 60px 0;
      text-align: center;
    }

    .carrossel h2 {
      font-size: 30px;
      margin-bottom: 30px;
      color: #A19072;
    }

    .carrossel-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      overflow: hidden;
      position: relative;
    }

    .carrossel-imagens {
      display: flex;
      gap: 20px;
      transition: transform 0.5s ease;
      scroll-behavior: smooth;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .carrossel-imagens::-webkit-scrollbar {
      display: none;
    }

    .carrossel-imagens img {
      flex: 0 0 auto;
      width: 500px;
      height: 500px;
      object-fit: cover;
      scroll-snap-align: start;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .seta {
      background: #A19072;
      color: white;
      border: none;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .seta:hover {
      background: #8c7c63;
    }

    .contato {
      background: #F6F6F6;
      color: #A19072;
      padding: 60px 0;
    }

    .contato .container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 40px;
    }

    .contato h2 {
      font-size: 24px;
      max-width: 300px;
      text-align: left;
      margin: 0;
    }

    .formulario {
      background: white;
      padding: 30px;
      border-radius: 12px;
      width: 700px;
      max-width: 700px;
      min-width: 350px;
      margin-left: auto;
      margin-right: 150px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .formulario input,
    .formulario textarea {
      background: #eee;
      border: none;
      padding: 10px;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
    }

    .formulario .linha {
      display: flex;
      gap: 10px;
      width: 100%;
    }

    .formulario .linha input {
      flex: 1;
    }

    .formulario button {
      font-family: inherit;
      font-size: 18px;
      background: #A19072;
      color: white;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      border-radius: 25px;
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.3s;
      gap: 5px;
      cursor: pointer;
    }

    .formulario button:hover {
      background: #8c7c63;
      transform: translateY(-3px);
      box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    }

    .formulario button:active {
      transform: scale(0.95);
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .formulario button span {
      display: block;
      margin-left: 0.4em;
      transition: all 0.3s;
    }

    .formulario button svg {
      width: 18px;
      height: 18px;
      fill: white;
      transition: all 0.3s;
    }

    .formulario button:hover svg {
      transform: rotate(45deg);
    }

    .footer {
      background: #A19072;
      color: #FFF4D8;
      padding: 60px 0;
    }

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

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

    .logo-footer img {
      height: 140px;
      margin-bottom: 10px;
    }

    .links-footer {
      display: flex;
      font-size: 18px;
      flex-direction: column;
      gap: 10px;
    }

    .links-footer a {
      color: #FFF4D8;
      text-decoration: none;
      font-weight: 600;
    }

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

    .contato-footer h3 {
      margin-bottom: 20px;
      color: #FFF4D8;
      font-weight: 700;
    }

    .contato-footer p {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 5px 0;
      font-size: 16px;
      color: #FFEBC4;
    }

    .contato-footer svg {
      flex-shrink: 0;
    }

    /* MEDIA QUERIES PARA RESPONSIVIDADE */
    @media (max-width: 768px) {
      /* Header Mobile */
      header {
        height: auto;
        padding: 15px 0;
      }

      .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
      }

      #menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh; /* Tela inteira */
        width: 100%;
        background: white; /* Pode trocar a cor aqui */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%); /* escondido */
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
      }

      #menu.active {
        transform: translateX(0); /* aparece com animação */
      }

      #menu a {
        font-size: 1.5rem;
        color: #333;
        text-decoration: none;
      }

      /* Hero Mobile */
      .hero {
        height: 50vh;
        min-height: 400px;
      }

      /* Sobre Mobile */
      .sobre .container {
        flex-direction: column;
        text-align: center;
      }

      .sobre .imagem img {
        width: 100%;
        max-width: 300px;
      }

      .sobre .texto h2 {
        font-size: 24px;
      }

      .sobre .texto p {
        font-size: 16px;
      }

      /* Serviços Mobile */
      .servicos-grid {
        gap: 30px;
        padding: 20px 10px;
      }

      .card-servico {
        width: 180px;
        height: 190px;
      }

      .card-servico h3 {
        font-size: 14px;
      }

      /* Trabalho Mobile */
      .trabalho h2 {
        font-size: 24px;
      }

      .accordion-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .accordion-item {
        width: 100%;
        max-width: 350px;
      }

      /* Carrossel Mobile */
      .carrossel-imagens img {
        width: 300px;
        height: 300px;
      }

      /* Contato Mobile */
      .contato .container {
        align-items: center;
        text-align: center;
      }

      .contato h2 {
        font-size: 20px;
        max-width: 100%;
        text-align: center;
      }

      .formulario {
        width: 100%;
        max-width: 500px;
        margin-left: 0;
        margin-right: 0;
        padding: 20px;
      }

      .formulario .linha {
        flex-direction: column;
      }

      /* Footer Mobile */
      .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
      }

      .logo-footer img {
        height: 100px;
      }

      .links-footer {
        font-size: 16px;
      }

      .contato-footer p {
        justify-content: center;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      /* Ajustes para telas muito pequenas */
      .logo img {
        height: 50px;
      }

      .hero {
        height: 40vh;
        min-height: 300px;
      }

      .sobre .texto h2,
      .trabalho h2,
      .carrossel h2 {
        font-size: 20px;
      }

      .sobre .texto p {
        font-size: 14px;
      }

      .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .card-servico {
        width: 100%;
        max-width: 250px;
      }

      .carrossel-imagens img {
        width: 250px;
        height: 250px;
      }

      .formulario {
        padding: 15px;
      }

      .formulario input,
      .formulario textarea {
        padding: 8px;
      }
    }

    /* Evita scroll quando o menu mobile estiver aberto */
    body.nav-open { overflow: hidden; }

    /* Mobile: esconder o menu desktop */
    @media (max-width: 768px) {
      .menu-central { display: none; }
    }

    /* Desktop: esconder o menu mobile (#menu) e o botão */
    @media (min-width: 769px) {
      #menu { display: none !important; }
      /* se já tiver .menu-toggle { display:none } no topo, esta linha é redundante, mas não faz mal */
      .menu-toggle { display: none; }
    }

        /* COMO EU TRABALHO – fluxo numerado */
    .processo { padding: 60px 0; background: #F6F6F6; }
    .processo h2 { font-size: 30px; color: #A19072; text-align: center; margin-bottom: 35px; }

    .processo-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(220px, 1fr));
      gap: 24px;
    }

    .processo-card {
      position: relative;
      background: #fff;
      border-radius: 16px;
      padding: 24px 20px 20px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(0,0,0,.08);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .processo-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 22px rgba(0,0,0,.12);
    }
    .processo-card .badge {
      position: absolute;
      top: -12px; left: 16px;
      background: #A19072;
      color: #FFF4D8;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .5px;
      padding: 12px 20px;
      border-radius: 999px;
      box-shadow: 0 4px 10px rgba(0,0,0,.15);
    }
    .processo-card img { width: 56px; height: 56px; margin: 6px auto 10px; display: block; }
    .processo-card h3 { font-size: 18px; color: #A19072; margin-bottom: 8px; }
    .processo-card p  { font-size: 14px; color: #333; line-height: 1.55; }

    /* responsivo */
    @media (max-width: 1024px) {
      .processo-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .processo-grid { grid-template-columns: 1fr; }
    }

    /* SERVIÇOS – texto sempre visível */
    .card-servico { cursor: default; }
    .card-servico .desc {
      font-size: 14px;
      color: #333;
      line-height: 1.5;
    }

    /* --- Abas do carrossel --- */
    .carrossel-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 18px;
    }
    .carrossel-tabs .tab {
      border: 1px solid #A19072;
      background: #FFF4D8;
      color: #A19072;
      padding: 8px 14px;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, transform .15s ease;
    }
    .carrossel-tabs .tab:hover { transform: translateY(-2px); }
    .carrossel-tabs .tab.active {
      background: #A19072;
      color: #FFF4D8;
    }

    /* Panes (somente um visível) */
    .carrossel-panes { width: 100%; }
    .carrossel-pane { display: none; }
    .carrossel-pane.active { display: block; }

    /* Tabs roláveis em telas pequenas */
    @media (max-width: 640px) {
      .carrossel-tabs {
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
      }
    }

        /* ===== SERVIÇOS – grid fluido + "Saiba mais" ===== */
    .servicos { padding: 60px 0; }
    .servicos .titulo-secao {
      font-size: 30px;
      margin-bottom: 32px;
      color: #A19072;
      text-align: left;
    }

    .servicos-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      padding: 0;
      margin: 0;
      justify-items: stretch;
    }

    .card-servico {
      width: auto !important;
      min-height: 0 !important;
      text-align: left;
      align-items: stretch;
      padding: 24px;
      gap: 10px;
    }

    .card-servico img { width: 56px; height: 56px; }
    .card-servico h3 {
      font-size: 18px;
      color: #A19072;
      margin-bottom: 4px;
    }
    .card-servico .desc {
      font-size: 14px;
      color: #333;
      line-height: 1.55;
      font-weight: 500;
    }

    /* Nativo: details/summary como "Saiba mais" */
    details.mais { margin-top: 6px; }
    details.mais summary {
      list-style: none;
      cursor: pointer;
      color: #A19072;
      font-weight: 600;
      user-select: none;
    }
    details.mais summary::-webkit-details-marker { display: none; }
    details.mais summary::after {
      content: " +";
      font-weight: 700;
    }
    details.mais[open] summary::after { content: " −"; }
    details.mais .extra {
      margin-top: 8px;
      display: grid;
      gap: 8px;
    }
    details.mais .extra p {
      font-size: 14px;
      line-height: 1.55;
      color: #333;
    }

    /* Mobile: ocupar toda a largura e crescer com o texto */
    @media (max-width: 768px) {
      .card-servico {
        width: 100% !important;
        height: auto !important;
        padding: 20px;
      }
    }

        @media (min-width: 1024px) {
      .servicos-grid {
        /* 3 colunas fixas no desktop */
        grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
      }
    }

    @media (min-width: 640px) and (max-width: 1023px) {
      .servicos-grid {
        /* 2 colunas no tablet */
        grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
      }
    }

    @media (max-width: 639px) {
      .servicos-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        justify-items: center;
        gap: 30px;
        padding: 20px 10px;
      }
      .card-servico {
        width: min(520px, 92vw);
        height: auto;
        margin: 0 auto;
        text-align: center;
      }
      .card-servico img {
        display: block;
        margin: 0 auto 12px;
      }
    }

  #podcast {
    padding: 60px 0; /* igual às outras seções */
  }

  #podcast .container {
    /* sobrescreve a .container global (space-between) só aqui */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;  /* título, vídeo, texto */
    align-items: center;
    gap: 24px;               /* espaço entre título, vídeo e descrição */
  }

  #podcast h2 {
    font-size: 30px;
    color: #A19072;          /* mesma cor das outras seções */
    text-align: center;
    margin: 0;
  }

  /* Wrapper responsivo 16:9 centralizado */
  #podcast .video-embed {
    position: relative;
    width: min(960px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }

  /* Fallback 16:9 */
  #podcast .video-embed::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  /* Navegadores modernos: usa aspect-ratio */
  @supports (aspect-ratio: 16 / 9) {
    #podcast .video-embed { aspect-ratio: 16 / 9; }
    #podcast .video-embed::before { display: none; }
  }

  #podcast .video-embed > iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: inherit;
    float: none !important;  /* desarma qualquer float herdado */
  }

  /* Texto da legenda */
  #podcast .video-caption {
    text-align: center;
    font-size: 19px;
    margin-top: 10px;        /* respiro entre vídeo e descrição */
    max-width: 760px;
    line-height: 1.5;
    color: #333;
    opacity: .9;
  }

  /* ===== Mobile refinements ===== */
  @media (max-width: 639px) {
    #podcast { padding: 40px 0; }
    #podcast .container { gap: 20px; }
    #podcast .video-embed,
    #podcast .video-embed > iframe { border-radius: 12px; }
    #podcast .video-caption { font-size: .95rem; padding: 0 6px; }
  }

  /* Podcast: título 100% à esquerda como nas outras seções */
  #podcast .container {
    /* antes estava align-items: center; */
    align-items: stretch;
  }

  #podcast h2 {
    text-align: left !important;
    align-self: auto;
    margin: 0 0 32px;
  }

  /* Mantém vídeo e legenda centralizados */
  #podcast .video-embed,
  #podcast .video-caption {
    margin-left: auto;
    margin-right: auto;
  }

    /* ===== Mobile menu: cores ===== */
  @media (max-width: 768px) {
    /* fundo do menu aberto */
    #menu {
      background: #A19072;                 /* novo fundo */
    }

    /* cor dos títulos/links das seções */
    #menu a {
      color: #FFF4D8;                      /* textos claros */
    }
    #menu a:hover, #menu a:focus {
      color: #FFEBC4;                      /* destaque no hover/focus */
    }

    /* ícone “hambúrguer” para combinar com o fundo novo */
    .menu-toggle {
      color: #FFF4D8;
    }
  }

  :root{
    --menu-btn-top: 20px;   /* mesmo top da .menu-toggle */
    --menu-btn-right: 20px; /* mesmo right da .menu-toggle */
    --menu-btn-r: 18px;     /* “raio” aproximado do botão (metade do tamanho) */
  }

  @media (max-width: 768px) {
    /* estado fechado (já existe), agora com máscara */
    #menu{
      /* mantém o seu layout */
      clip-path: circle(0 at calc(100% - var(--menu-btn-right) - var(--menu-btn-r))
                          calc(var(--menu-btn-top) + var(--menu-btn-r)));
      transition: clip-path 1.5s cubic-bezier(.2,.8,.2,1), 
                  background .3s ease;
      will-change: clip-path;
    }

    /* aberto: o círculo cresce e revela todo o painel */
    #menu.active{
      clip-path: circle(150vmax at calc(100% - var(--menu-btn-right) - var(--menu-btn-r))
                                calc(var(--menu-btn-top) + var(--menu-btn-r)));
    }

    /* Stagger suave nos links */
    #menu a{
      opacity: 0;
      transform: translateX(12px);
      transition: opacity .35s ease, transform .35s ease;
    }
    #menu.active a{
      opacity: 1;
      transform: translateX(0);
    }
    /* pequenos delays progressivos */
    #menu.active a:nth-child(1){ transition-delay: .10s; }
    #menu.active a:nth-child(2){ transition-delay: .16s; }
    #menu.active a:nth-child(3){ transition-delay: .22s; }
    #menu.active a:nth-child(4){ transition-delay: .28s; }
    #menu.active a:nth-child(5){ transition-delay: .34s; }
    #menu.active a:nth-child(6){ transition-delay: .40s; }
    #menu.active a:nth-child(7){ transition-delay: .46s; }
  }