@media (max-width: 1024px) {
  /* BASE */
  html {
    font-size: 90%;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* LOGO CENTRALIZADA */
  .logo {
    display: block;
    margin: 0 auto;
    height: 60px;
  }

  /* HEADER / MENU MOBILE */
  #menu-toggle {
    display: block;
    font-size: 1.6rem;
  }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 2rem 1.5rem;
    transition: left 0.3s ease;
    display: none;
    z-index: 999;
    gap: 1.2rem;
  }

  nav.open {
    left: 0;
    display: flex;
  }

  nav a {
    font-size: 1.1rem;
    text-align: center;
    padding: 0.6rem 0;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
  }

  .menu-overlay.active {
    display: block;
  }

  .btn-header {
    display: none !important;
  }

  /* HERO */
  .hero-overlay h1 {
    font-size: 1.6rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  /* SOBRE */
  .sobre-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .sobre-texto {
    padding-right: 0;
  }

  .sobre-texto::after {
    display: none;
  }

  .sobre-imagem {
    margin-left: 0;
    width: 100%;
  }

  /* CURSOS SIMPLIFICADOS */
  .curso-card {
    display: none; /* Oculta versão flip */
  }

  .curso-simplificado {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c89d53;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
  }

  .curso-simplificado:hover {
    background-color: #f9f9f9;
  }

  .curso-simplificado::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    color: goldenrod;
  }

  .curso-simplificado.ativo::after {
    content: "–";
  }

  .curso-detalhes {
    display: none;
    padding: 1rem 1.2rem;
    background: #fdf9f3;
    border-left: 4px solid goldenrod;
    margin-bottom: 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.95rem;
    color: #444;
  }

  .curso-detalhes p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }

  .curso-detalhes .btn-gold {
    margin-top: 0.8rem;
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  /* TRATAMENTOS SIMPLIFICADOS */
  .grupo-banner img {
    display: none;
  }

  .grupo-banner {
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 0.5rem;
  }

  .grupo-banner:hover {
    background-color: #f9f9f9;
  }

  .grupo-banner .grupo-titulo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c89d53;
    background-image: none !important;
    text-shadow: none;
    padding: 0;
    margin: 0;
  }

  .grupo-banner::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    color: goldenrod;
  }

  .grupo-banner.ativo::after {
    content: "–";
  }

  .tratamentos-grupo {
    display: none;
    padding: 1rem 1.2rem;
    background: #fdf9f3;
    border-left: 4px solid goldenrod;
    border-radius: 0 0 10px 10px;
    margin-bottom: 1rem;
    max-height: 100vh;
    overflow-y: auto;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .tratamento-header {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .tratamento-detalhes {
    display: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
  }

  .tratamento-detalhes.aberto {
    display: block;
  }

  /* VÍDEOS */
  .videos-slider {
    padding: 0 1rem;
  }

  .video-item {
    flex: 0 0 100%;
  }

  .slider-btn {
    display: none;
  }

  .play-overlay {
    width: 72px;
    height: 72px;
  }

  /* DEPOIMENTOS */
  .depoimento-card {
    width: 90%;
    height: auto;
    padding: 1.2rem;
  }

  .depoimento-header img {
    width: 40px;
    height: 40px;
  }

  .depoimento-card p {
    font-size: 0.9rem;
    max-height: 110px;
  }

  /* PASSOS */
  .passo {
    padding: 1.5rem;
  }

  .numero {
    top: -10px;
    font-size: 1rem;
  }

  /* FOOTER */
  #footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-col {
    padding: 0;
  }

  .footer-copy {
    flex-direction: column;
    gap: 1rem;
  }
}
