/*
 Theme Name: GeneratePress Child
 Theme URI:  https://generatepress.com
 Description: Tema filho do GeneratePress para o projeto Aircooled Global Legends.
 Author: Marcelo
 Author URI: https://aircooledmemory.com
 Template: generatepress
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: generatepress-child
*/

/* ===============================
   THEME GLOBAL
=============================== */
:root {
  --bg: #0a0a0a;
  --surface: #1a1a1a;
  --surface-alt: #222;
  --text: #e0e0e0;
  --muted: #aaa;
  --heading: #fff;
  --accent: #1E6AFF;
  --accent-600: #1754CC;
  --accent-700: #123FA0;
  --highlight: #FFD700;
  --border: #333;
  --footer-bg: #000;
  --footer-text: #888;
  --font-main: "Poppins", system-ui, sans-serif;
}

/* Fundo e tipografia */
html, body {
  
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.5;
  margin: 0;
  padding: 0;
}


.carro-card h3 a:hover {
  color: var(--accent, #1E6AFF) !important;
}

/* Rodapé */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}
.site-footer a { color: var(--accent); }
.site-footer a:hover { color: var(--accent-600); }

/* ===============================
   HOME HERO
=============================== */
.home-hero {
  background: url("<?php echo get_stylesheet_directory_uri(); ?>/assets/hero-cars.png") 
              no-repeat center center;
  background-size: cover; /* cobre toda a largura sem repetir */
}

.home-hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; }
.home-hero p { font-size: 1.2rem; margin-bottom: 20px; }

/* Botão global */
.btn-global {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent, #1E6AFF);
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: background 0.2s ease;
  margin-top:20px;
}
.btn-global:hover {
  background: var(--accent-600, #1754CC);
  color: #fff !important;
}

/* ===============================
   CARDS (Home e Galeria)
=============================== */
.carro-card {
  background: var(--surface);
  border: none;
  border-radius: 12px;
  box-shadow: 6px 6px 14px rgba(0,0,0,0.6),
              -3px -3px 10px rgba(255,255,255,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}
.carro-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 18px rgba(0,0,0,0.7),
              -4px -4px 12px rgba(255,255,255,0.08);
}
.carro-card img.carro-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.carro-info {  text-align: center; }
.carro-info h3 { margin: 0 0 10px; font-size: 1.1rem; color: var(--heading); }
.carro-local {
  font-size: 0.9rem;
  color: #ccc;
  margin: 5px 0;
}
.btn-detalhes {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn-detalhes:hover { background: var(--accent-600); }

/* Grid de cards */
.carros-grid {
  display: grid;
  gap: 20px;
  justify-content: center;
}


/* ===============================
   FILTROS (Galeria)
=============================== */
.filtros {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-left: 15px;
    margin-right: 15px;
}
.filtros-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.filtros input,
.filtros select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.95rem;
}
.filtros input::placeholder { color: #aaa; }
.filtros-acoes {
  display: flex;
  gap: 10px;
  align-items: center;
}
.filtros-acoes button {
  background: #1754CC;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.filtros-acoes button:hover { background: #0e3a91; }
.filtros-acoes a {
  background: #777;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}
.filtros-acoes a:hover { background: #555; }

/* ===============================
   PERFIL (meu-perfil e editar-perfil)
=============================== */
.page-meu-perfil .container,
.page-editar-perfil .container {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 30px auto;
}
.perfil-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: #000;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.perfil-header img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}
.perfil-nome { font-size: 22px; font-weight: 600; margin: 0; }
.perfil-local { font-size: 14px; color: #ccc; }

/* ===============================
   RESPONSIVIDADE
=============================== */
@media (max-width: 768px) {
  .perfil-header { flex-direction: column; text-align: center; }
  .perfil-header img { margin-bottom: 12px; }
  .home-hero { padding: 40px 20px; }
  .home-hero h1 { font-size: 1.5rem; }
  .home-hero p { font-size: 1rem; margin-top: 4px; }
}
/* Sobrescrever o display flex do tema pai */
.site-content {
  display: block !important;
  background: #161616 !important;
  border-radius: 19px !important;
}
/* Só os títulos dos cards em branco */
.carro-card h3 a {
  color: #fff; /* branco dentro do card */
  font-weight: 600;
  text-decoration: none;
}
.carro-card h3 a:hover {
  color: var(--accent-600);
  text-decoration: underline;
}
#page.site {
  margin: -33px auto;
  padding: 0;
  max-width: 100%; /* por enquanto ocupa a tela inteira */
  box-sizing: border-box;
}
.separate-containers .site-main {
 margin-right: 0px;
 Margin-top: 0px;
}
    
/* Hero da Home - aumentar altura da imagem */
.home .home-hero {
  min-height: 90vh;         /* aumenta quase até a tela inteira */
  background-size: cover;   /* cobre toda a área */
  background-position: center; /* centraliza a foto */
}

/* Centralizar horizontal e vertical no hero */
.home .home-hero {
  display: flex;
  align-items: center;   /* centraliza verticalmente */
  justify-content: center; /* centraliza horizontalmente */
  min-height: 90vh;      /* garante altura */
  text-align: center;    /* centraliza textos */
}

.home .home-hero .hero-header {
  max-width: 800px;      /* evita que o texto fique muito largo */
  width: 100%;
 
}
#site-content > section.banner-colaborador {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: var(--surface-dark, #1e1e1e);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);

  min-height: 351px;
  position: relative;
  top: -207px;              /* mantém o efeito de sobreposição */
  margin-bottom: -211px;    /* remove o “vão” fantasma no fluxo */
  z-index: 2;               /* mantém acima do hero */
}


#site-content > section.banner-colaborador > * {
  max-width: 800px;
  width: 100%;
}
#site-content > section.home-carros {
  margin-top:-40px;
  padding-top: 0px;  /* opcional: mantém respiro interno */
}
/* Grid da Home - seção Carros */
#site-content > section.home-carros .carros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Card individual */
#site-content > section.home-carros .carro-card {
  background: var(--surface, #fff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#site-content > section.home-carros .carro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

#site-content > section.home-carros .carro-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
/* Seção Sobre o Projeto alinhada ao grid de carros */
#site-content > section.sobre-projeto {
  max-width: 1200px;   /* igual ao home-carros */
  margin: 0 auto 60px auto;
  padding: 40px 20px;  /* mesmo respiro lateral */
  text-align: center;
}

#site-content > section.sobre-projeto .carros-container {
  width: 100%;
}

/* Container do botão */
#site-content > section.home-carros .ver-todos-container {
  max-width: 1200px;   /* igual ao grid */
  margin: 40px auto 0 auto; /* espaço acima */
  padding: 0 20px;
  text-align: center;  /* centraliza o botão */
}

