/* Reset e estrutura base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}


/* Animação no background da HERO */
@keyframes backgroundFadeZoom {
    0% {
        background-size: 80%;
        opacity: 0;
    }
    100% {
        background-size: 100%;
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4em 1em;
    background: url('/assets/img/logo.png') center center no-repeat;
    background-size: 100%;
    background-blend-mode: overlay;
    background-color: #e0e7ff;
    border-radius: 8px;
    min-height: 300px;
    animation: backgroundFadeZoom 1.6s ease-out forwards;
}

.hero h1 {
    font-size: 2rem;
    color: #002b5c;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5em;
    color: #333;
}

.hero .btn {
    background: #0077cc;
    color: #fff;
    padding: 0.8em 1.4em;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hero .btn:hover {
    background-color: #005fa3;
}

/* Seção Quem Somos */
.sobre {
    background: #f9f9f9;
    padding: 2em;
    max-width: 800px;
    margin: 2em auto;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.sobre h2 {
    color: #002b5c;
    margin-bottom: 0.5em;
}

.sobre p {
    font-size: 1.05rem;
    color: #444;
}

/* Cards de Serviços */
.servicos-destaque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
    max-width: 1000px;
    margin: 2em auto;
    padding: 0 1em;
}

.servicos-destaque .card {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.servicos-destaque .card:hover {
    transform: translateY(-5px);
}

.servicos-destaque h3 {
    color: #002b5c;
    margin-bottom: 0.5em;
}

.servicos-destaque p {
    color: #555;
}

/* Formulário de Contato */
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 1em;
}

form label {
    font-weight: bold;
    color: #002b5c;
}

form input, form textarea {
    padding: 0.8em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
}

form button {
    padding: 0.8em;
    background-color: #0077cc;
    color: #fff;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #005fa3;
}

/* Página de Contato com Informações */
.contato-area {
    display: grid;
    gap: 2em;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1000px;
    margin: 2em auto;
    padding: 0 1em;
}

.contato-form, .contato-info {
    background: #f9f9f9;
    padding: 1.8em;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.08);
}

.contato-form h2,
.contato-info h2 {
    color: #002b5c;
    margin-bottom: 0.8em;
}

.contato-info p {
    margin-bottom: 0.6em;
    color: #333;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .contato-area {
        grid-template-columns: 1fr;
    }
}

/* Rodapé */
footer {
    text-align: center;
    background: #002b5c;
    color: white;
    padding: 1.5em 0;
    margin-top: 4em;
    font-size: 0.9rem;
}
.form-group {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.6em;
  margin-bottom: 1em;
  gap: 0.8em;
}

.form-group i {
  color: #0077cc;
  font-size: 1.2em;
  min-width: 20px;
}

.form-group input,
.form-group textarea {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1em;
  font-family: inherit;
  background: transparent;
}

.form-group textarea {
  resize: vertical;
}
.ilustracao-seguranca {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}

.ilustracao-seguranca img {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
  opacity: 0.95;
  transition: transform 0.3s ease;
}

.ilustracao-seguranca img:hover {
  transform: scale(1.05);
}
.servicos-section {
  position: relative;
  background: url('/assets/img/fundo-switch.jpg') center/cover no-repeat;
  padding: 4em 1em;
  color: #fff;
}

.servicos-section .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  background: rgba(0, 43, 92, 0.8);
  border-radius: 8px;
  padding: 2em;
}

.servicos-section h1,
.servicos-section p {
  color: #fff;
}

.servicos-section .servicos-destaque .card {
  background: rgba(255,255,255,0.9);
  color: #002b5c;
}

.servicos-section a.btn {
  background: #0077cc;
  color: #fff;
  display: inline-block;
  padding: 0.8em 1.4em;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 1em;
}

.servicos-section a.btn:hover {
  background: #005fa3;
}
.bg-parallax {
  position: relative;
  height: 420px;
  background: url('/assets/img/fundo-switch.jpg') center/cover no-repeat fixed;
  animation: trocaFundo 10s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* overlay escuro */
  z-index: 1;
}

