/* Reset básico */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* Container principal */
.container {
  display: flex;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
  padding: 0 1rem;
}

/* Sidebar */
.sidebar {
  flex: 0 0 280px;
  background: #1e1e1e;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.7);
  height: fit-content;
}

.sidebar h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffaa00;
}

.search-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.search-box input[type="text"] {
  flex-grow: 1;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 4px;
  background: #2a2a2a;
  color: #eee;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.search-box input[type="text"]:focus {
  background-color: #3b3b3b;
  outline: none;
}

.search-btn {
  background: #ffaa00;
  border: none;
  padding: 0 1rem;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  color: #121212;
  font-weight: 700;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background: #ffbf33;
}

.sidebar-list,
.quick-tips {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.sidebar-list li,
.quick-tips li {
  margin-bottom: 0.6rem;
}

.sidebar-list a,
.quick-tips a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-list a:hover,
.quick-tips a:hover {
  color: #ffaa00;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 1.5rem 0;
}

/* Conteúdo principal */
.main {
  flex: 1;
  background: #1f1f1f;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.7);
  min-width: 0;
}

.intro-section h2 {
  color: #ffaa00;
  margin-top: 0;
}

.intro-section p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #ccc;
}

/* Destaques */
.destaques {
  margin-top: 2rem;
}

.destaques h2 {
  color: #ffcc33;
  border-bottom: 2px solid #ffcc33;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

.guia-card {
  background: #2b2b2b;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.4);
  transition: background-color 0.3s;
}

.guia-card:hover {
  background-color: #3c3c3c;
}

.guia-card h3 {
  margin: 0 0 0.5rem 0;
}

.guia-card h3 a {
  color: #ffd966;
  text-decoration: none;
  font-weight: 600;
}

.guia-card h3 a:hover {
  text-decoration: underline;
}

.guia-card p {
  margin: 0;
  color: #ddd;
}

/* Result box */
.result-box h2 {
  color: #ffaa00;
  margin-top: 2rem;
}

/* Grid de guias */
.guias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

/* Cards individuais */
.guia-card-grid {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guia-card-grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(255, 170, 0, 0.6);
}

.guia-thumbnail {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 0.75rem;
  object-fit: cover;
  height: 160px;
}

/* Título com ícone */
.guia-card-grid h2 {
  font-size: 1.2rem;
  margin: 0 0 0.3rem 0;
}

.guia-card-grid h2 a {
  color: #ffd966;
  text-decoration: none;
  font-weight: 700;
}

.guia-card-grid h2 a:hover {
  text-decoration: underline;
}

/* Meta categoria */
.guia-meta {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #bbb;
}

/* Tags */
.guia-tags-wrapper {
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}

.guia-tags {
  background: #444;
  color: #eee;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  user-select: none;
  transition: background-color 0.3s;
}

.guia-tags:hover {
  background-color: #ffaa00;
  color: #222;
}

/* Texto resumo */
.guia-card-grid p {
  flex-grow: 1;
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Categorias coloridas */
.categoria-reset {
  border-left: 4px solid #00cc66;
}

.categoria-evento {
  border-left: 4px solid #ff9900;
}

.categoria-iniciante {
  border-left: 4px solid #33ccff;
}

.categoria-item {
  border-left: 4px solid #ffcc00;
}

.categoria-default {
  border-left: 4px solid #666;
}

/* Paginação */
.pagination {
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
  color: #ddd;
  user-select: none;
}

.pagination a,
.pagination span {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.pagination a {
  background-color: #ffaa00;
  color: #121212;
  font-weight: 600;
}

.pagination a:hover {
  background-color: #ffcc33;
  color: #121212;
}

.pagination .disabled {
  background-color: #444;
  color: #777;
  cursor: default;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .main {
    padding: 1rem;
  }

  .guias-grid {
    grid-template-columns: 1fr;
  }

  .guia-thumbnail {
    height: 200px;
  }
}
.resposta {
    display: block;
    width: 100%;
    clear: both;
    background-color: #475569;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
    box-sizing: border-box;
}
.ticket-link {
  text-decoration: none;
}

.ticket {
  background-color: #2a2a2a;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
  color: #ffd966;
  transition: background-color 0.3s ease;
}

.ticket:hover {
  background-color: #3a3a3a;
}

.no-tickets {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  color: #ccc;
  font-weight: bold;
  text-align: center;
}

.btn-open-ticket {
  background-color: #ffaa00;
  color: #1e1e1e;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s;
}
.btn-open-ticket:hover {
  background-color: #ffcc33;
}
.carousel-container {
    position: relative;
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.carousel-slide {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 400%; /* 3 imagens */
}

.carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 1;
}

.carousel-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.carousel-controls button {
    background-color: #ffaa00;
    color: #1f1f1f;
    border: none;
    padding: 1px 5px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.carousel-controls button:hover {
    background-color: #ffcc33;
}



@keyframes slide {
    0%   { transform: translateX(0); }
    33%  { transform: translateX(-100%); }
    66%  { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}
.rss-list {
    list-style: none;
    padding-left: 0;
}

.rss-list li a {
    color: #0a58ca;
    font-weight: bold;
    text-decoration: none;
}

.rss-list small {
    font-size: 12px;
}