/* Botão estilizado */
#site-content > section.home-carros .btn-ver-todos {
  display: inline-block;
  background: var(--primary, #1754cc);
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

#site-content > section.home-carros .btn-ver-todos:hover {
  background: #0f3e99;
  transform: translateY(-3px);
}
.home-hero .hero-overlay {
  position: relative;       /* mantém no fluxo da section */
  transform: translateY(-109px); /* <<< sobe o overlay */
}

/* Botão do banner-colaborador */
.banner-colaborador .banner-botao {
  display: inline-block;
  background: var(--primary, #1754cc);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(23,84,204,0.35);
}

.banner-colaborador .banner-botao:hover {
  background: #0f3e99;                  /* tom mais escuro */
  transform: translateY(-3px);          /* leve “lift” */
  box-shadow: 0 6px 16px rgba(23,84,204,0.4);
}
/* === Grid de Carros === */
.carros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* colunas automáticas */
  gap: 24px;                       /* espaço entre cards */
  max-width: 1200px;               /* largura máxima, igual home */
  margin: 0 auto;                  /* centraliza */
  padding: 40px 20px;              /* respiro interno */
}

/* === Card de Carro === */
.carro-card {
  
  flex-direction: column;
}

.carro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}



/* === Info === */
.carro-card .carro-info {
  
  flex-grow: 1; /* empurra o botão pro fim */
}

.carro-card .carro-info h3 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}

.carro-card .carro-info p.carro-local {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 12px 0;
}

/* === Botão Detalhes === */
.carro-card .btn-detalhes {
  display: inline-block;
  background: var(--primary, #1754cc);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carro-card .btn-detalhes:hover {
  background: #0f3e99;
  transform: translateY(-2px);
}
/* Título da galeria */
.galeria-titulo {
  font-size: 2rem;
  margin: 40px 20px 20px 20px; /* respiro em cima e nas laterais */
  text-align: center;          /* opcional: centralizar */
}

/* Container do formulário */
.area-de-filtros {
  max-width: 1200px;   /* alinhado com grid */
  margin: 0 auto 30px auto;
  padding: 0 20px;     /* respiro lateral */
}

/* Campos do form */
.area-de-filtros select,
.area-de-filtros input {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 10px 12px;
  border: none;
}

/* Botões */
.area-de-filtros button {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}
/* Card do carro em formato linha */
.perfil-page .meus-carros .carro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 15px;
  margin: 0 auto 15px auto;
  max-width: 700px; /* mesma largura do cabeçalho */
  gap: 15px;
}

/* Thumb menor */
.perfil-page .meus-carros .carro-card .carro-thumb img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

/* Info do carro no meio */
.perfil-page .meus-carros .carro-card .carro-info {
  flex: 1;
}

.perfil-page .meus-carros .carro-card .carro-info h3 {
  font-size: 16px;
  margin: 0 0 4px 0;
}