.bg-parallax .conteudo {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2em;
}

.bg-parallax .conteudo h1 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}

.bg-parallax .conteudo p {
  font-size: 1.1rem;
}

@keyframes trocaFundo {
  0%   { background-image: url('/assets/img/fundo-switch.jpg'); }
  45%  { background-image: url('/assets/img/fundo-switch02.jpg'); }
  55%  { background-image: url('/assets/img/fundo-switch02.jpg'); }
  100% { background-image: url('/assets/img/fundo-switch.jpg'); }
}
.bg-home {
  position: relative;
  height: 420px;
  background: url('/assets/img/fundo-home.jpg') center/cover no-repeat fixed;
  animation: trocaFundoHome 10s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.bg-home .conteudo {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2em;
}

.bg-home .conteudo h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5em;
}

.bg-home .conteudo p {
  font-size: 1.1rem;
}

@keyframes trocaFundoHome {
  0%   { background-image: url('/assets/img/fundo-home.jpg'); }
  45%  { background-image: url('/assets/img/fundo-home02.jpg'); }
  55%  { background-image: url('/assets/img/fundo-home02.jpg'); }
  100% { background-image: url('/assets/img/fundo-home.jpg'); }
}

/* ===== SLIDER MOBILE ===== */
.home-hero-m{ display:none; background:#0d0f14; padding: 6px 0 0; border-bottom:1px solid rgba(255,255,255,.06); }
@media (max-width:768px){
  .home-hero{ display:none !important; }      /* já tinha: some o slider desktop */
  .home-hero-m{ display:block; }
}

.home-hero-m__carousel{
  position:relative;
  width:min(1100px,92vw);
  margin:6px auto 10px;
  aspect-ratio: 16 / 9;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.home-hero-m__slides{ position:relative; width:100%; height:100%; }
.home-hero-m__slide{ position:absolute; inset:0; opacity:0; transition:opacity .45s ease; }
.home-hero-m__slide.is-active{ opacity:1; z-index:1; }
.home-hero-m__slide img{ width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.05); }

.home-hero-m__copy{
  position:absolute; left:0; right:0; bottom:0;
  padding:12px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,12,16,.85) 40%, rgba(10,12,16,.95) 100%);
  color:#eaf0f6;
}
.home-hero-m__copy h3{ margin:0 0 4px; font-size:18px; font-weight:800; letter-spacing:-.02em; }
.home-hero-m__copy p{ margin:0 0 8px; color:#c9d3de; font-size:14px; }
.btn-m{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 12px; border-radius:10px; text-decoration:none;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff; font-weight:700;
}
.btn-m--primary{ background:#22c55e; color:#0a0a0a; border-color:transparent; }

.home-hero-m__dots{
  position:absolute; left:0; right:0; bottom:10px;
  display:flex; gap:8px; justify-content:center; z-index:2;
}
.home-hero-m__dots .dot{
  width:9px; height:9px; border-radius:999px;
  border:1px solid rgba(255,255,255,.6); background:rgba(255,255,255,.2);
}
.home-hero-m__dots .dot.is-active{ background:#ffb300; border-color:#ffb300; }


/* === Mobile Animation (Sora) — bloco validado em 2025-08-12 ===
   Exibe a animação somente em smartphones, centralizada horizontal e verticalmente.
   Inclui ajustes para evitar rolagem lateral, respeitar preferências de movimento reduzido
   e otimizar consumo de dados quando possível.
*/
@media (max-width: 768px) {
  .animacao-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100vw; /* garante largura total da viewport */
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .animacao-mobile video {
    display: block;
    width: 100vw;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    object-fit: contain; /* ou cover se quiser preencher */
  }

  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000; /* evita faixas brancas */
  }
}


/* Acessibilidade: respeita preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .animacao-mobile video {
    animation: none !important;
    transition: none !important;
  }
}

/* Economia de dados: oculta animação se Save-Data estiver ativo (JS precisa setar esta classe no <body>) */
.save-data .animacao-mobile {
  display: none !important;
}
/* === CTA DICAS sobre a animação (mobile) === */
@media (max-width: 768px) {
  .animacao-mobile { position: relative; }
  .animacao-mobile video { pointer-events: none; }

  /* Ícone do botão DICAS */
  :root {
    --cta-icon: url("/assets/img/dicas.png");
  }

  .cta-dicas {
    position: fixed;
    bottom: 4px;                  /* mude para top/right se preferir */
    right: 4px;
    z-index: 18;

    width: 190px;
    height: 190px;
    border-radius: 50%;
    background:
      var(--cta-icon) center/72% no-repeat,
        radial-gradient(circle at 50% 50%, transparent, transparent);

      
      /*radial-gradient(circle at 50% 50%, #ff5858, #ff2f2f); /* fallback cor */
      
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(0,0,0,.35);

    opacity: 0;
    transform: scale(.92);
    transition: opacity .35s ease, transform .25s ease;
    animation: dicas-pulse 1.6s infinite;
  }

  /* Anel de pulso */
  .cta-dicas::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255,47,47,.45);
    animation: dicas-ring 1.6s infinite;
  }

  .cta-dicas.show { opacity: 1; transform: scale(1); }
  .cta-dicas.calm { animation: none; }
  .cta-dicas.calm::after { animation: none; }

  @keyframes dicas-pulse {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.07); }
  }
  @keyframes dicas-ring {
    0%   { box-shadow: 0 0 0 0 rgba(255,47,47,.45); }
    70%  { box-shadow: 0 0 0 14px rgba(255,47,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,47,47,0); }
  }
}

