/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: #0d0d0d;
    color: #eaeaea;
    line-height: 1.7;
    scroll-behavior: smooth;
}

/* ===== HEADER ===== */
header {
    text-align: center;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: #d4af37; /* dourado premium */
    padding: 60px 20px;
    border-bottom: 3px solid #d4af37;
    animation: fadeDown 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    animation: pulse 6s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

header h1 {
    font-size: 3.2em;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}

header p {
    margin-top: 15px;
    font-size: 1.3em;
    color: #bbb;
}

/* ===== MAIN ===== */
main {
    max-width: 1200px;
    margin: auto;
    padding: 50px 25px;
}

/* ===== TITULOS ===== */
h2 {
    color: #d4af37;
    margin-bottom: 25px;
    font-size: 2rem;
    border-left: 5px solid #d4af37;
    padding-left: 12px;
    animation: fadeLeft 1s ease-in-out;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* ===== LISTA DE SERVIÇOS ===== */
ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

ul li {
    background: linear-gradient(145deg, #1a1a1a, #121212);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #2c2c2c;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(212,175,55,0.12), transparent);
    transition: 0.6s;
}

ul li:hover::before {
    left: 100%;
}

ul li:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0,0,0,0.8);
    border-color: #d4af37;
}

/* ===== LINKS ===== */
a {
    color: #d4af37;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    background: #000;
    color: #aaa;
    padding: 25px;
    margin-top: 50px;
    border-top: 2px solid #d4af37;
    animation: fadeUp 1s ease-in-out;
    font-size: 0.95em;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Alinhamento logo + nome */
.logo-nome {
    display: flex;             /* ativa flexbox */
    align-items: center;       /* alinha no centro vertical */
    justify-content: center;   /* centraliza tudo no meio da página */
    gap: 15px;                 /* espaço entre logo e nome */
}

.logo {
    width: 200px;   /* tamanho da logo */
    height: auto;
}

body {
  background: #0d0d0d;
  color: #eaeaea;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #000, #1a1a1a);
  border-bottom: 3px solid #d4af37;
}

.logo-nome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo {
  width: 100px;
  height: auto;
}

header h1 {
  font-size: 2.5rem;
  color: #d4af37;
}

header p {
  color: #bbb;
  margin-top: 8px;
}

#feedback {
  max-width: 800px;
  margin: 40px auto;
  padding: 25px;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

#feedback h2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 20px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d4af37;
  background: #111;
  color: #fff;
  font-size: 1em;
  margin-bottom: 12px;
}

.feedback-form button {
  background: #d4af37;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.feedback-form button:hover {
  background: #e6c200;
}

#lista-comentarios {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#lista-comentarios li {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #d4af37;
}

/* Seção Feedback */
#feedback {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

#feedback h2 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* Formulário */
#feedback-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

#feedback-form input,
#feedback-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d4af37;
  background: #111;
  color: #fff;
  font-size: 1em;
  transition: border 0.3s ease;
}

#feedback-form input:focus,
#feedback-form textarea:focus {
  outline: none;
  border-color: #e6c200;
}

#feedback-form button {
  align-self: flex-start;
  background: #d4af37;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

#feedback-form button:hover {
  background: #e6c200;
  transform: scale(1.05);
}

/* Comentários estilo YouTube */
#comentarios h3 {
  margin-bottom: 15px;
  color: #d4af37;
  border-left: 4px solid #d4af37;
  padding-left: 10px;
}

#lista-comentarios {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#lista-comentarios li {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #d4af37;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s;
}

#lista-comentarios li:hover {
  transform: translateX(5px);
}

#lista-comentarios strong {
  color: #d4af37;
  font-size: 1.1em;
}

#lista-comentarios small {
  display: block;
  margin-top: 5px;
  font-size: 0.85em;
  color: #aaa;
}