.perfil-page .meus-carros .carro-card .carro-info .status {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Ações alinhadas à direita */
.perfil-page .meus-carros .carro-card .acoes {
  display: flex;
  gap: 10px;
}

.perfil-page .meus-carros .carro-card .acoes a,
.perfil-page .meus-carros .carro-card .acoes span {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  color: var(--heading);
  text-decoration: none;
  transition: background 0.3s;
}

.perfil-page .meus-carros .carro-card .acoes a:hover {
  background: var(--primary);
  color: #fff;
}
/* Container geral do perfil */
.perfil-page .perfil-container {
  max-width: 700px;  /* largura centralizada */
  margin: 40px auto; /* centraliza */
}

/* Cabeçalho do perfil */
.perfil-page .perfil-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

/* Card do carro no estilo linha 
.perfil-page .meus-carros .carro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 15px;
  margin-bottom: 15px;
  gap: 15px;
}*/

/* Thumb menor */
.perfil-page .meus-carros .carro-card .carro-thumb img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

/* Info no meio */
.perfil-page .meus-carros .carro-card .carro-info {
  flex: 1;
}

.perfil-page .meus-carros .carro-card .carro-info h3 {
  font-size: 16px;
  margin: 0 0 4px 0;
}

.perfil-page .meus-carros .carro-card .carro-info .status {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Ações à direita */
.perfil-page .meus-carros .carro-card .acoes {
  display: flex;
  gap: 10px;
}

.perfil-page .meus-carros .carro-card .acoes a,
.perfil-page .meus-carros .carro-card .acoes span {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  color: var(--heading);
  text-decoration: none;
  transition: background 0.3s;
}

.perfil-page .meus-carros .carro-card .acoes a:hover {
  background: var(--primary);
  color: #fff;
}
/* Thumb compacta só para o perfil */
.perfil-page .meus-carros .perfil-carro-thumb img {
  object-fit: cover;
  border-radius: 6px;
}
/* Card do perfil em linha 
.perfil-page .meus-carros .carro-card {
  display: flex;
  align-items: center;       /* alinha verticalmente 
  

*/
/* Thumb sempre na esquerda */
.perfil-page .meus-carros .perfil-carro-thumb {
  flex-shrink: 0;            /* não deixa encolher */
  margin: 0;                 /* remove margens extras */
}
/* Margem lateral global só no Perfil */
.perfil-page .perfil-container {
  max-width: 800px;   /* largura máxima controlada */
  margin: 0 auto;     /* centraliza no meio da tela */
  padding: 0 20px;    /* respiro lateral interno */
}/* Espaço acima do cabeçalho do perfil */
.perfil-page .perfil-header {
  margin-top: 30px; /* ajuste fino, pode testar 20px ou 40px */
}
.titulo-meus-carros {
  font-size: 20px;   /* menor */
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Container */
.editar-perfil-container {
  max-width: 700px;
  margin: 40px auto;
  background: var(--surface);
  padding: 20px;
  border-radius: 10px;
  color: var(--text);
}

/* Título */
.titulo-editar-perfil {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

/* Campos */
.editar-perfil-form {
  display: grid;
  gap: 14px;
}

.editar-perfil-form .campo label {
  font-weight: bold;
  margin-bottom: 6px;
  display: block;
}

.editar-perfil-form .campo input[type="text"],
.editar-perfil-form .campo input[type="password"],
.editar-perfil-form .campo input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #111;
  color: #fff;
}

/* Foto preview */
.foto-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px 0;
}

/* Botão salvar */
.btn-salvar {
  padding: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-salvar:hover {
  background: #0f3a91;
}

/* Voltar */
.btn-voltar {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* Mensagem sucesso */
.alert-sucesso {
  background: #d4edda;
  color: #155724;
  padding: 12px;
  border-radius: 6px;
  margin: 20px 0;
}
/* === Grid dos carros no Perfil === */
.meus-carros {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas no desktop */
  gap: 20px; /* espaçamento entre cards */
  margin-top: 20px;
}

/* Cards ajustados */
.perfil-carro-card {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.2s ease;
}

.perfil-carro-card:hover {
  transform: translateY(-3px);
}

/* Responsivo: só 1 coluna no mobile */
@media (max-width: 768px) {
  .meus-carros {
    grid-template-columns: 1fr; /* apenas 1 card por linha */
  }
}
/* 🎨 Estilo exclusivo - Editar Carro */
.page-template-editar-carro .editar-carro-page {
  display: flex;
  justify-content: center;
  padding: 30px 15px;
}

.page-template-editar-carro .editar-carro-container {
  width: 100%;
  max-width: 700px; /* largura centralizada */
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Títulos */
.page-template-editar-carro h2,
.page-template-editar-carro h3 {
  margin-bottom: 15px;
  font-weight: 600;
 
}

/* Labels */
.page-template-editar-carro form label {
  font-weight: 500;
  margin-bottom: -03px;
  display: block;
  color: #444;
}

/* Inputs e Textareas */
.page-template-editar-carro form input[type="text"],
.page-template-editar-carro form input[type="url"],
.page-template-editar-carro form input[type="file"],
.page-template-editar-carro form input[type="password"],
.page-template-editar-carro form textarea,
.page-template-editar-carro form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
 
  transition: border-color 0.2s ease;
}

.page-template-editar-carro form input:focus,
.page-template-editar-carro form textarea:focus {
  border-color: #1754CC;
  outline: none;
}

/* Botão principal */
.page-template-editar-carro form button[type="submit"] {
  padding: 12px 20px;
  background: #1754CC;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.page-template-editar-carro form button[type="submit"]:hover {
  background: #0f3b94;
}

/* Link voltar */
.page-template-editar-carro .editar-carro-container a {
  text-decoration: none;
  color: #1754CC;
  font-size: 14px;
}

/* Fotos existentes */
.page-template-editar-carro .fotos-existentes img {
  border: 2px solid #eee;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.page-template-editar-carro .fotos-existentes img:hover {
  transform: scale(1.05);
}
/* Força fundo dark na página de edição */
.editar-carro-page {
  background: #121212 !important;
  min-height: 100vh;
  padding: 40px 20px;
  color: #eaeaea !important;
}

/* Container central */
.editar-carro-container {
  max-width: 900px;
  margin: 0 auto;
  background: #1e1e1e !important;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

/* Labels */
.editar-carro-container label {
  font-weight: 600;
  color: #ddd !important;
  margin-bottom: 4px;
  display: block;
}

/* Inputs, textareas e file */
.editar-carro-container input[type="text"],
.editar-carro-container input[type="url"],
.editar-carro-container input[type="file"],
.editar-carro-container textarea {
  width: 100%;
  background: #2a2a2a !important;
  color: #f1f1f1 !important;
  border: 1px solid #444 !important;
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
  transition: border 0.2s, background 0.2s;
}
.editar-carro-container input:focus,
.editar-carro-container textarea:focus {
  border-color: #00b4d8 !important;
  background: #333 !important;
  outline: none;
  color: #fff !important;
}

/* Botão salvar */
.editar-carro-container button[type="submit"] {
  background: linear-gradient(135deg, #1754CC, #00b4d8) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.editar-carro-container button[type="submit"]:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Texto dentro dos campos (placeholder) */
.editar-carro-container input::placeholder,
.editar-carro-container textarea::placeholder {
  color: #aaa !important;
}

/* Fotos */
.foto-item {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  background: #2a2a2a;
}
.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foto-item .btn-x {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(217, 4, 41, 0.9);
  color: #fff;
  font-size: 14px;
  padding: 3px 7px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
}
/* Galeria de fotos no editar-carro */
.fotos-existentes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

@media (max-width: 480px) {
  .fotos-existentes {
    grid-template-columns: 1fr 1fr; /* força 2 colunas no mobile */
    gap: 8px;
  }
  .foto-item {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1; /* mantém quadradinho */
  }
}
/* ================================
   Estilos isolados para Editar Carro
   ================================ */
.editar-carro-page .fotos-existentes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.editar-carro-page .foto-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Mantém quadrado */
}

.editar-carro-page .foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Botão X de remover */
.editar-carro-page .foto-item .btn-x {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #d90429;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  cursor: pointer;
  user-select: none;
}

/* Layout mobile */
@media (max-width: 480px) {
  .editar-carro-page .fotos-existentes {
    grid-template-columns: 1fr 1fr; /* sempre 2 colunas fixas */
    gap: 8px;
  }
}
.editar-carro-page .fotos-existentes {
  display: grid !important; /* força grid, não deixa flex tomar conta */
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
@media (max-width: 480px) {
  .editar-carro-page .fotos-existentes {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
}
/* ===== Páginas de Pagamento Placa ===== */
.page-id-XXX .entry-content, 
.page-id-YYY .entry-content, 
.page-id-ZZZ .entry-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.page-id-XXX .entry-content > div,
.page-id-YYY .entry-content > div,
.page-id-ZZZ .entry-content > div {
    background: #111;
    color: #eee;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    max-width: 800px;
}
/* ===========================
   Páginas de Pagamento (Sucesso / Pendente / Falhou)
   Dark elegante
=========================== */

.pagamento-container {
  max-width: 640px;
  margin: 60px auto;
  background: #111; /* fundo dark */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  color: #eee;
  font-family: "Poppins", sans-serif;
}

.pagamento-container h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.pagamento-container p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ccc;
}

/* Botão */
.pagamento-container .btn-voltar {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Diferenciação por status */
.pagamento-sucesso h2 { color: #4caf50; }  /* Verde */
.pagamento-sucesso .btn-voltar {
  background: #1754CC;
  color: #fff;
}
.pagamento-sucesso .btn-voltar:hover {
  background: #0f3a90;
}

.pagamento-pendente h2 { color: #ffa726; }  /* Laranja */
.pagamento-pendente .btn-voltar {
  background: #555;
  color: #fff;
}
.pagamento-pendente .btn-voltar:hover {
  background: #333;
}

.pagamento-falhou h2 { color: #f44336; }  /* Vermelho */
.pagamento-falhou .btn-voltar {
  background: #444;
  color: #fff;
}
.pagamento-falhou .btn-voltar:hover {
  background: #222;
}
/* ================================
   Estilo Dark Elegante
   Página: Cadastrar Carro
   ================================ */

body.page-template-page-cadastrar-carro {
  background: #121212;
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
}

/* Container principal */
body.page-template-page-cadastrar-carro .container {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

/* Títulos */
body.page-template-page-cadastrar-carro h1,
body.page-template-page-cadastrar-carro h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

body.page-template-page-cadastrar-carro h3 {
  border-bottom: 1px solid #333;
  padding-bottom: 6px;
  font-size: 1.1rem;
  text-align: left;
}

/* Aviso importante */
body.page-template-page-cadastrar-carro .container > div[style*="background:#fff3cd"] {
  background: #2b2b2b !important;
  border: 1px solid #444 !important;
  color: #ffd75e !important;
}

/* Steps */
body.page-template-page-cadastrar-carro .step {
  background: #2a2a2a;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Inputs */
body.page-template-page-cadastrar-carro input[type="text"],
body.page-template-page-cadastrar-carro input[type="email"],
body.page-template-page-cadastrar-carro input[type="password"],
body.page-template-page-cadastrar-carro select,
body.page-template-page-cadastrar-carro input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #1a1a1a;
  color: #f5f5f5;
  font-size: 15px;
  margin-top: 8px;
  transition: all 0.2s ease;
}

body.page-template-page-cadastrar-carro input:focus,
body.page-template-page-cadastrar-carro select:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 0 2px rgba(13,110,253,0.25);
}

/* Labels */
body.page-template-page-cadastrar-carro label {
  color: #ddd;
  font-size: 14px;
}

/* Botões padrão */
body.page-template-page-cadastrar-carro .toggle-btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

/* Botão Próximo */
body.page-template-page-cadastrar-carro .btn-next {
  background: #0d6efd;
  color: #fff;
}

body.page-template-page-cadastrar-carro .btn-next:hover {
  background: #0b5ed7;
}

/* Botão Voltar */
body.page-template-page-cadastrar-carro .btn-back {
  background: #444;
  color: #ddd;
  margin-top: 10px;
}

body.page-template-page-cadastrar-carro .btn-back:hover {
  background: #555;
}

/* Botão Submit */
body.page-template-page-cadastrar-carro button[type="submit"] {
  background: #198754 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px;
  padding: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

body.page-template-page-cadastrar-carro button[type="submit"]:hover {
  background: #157347 !important;
}

/* Premium Box */
body.page-template-page-cadastrar-carro .premium-box {
  background: #262626;
  border: 1px solid #444;
}

body.page-template-page-cadastrar-carro .premium-list {
  list-style: "✨ ";
  padding-left: 20px;
  margin-bottom: 12px;
  color: #ccc;
}

body.page-template-page-cadastrar-carro .btn-premium {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(90deg, #ffd700, #ffae00);
  color: #111;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.2s;
}

body.page-template-page-cadastrar-carro .btn-premium:hover {
  filter: brightness(1.1);
}

body.page-template-page-cadastrar-carro .hint {
  font-size: 13px;
  color: #aaa;
  margin-top: 6px;
}
@media (max-width: 480px) {
  body.page-template-page-cadastrar-carro .drawer.open {
    max-height: none !important;   /* sem limite de altura */
    height: auto !important;       /* deixa altura se ajustar ao conteúdo */
    overflow: visible !important;  /* permite rolagem normal */
  }
}
body.page-template-page-cadastrar-carro .form-separator {
  text-align: center;
  border-bottom: 1px solid #444;
  line-height: 0.1em;
  margin: 43px 0 13px;
}
body.page-template-page-cadastrar-carro .form-separator span {
  background: #1e1e1e;
  padding: 0 15px;
  color: #bbb;
  font-size: 14px;
  text-transform: uppercase;
}
body.page-template-page-cadastrar-carro .form-separator {
  margin: 60px 0 30px;
}
body.page-template-page-cadastrar-carro .step button[type="submit"]:hover {
  filter: brightness(1.1);
}
/* Hint elegante no card Supporting Member */
body.page-template-page-cadastrar-carro .premium-box .hint {
  margin-top: 16px;
  font-size: 14px;
  font-style: italic;
  color: #bbb;
  text-align: center;
  line-height: 1.5;
}
/* Centralizar texto dos botões */
body.page-template-page-cadastrar-carro .btn-premium,
body.page-template-page-cadastrar-carro button[type="submit"],
body.page-template-page-cadastrar-carro .toggle-btn {
  text-align: center;
  display: inline-block;
  width: 100%; /* garante ocupação cheia */
}
background-image:
  radial-gradient(circle at center, rgba(255,255,255,0.15), rgba(0,0,0,0.8)),
  url('assets/bg-placa.png');
/* ==========================
   Ajuste Responsivo – Plate-ID
   ========================== */
@media (max-width: 420px) {
  .placa-container {
    transform: scale(0.88) !important;
    transform-origin: top center !important;
  }

  /* Tamanhos de texto */
  .placa-proprietario,
  .placa-cor {
    font-size: 13px !important;
  }

  .placa-ano.prefixo,
  .placa-ano.sufixo {
    font-size: 60px !important;
  }

  .placa-modelo {
    font-size: 24px !important;
  }

  .placa-local,
  .placa-id {
    font-size: 10px !important;
  }

  /* QR proporcional */
  .placa-qr {
    width: 28% !important;
  }
}

@media (max-width: 360px) {
  .placa-container {
    transform: scale(0.80) !important;
  }

  .placa-proprietario,
  .placa-cor {
    font-size: 12px !important;
  }

  .placa-ano.prefixo,
  .placa-ano.sufixo {
    font-size: 48px !important;
  }

  .placa-modelo {
    font-size: 20px !important;
  }

  .placa-local,
  .placa-id {
    font-size: 9px !important;
  }

 /*
.placa-qr {
    width: 28% !important;
}
*/
}
/* =========================================
   Botão "Tornar Premium" — Estilo Padrão Azul
   (modo teste — será movido pro style.css depois)
   ========================================= */
a.premium {
    display: inline-block;
    background-color: #1754cc !important;      /* azul padrão ACM */
    color: #fff;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(23, 84, 204, 0.3);
}

a.premium:hover {
    background-color: #1e6aff;     /* azul mais vibrante no hover */
    box-shadow: 0 3px 10px rgba(30, 106, 255, 0.4);
    transform: translateY(-1px);
}

a.premium:active {
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(23, 84, 204, 0.2);
}
.selo-premium .selo-img {
    height: 128px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
    transition: transform 0.2s ease;
    margin-top: -49px;
    margin-bottom: -48px;
}

/* 🔧 Correção final — selo como imagem pura, sem borda, sem fundo */
.selo-premium {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: default !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.selo-premium .selo-img {
    height: 129px !important;  /* tamanho exato aprovado */
    width: auto !important;
    display: inline-block !important;
    vertical-align: middle !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)) !important;
    transition: transform 0.2s ease !important;
}

.selo-premium .selo-img:hover {
    transform: scale(1.03) !important;
}
/* Contêiner geral: garante posição relativa */
.site-header, header, .main-header {
  position: relative;
}

/* Move a saudação pro canto superior direito */
.user-greeting {
  position: absolute;
  top: -32px;         /* ajusta a altura acima do menu */
  right: 0;
  list-style: none;
}

/* Aparência do link principal */
.user-greeting > a {
  color: #36d436;      /* verde check */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Efeito hover */
.user-greeting > a:hover {
  color: #5cff5c;
}

/* Submenu (abre abaixo do texto) */
.user-greeting .sub-menu {
  position: absolute;
  right: 0;
  background: #111;
  padding: 8px 0;
  border-radius: 6px;
  display: none;
  list-style: none;
  min-width: 160px;
  text-align: right;
  z-index: 999;
}

.user-greeting:hover .sub-menu {
  display: block;
}

.user-greeting .sub-menu a {
  color: #fff;
  padding: 6px 12px;
  display: block;
}

.user-greeting .sub-menu a:hover {
  background: #222;
}
/* --- Ajuste geral do menu principal --- */
.main-navigation, 
.nav-primary, 
#site-navigation, 
nav[role="navigation"] {
  display: flex;
  justify-content: flex-end; /* cola o menu à direita */
  align-items: center;
}

/* --- O item de saudação (Olá, Fulano) fica posicionado no canto superior direito --- */
.user-greeting {
  position: absolute;
  top: -34px; /* ajuste vertical para o topo do header */
  right: 0;
  list-style: none;
  z-index: 999;
}

/* Link principal da saudação */
.user-greeting > a {
  color: #5cff5c;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Submenu flutuante */
.user-greeting .sub-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: #111;
  padding: 8px 0;
  border-radius: 6px;
  display: none;
  list-style: none;
  min-width: 160px;
  text-align: right;
}

.user-greeting:hover .sub-menu {
  display: block;
}

.user-greeting .sub-menu a {
  color: #fff;
  padding: 6px 12px;
  display: block;
  text-decoration: none;
}

.user-greeting .sub-menu a:hover {
  background: #222;
}
/* ===== Faixa superior de usuário ===== */
.agl-userbar {
  background: #0a0a0a;
  color: #5cff5c;
  text-align: right;
  padding: 6px 12px;
  font-size: 15px;
  position: relative;
  z-index: 9999;
}

/* Contêiner interno */
.agl-userbar-inner {
  position: relative;
  display: inline-block;
}

/* Link principal (Olá Fulano) */
.agl-userbar-toggle {
  color: #5cff5c;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Menu suspenso */
.agl-userbar-menu {
  display: none;
  position: absolute;
  right: 0;
  background: #111;
  border-radius: 6px;
  margin-top: 4px;
  text-align: right;
  min-width: 160px;
}

.agl-userbar-menu a {
  display: block;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
}

.agl-userbar-menu a:hover {
  background: #222;
}

/* Hover abre o menu (desktop) */
.agl-userbar-inner:hover .agl-userbar-menu {
  display: block;
}

/* Mobile: sempre visível acima do menu */
@media (max-width: 768px) {
  .agl-userbar {
    text-align: center;
    font-size: 16px;
    padding: 10px;
  }
}

/* === Cards de carros (Home + Galeria) === */
.carros-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;      /* Centraliza mesmo com número ímpar */
  gap: 30px;                    /* Espaço entre os cards */
  margin: 40px auto;
  max-width: 1200px;            /* Limita o grid e mantém harmonia */
}

.carro-card {
  background: #0e0e0e;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  max-width: 320px;
  width: 100%;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.carro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}

/* Moldura interna da imagem */
.carro-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  padding: 8px;
  background: #111;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Texto */
.carro-info {
  padding: 12px;
  text-align: center;
}

.carro-info h3 a {
  color: #fff;
  text-decoration: none;
}

.carro-local {
  color: #ccc;
  font-size: .9rem;
  margin: 4px 0 0;
}

.btn-detalhes {
  display: inline-block;
  margin-top: 10px;
  background: #1754cc;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}

.btn-detalhes:hover {
  background: #1f6fff;
}

/* ====== Venda: container isolado ====== */
.venda-card{
  margin-top:30px;
  padding:18px;
  background:#0c0c0c;
  border:1px solid #333;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.35);
}
.venda-card h3{
  margin:0 0 6px 0;
}
.venda-card p.sub{
  font-size:13px;color:#aaa;margin:0 0 12px 0;
}

/* Campos empilhados para evitar “sobrepor” label vs input */
.venda-grid{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.venda-campo label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
}
.venda-campo select,
.venda-campo input,
.venda-campo textarea{
  width:100%;
  padding:10px;
  border-radius:8px;
  background:#151515;
  color:#fff;
  border:1px solid #333;
}

/* Botão local da área de venda */
.btn-salvar-venda{
  padding:12px 14px;
  background:#1754CC;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:700;
  cursor:pointer;
  margin-top:6px;
}

/* Utilitária já usada */
.is-hidden{ display:none !important; }

.contador-geral {
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

.contador-geral h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contador-numero {
  font-size: 46px;
  font-weight: 800;
  color: #ffb400;
  margin: 6px 0 12px;
}

.contador-link {
  font-size: 15px;
  color: #bbb;
  text-decoration: none;
}

.contador-link:hover {
  color: #fff;
  text-decoration: underline;
}
.carros-container: {
    margin-top:200px;
}    
/* ==========================================
   🔧 Correção geral de camadas (z-index)
   AirCooledMemory – Barrinha do usuário + menu + mapa
========================================== */

/* Barrinha superior sempre acima de tudo */
.agl-userbar {
  position: relative !important;
  z-index: 10020 !important;
}

/* Menu dropdown da barrinha */
.agl-userbar-menu {
  position: absolute !important;
  z-index: 10021 !important;
  top: 100%;
  right: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  padding: 8px 0;
}

/* Cabeçalho e hambúrguer (menu principal) */
.site-header,
.header,
.main-header {
  position: relative !important;
  z-index: 10010 !important;
}

/* Hero e mapa Leaflet abaixo do menu */
.home-hero,
#mapa-carro,
.leaflet-container {
  position: relative !important;
  z-index: 1 !important;
}
/* 🏅 Ajuste do selo AACM */
.carro-card a img[alt="AACM"] {
  height: 50px !important;
  width: auto;
  background: transparent !important;
  border-radius: 50px;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
}
/* ============================================
   🔧 Correção definitiva — fotos grandes com enquadramento idêntico às thumbs
   AirCooled Memory – Novembro 2025
   ============================================ */
.slick-carousel .slick-slide {
                 /* define o quadro fixo */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #000 !important;
  overflow: hidden !important;
}

.slick-carousel .slick-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;            /* mesmo comportamento das thumbs */
  object-position: center center !important;
  display: block !important;
  border-radius: 8px !important;
}
/* ============================================
   📸 Correção de proporção – imagem grande idêntica às thumbs
   ============================================ */
.slick-carousel {
  width: 100% !important;
  aspect-ratio: 5 / 3 !important; /* mesmo formato das thumbs */
  background: #000 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.slick-carousel .slick-slide {
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.slick-carousel .slick-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 8px !important;
  display: block !important;
}
.bloco-curtidas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  margin-right:22px;
}
.curtir-btn {
  background: none;
  border: none;
  color: #ff4a4a;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.curtir-btn:hover {
  transform: scale(1.1);
}
.header-dados-carro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  margin-bottom: -17px;
}

.header-dados-carro h2 {
  color: #fff;
  margin: 0;
  font-size: 22px;
}

.bloco-curtidas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.curtir-btn {
  background: none;
  border: none;
  color: #ff4a4a;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.curtir-btn:hover {
  transform: scale(1.1);
}

#contador-curtidas {
  color: #fff;
  font-size: 16px;
}
.popup-visitante {
  display: none; /* oculto por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-conteudo {
  background: #111;
  padding: 25px 30px;
  border-radius: 12px;
  color: #fff;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.popup-conteudo h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #ff4a4a;
}

.popup-conteudo p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

.popup-conteudo input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #222;
  color: #fff;
}

.popup-conteudo button {
  width: 100%;
  padding: 10px;
  background: #ff4a4a;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.popup-fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.popup-login a {
  color: #ff4a4a;
  text-decoration: none;
}
/* Estilo base do popup */
.popup-visitante {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-conteudo {
  background: #111;
  padding: 25px 30px;
  border-radius: 12px;
  color: #fff;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.popup-conteudo.cadastro-ativo {
  background: #18122B;
  box-shadow: 0 0 25px rgba(255, 74, 74, 0.3);
}

.popup-conteudo h3 {
  margin: 0 0 10px;
  color: #ff4a4a;
}

.popup-conteudo p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.popup-conteudo input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #fff;
  color: #000;
}

.popup-conteudo button {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 5px;
}

#botao-principal {
  background: #ff4a4a;
  color: #fff;
  border: none;
}

#botao-principal:hover {
  background: #ff6666;
}

.botao-secundario {
  background: transparent;
  border: 1px solid #ff4a4a;
  color: #ff4a4a;
}

.botao-secundario:hover {
  background: #ff4a4a;
  color: #fff;
}

.popup-fechar {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.mensagem-extra {
  font-size: 13px;
  margin-top: 8px;
  color: #aaa;
}
/* ==========================================================
   🎨 CSS MODELO MUSEU 1 – AirCooled Memory.Com
   ----------------------------------------------------------
   Objetivo: dar aparência de acervo / galeria curada,
   sem alterar proporções ou estrutura. Mantém fotos
   originais, adiciona moldura, sombra e leve destaque
   no hover. Pode ser removido integralmente sem impacto.
   ========================================================== */

.carro-card {
  background: #0b0b0b !important;          /* Fundo mais neutro, tipo parede de museu */
  border: 1px solid #1a1a1a !important;    /* Moldura sutil e refinada */
  border-radius: 10px !important;          /* Mantém arredondamento coerente */
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.65) !important; /* Profundidade suave */
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.carro-card:hover {
  transform: translateY(-6px) !important;  /* Elevação leve ao passar o mouse */
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.08) !important; /* brilho sutil */
  border-color: #333 !important;           /* pequeno realce da moldura */
}

/* Moldura específica das imagens dentro dos cards */
.carro-card img {
  border: 4px solid #111 !important;       /* Moldura interna escura */
  border-radius: 6px !important;
  background: #000 !important;             /* Fundo neutro para fotos verticais */
  object-fit: contain !important;          /* Mantém proporção da foto */
  padding: 2px !important;                 /* Espaço para a moldura respirar */
  transition: filter 0.3s ease !important;
}

.carro-card img:hover {
  filter: brightness(1.08) contrast(1.05) !important; /* realce leve */
}

/* Título e textos – contraste suave tipo museu */
.carro-info h3 a {
  color: #f1f1f1 !important;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6) !important;
}

.carro-info p {
  color: #ccc !important;
}

/* Botão – aparência mais sóbria e elegante */
.carro-card .btn-detalhes {
  background: linear-gradient(180deg, #1754cc 0%, #0f3a8e 100%) !important;
  box-shadow: 0 2px 10px rgba(23, 84, 204, 0.3) !important;
  border: none !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

.carro-card .btn-detalhes:hover {
  background: linear-gradient(180deg, #1e62f2 0%, #103c91 100%) !important;
  box-shadow: 0 0 16px rgba(23, 84, 204, 0.5) !important;
}


/* ==========================================================
   🎞️ MODO MUSEU REAL – AirCooled Memory.Com
   ----------------------------------------------------------
   Imagens exibidas exatamente como enviadas (sem corte, sem zoom)
   Altura fixa: 769px desktop / 340px mobile
   Moldura, fundo preto e proporção original.
   ========================================================== */

.slick-carousel {
  width: 100% !important;
  height: 769px !important; /* altura fixa padrão desktop */
  overflow: hidden !important;
  border-radius: 10px !important;
  border: 1px solid #1a1a1a !important;
  background: #000 !important;
  box-shadow: 0 0 18px rgba(0,0,0,0.65) !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.slick-carousel .slick-list,
.slick-carousel .slick-track {
  height: 100% !important;
}

.slick-carousel .slick-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
 
  background: #000 !important;
}

/* 🖼️ Foto do carro: nunca corta, nunca dá zoom */

 
  max-width: 100% !important;
 
}

/* Miniaturas */
.slick-thumbs {
  margin-top: 15px !important;
  text-align: center !important;
}
.slick-thumbs img {
  width: 100px !important;
  height:100px !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  opacity: 0.8 !important;
  transition: opacity 0.3s ease !important;
}
.slick-thumbs img:hover {
  opacity: 1 !important;
}

/* Navegação */
.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.slick-prev:hover, .slick-next:hover { background: #1754CC; }
.slick-prev:after { content: "◂"; color: #fff; font-size: 22px; }
.slick-next:after { content: "▸"; color: #fff; font-size: 22px; }
.slick-prev { left: 10px; }
.slick-next { right: 10px; }

/* Responsivo */
@media (max-width: 768px) {
  .slick-carousel {
    height: 340px !important;
  }
  
}
/* ================================
   Ajuste responsivo – Thumbs do carrossel
   (Single Carros)
   ================================ */

/* Desktop mantém igual */
.slick-thumbs img {
  height: 70px;      /* tamanho atual */
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #222;
  cursor: pointer;
}

/* Mobile: thumbs menores */
@media (max-width: 600px) {
  .slick-thumbs img {
    height: 48px;     /* reduzido ~30% */
    border-radius: 4px;
  }
}

/* Remove setas em telas muito pequenas */
@media (max-width: 500px) {
  .slick-prev, .slick-next {
    display: none !important;
  }
}

/* ================================
   RESPONSIVO – Mobile First
   ================================ */
@media (max-width: 768px) {
  .slick-carousel {
    height: 340px !important; /* altura fixa mobile */
  }
  .slick-carousel img {
    height: 100% !important;
    object-fit: cover !important; /* mantém consistência no mobile */
    object-position: center !important;
  }
  .slick-thumbs img {
    width: 72px !important;
    height: 72px !important;
  }
}
/* ================================
   BLOCO VISUAL – CONTAINER SINGLE (modo museu)
   ================================ */
.container {

  padding: 17px 7px !important;             /* Respiro interno */
  
  max-width: 820px !important;              /* Mantém proporção */
  transition: box-shadow 0.4s ease;
}

/* Leve flutuação ao passar o mouse — só no desktop */
@media (hover: hover) {
  .container:hover {
    box-shadow:
      0 0 32px rgba(0, 0, 0, 0.8),
      0 0 12px rgba(255, 255, 255, 0.07);
  }
}
#masthead {
    border-bottom: 10px solid #ffee00 !important;
}
.banner-colaborador,
.banner-colaborador * {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}
.banner-colaborador p {
    font-size: 15px;
    line-height: 1.6;
}
button.menu-toggle .gp-icon svg {
    width: 36px !important;
    height: 36px !important;
    fill: #ffee00 !important;
    color: #ffee00 !important;
    top: 1.0em !important;
;
}
.acm-compartilhar-inner {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.acm-compartilhar-titulo h3 {
    margin: 0 !important;
    font-size: 16px;
    font-weight: 600;
}
@media (min-width: 768px) {
    .home-hero {
        padding-top: 40px !important;
    }
}