/* Respeita usuários com movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .cta-dicas, .cta-dicas::after {
    animation: none !important;
    transition: none !important;
  }
}
.hero-dicas {
  display:flex; align-items:center; justify-content:center;
  padding: 8px 0; background: #0e1116; /* combine com seu tema */
}
.hero-dicas img {
  max-width:100%; height:auto; border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
@media (max-width: 768px){
  .hero-dicas{ padding: 6px 10px; }
  .hero-dicas img{ border-radius: 12px; }
}
/* só desktop */
@media (min-width: 769px){
  .desktop-only{ display:block; }
}
@media (max-width: 768px){
  .desktop-only{ display:none; }
}

/* Dicas & Dores – Home (desktop) */
.dicas-home{ padding: 32px 16px; }
.dicas-home__head{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  margin-bottom: 16px;
}
.dicas-home__head h2{ font-size:1.6rem; margin:0; }
.dicas-home__head p{ opacity:.8; margin:0; }
.btn-dicas{
  display:inline-block; padding:10px 16px; border-radius:10px;
  background:#2b6fe0; color:#fff; text-decoration:none; font-weight:600;
}

.dicas-home__grid{
  display:grid; gap:16px; grid-template-columns: repeat(3, 1fr);
}
.dica-card{
  background:#0f0f12; border-radius:14px; padding:16px; min-height: 220px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.dica-card h3{ margin:0 0 8px; font-size:1.1rem; }
.dica-card p, .dica-card li{ opacity:.9; }
.dica-card ul{ padding-left:18px; margin:6px 0 10px; }
.card-cta{ display:inline-block; margin-top:8px; font-weight:700; color:#2b6fe0; text-decoration:none; }
.video-pills a{
  display:inline-block; margin:4px 6px 0 0; padding:6px 10px; border-radius:999px;
  background:#1a1a1e; text-decoration:none; color:#fff; font-size:.9rem;
}

/* grade vira 2 e 1 colunas em telas menores (ainda desktop) */
@media (min-width: 769px) and (max-width: 1100px){
  .dicas-home__grid{ grid-template-columns: repeat(2, 1fr); }
}

.pagina-dicas{ padding: 20px 16px; }
.hero-dicas{ text-align:center; margin-bottom: 18px; }
.hero-dicas h1{ margin:0 0 6px; }
.hero-dicas p{ opacity:.85; margin:0; }

.blocos{
  display:grid; gap:14px; grid-template-columns: repeat(3, 1fr); margin-top:12px;
}
.bloco{
  background:#0f0f12; border-radius:14px; padding:14px; box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.bloco h2{ font-size:1.05rem; margin:0 0 6px; }
.bloco p{ opacity:.9; margin:0 0 8px; }
.chips{ display:flex; flex-wrap:wrap; gap:8px; list-style:none; padding:0; margin:0; }
.chips li{ background:#1a1a1e; padding:6px 10px; border-radius:999px; font-size:.9rem; }

.videos{ margin-top: 18px; }
.videos-grid{ display:grid; gap:12px; grid-template-columns: repeat(3, 1fr); }
.video{ display:block; text-decoration:none; color:#fff; }
.video img{ width:100%; height:auto; border-radius:12px; display:block; box-shadow:0 10px 22px rgba(0,0,0,.25); }
.video span{ display:block; margin-top:6px; font-weight:600; }

/* Overlay YouTube */
.yt-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.8);
  display:flex; align-items:center; justify-content:center; z-index:999999;
}
.yt-frame{ position:relative; width:min(90vw, 960px); aspect-ratio:16/9; }
.yt-frame iframe{ width:100%; height:100%; border:0; border-radius:12px; }
.yt-close{
  position:absolute; top:-34px; right:0; width:34px; height:34px; border-radius:50%;
  border:0; background:#2b6fe0; color:#fff; font-size:20px; cursor:pointer;
}

/* responsivo */
@media (max-width: 1024px){
  .blocos, .videos-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .blocos, .videos-grid{ grid-template-columns: 1fr; }
}

/* ====== Menu principal ====== */
nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
}

nav a[href*="dicas"] {
  background: #2b6fe0; /* destaca "Dicas & Dores" */
}

nav a:hover {
  background: #1f56b6; /* cor no hover */
}
/* HERO */
.dicas-hero {
  background: url('/assets/img/bg-tech.jpg') center/cover no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.dicas-hero .overlay {
  background: rgba(0,0,0,0.55);
  padding: 20px;
  border-radius: 12px;
}

/* BLOCO BASE */
.dicas-bloco {
  padding: 60px 20px;
  text-align: center;
}
.dicas-bloco h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* CARDS */
.dicas-bloco .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.dicas-bloco .card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}

/* DORES com bg */
.bloco-dores {
  background: url('/assets/img/bg-dores.jpg') center/cover no-repeat fixed;
  color: #fff;
}
.bloco-dores .card {
  background: rgba(0,0,0,0.65);
  color: #fff;
}

/* CURIOSIDADES com outro bg */
.bloco-curiosidades {
  background: url('/assets/img/bg-curiosidades.jpg') center/cover no-repeat;
  color: #222;
}

/* VÍDEOS */
.bloco-videos .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.bloco-videos iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}
/* ===== HOME HERO CAROUSEL (desktop) ===== */
.home-hero {
  display: block;
  background: #0d0f14;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.home-hero__carousel {
  position: relative;
  width: min(1200px, 92vw);
  margin: 0 auto;
  aspect-ratio: 21 / 9; /* faixa panorâmica */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
}
.home-hero__slides { position: relative; width: 100%; height: 100%; }
.home-hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s ease;
}
.home-hero__slide.is-active { opacity: 1; z-index: 1; }
.home-hero__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.05) contrast(1.05);
}
.home-hero__copy{
  position: absolute; inset: auto 0 0 0;
  padding: clamp(16px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,12,16,.75) 40%, rgba(10,12,16,.95) 100%);
  color: #eaf0f6;
}
.home-hero__copy h2{
  margin: 0 0 6px;
  font-size: clamp(20px, 3.6vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.home-hero__copy h2 span{ color: #ffb300; }
.home-hero__copy p{
  margin: 0 0 12px;
  color: #c9d3de;
  font-size: clamp(14px, 2.2vw, 18px);
}
.home-hero__cta{ display:flex; gap: 10px; flex-wrap: wrap; }
.home-hero .btn{
  --_bg: rgba(255,255,255,.08); --_fg: #fff;
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 16px; border-radius: 12px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.16);
  background: var(--_bg); color: var(--_fg); font-weight: 700;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.home-hero .btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.3); }
.home-hero .btn-primary{ --_bg:#22c55e; --_fg:#0a0a0a; }
.home-hero .btn-ghost{ background: transparent; }

.home-hero__nav{
  position:absolute; top:50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35); color: #fff; font-size: 22px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index: 2;
  transition: background .18s ease, transform .18s ease;
}
.home-hero__nav:hover{ background: rgba(0,0,0,.55); transform: translateY(-50%) scale(1.05); }
.home-hero__nav.prev{ left: 12px; }
.home-hero__nav.next{ right: 12px; }

.home-hero__dots{
  position:absolute; bottom: 12px; left: 0; right: 0;
  display:flex; gap: 8px; justify-content:center; z-index: 2;
}
.home-hero__dots .dot{
  width: 9px; height: 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.2); cursor: pointer;
}
.home-hero__dots .dot.is-active{ background: #ffb300; border-color: #ffb300; }

/* Esconde no mobile (você já usa animação mobile) */
@media (max-width: 768px){
  .home-hero{ display:none; }
}

@media (min-width: 769px){
  .home-hero{ background: #000 !important; }
}

/* ===== Aviso de orientação (mobile) ===== */
.orient-hint{ display:none; }
@media (max-width:768px) and (orientation:portrait){
  .orient-hint{ display:block; padding:8px 0; background:#0d0f14; }
  .orient-card{
    width:min(1100px,92vw); margin:0 auto; padding:10px 12px;
    border:1px solid rgba(255,255,255,.12); border-radius:14px;
    display:flex; align-items:center; gap:10px;
    background: linear-gradient(180deg, rgba(255,179,0,.10), rgba(34,197,94,.08));
    color:#eaf0f6; box-shadow:0 8px 20px rgba(0,0,0,.25);
  }
  .orient-ico{ flex:0 0 auto; opacity:.9; animation: orient-tilt 2.2s ease-in-out infinite; }
  @keyframes orient-tilt{ 0%,100%{ transform:rotate(0deg) } 50%{ transform:rotate(90deg) } }
  .orient-text{ line-height:1.25; }
  .orient-text strong{ display:block; font-size:15px; }
  .orient-text p{ margin:2px 0 0; font-size:13px; color:#c9d3de; }
  .orient-btn{
    margin-left:auto; padding:8px 10px; border-radius:10px; cursor:pointer;
    border:1px solid rgba(255,255,255,.18); background:#22c55e; color:#0a0a0a; font-weight:700;
  }
}
/* Em paisagem (ou desktop), nem mostra o aviso */
@media (orientation:landscape){
  .orient-hint{ display:none !important; }
}

/* Reset global (evita faixa branca no topo do desktop) */
html, body { margin: 0; padding: 0; }

/* Garante que o aviso não ocupe espaço no desktop */
@media (min-width: 769px){
  .orient-hint,
  .animacao-mobile { display: none !important; height: 0 !important; margin: 0 !important; padding: 0 !important; border: 0 !important; }
}

/* Se você adicionou antes um helper tipo .home-hero{ margin-top:8px } remova ou zere: */
.home-hero { margin-top: 0 !important; }

/* Desktop: deixa o entorno do slider preto e zera espaços */
@media (min-width:769px){
  body{ background:#000; }                 /* evita branco quando a margem colapsa com o body */
  .home-hero{
    background:#000 !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    overflow:hidden;                       /* previne faixa branca de margem colapsada */
  }
  header + .home-hero{ margin-top:0 !important; }
}

/* Mobile (se usar o slider mobile) */
@media (max-width:768px){
  .home-hero-m{ background:#000 !important; }
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  header .logo {
    margin-bottom: 10px;
  }

  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  header nav ul li {
    margin: 8px 10px;
  }
}

