
/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #333;
  padding: 20px;
}

header, main, footer {
  max-width: 900px;
  margin: 0 auto 40px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.2em;
  color: #b22222; /* cor vermelho escuro */
}

.subtitulo {
  font-style: italic;
  color: #555;
  margin-bottom: 1em;
}

.contador {
  font-weight: bold;
  margin-bottom: 2em;
  color: #b22222;
}

/* Seções */
section {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

h2 {
  margin-bottom: 0.8em;
  color: #b22222;
}

/* Lista ficha técnica */
ul {
  list-style-type: none;
}

ul li {
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

ul li:last-child {
  border-bottom: none;
}

/* Galeria */
.carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-images {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px 0;
  flex-grow: 1;
}

.carousel-images img {
  max-height: 180px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: auto;
}

.carousel-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(178,34,34, 0.7);
}

/* Botões */
.btn-carousel {
  background-color: #b22222;
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.btn-carousel:hover,
.btn-carousel:focus {
  background-color: #7a1212;
  outline: none;
}

/* Footer */
footer {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}
