:root {
  --primary: #5e1717;
  --secondary: #ad8233;
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --bg: #f6f6f6;
  --card-bg: #eee5cc;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Card */
.card {
  background: var(--card-bg);
  width: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}

/* HEADER CENTRALIZADO */
.header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 28px 22px;
  color: #fff;
}

/* transformando o header em coluna e centralizado */
.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */
.logo-img-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.35);
}

.descricao h3 {
    font-size: 1.2rem;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header h1 {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header p {
  font-size: 0.85rem;
  margin-top: 6px;
  max-width: 300px;
  opacity: 0.9;
}

/* Content */
.content {
  padding: 20px;
}

.section-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin: 16px 0 6px;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.info-item i {
  font-size: 1.1rem;
  color: var(--primary);
}

/* Estilo padrão */
.info-item a,
.address a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.2s ease;
}

.info-item i,
.address i {
  color: var(--primary);
  transition: color 0.2s ease;
}

/* Hover: muda cor do ícone e do texto */
.info-item:hover a,
.address:hover a,
.info-item:hover i,
.address:hover i {
  text-decoration: none;
  color: var(--secondary);
}

.section-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 18px;
}

.section-card .section-title {
  margin-top: 0;
  margin-bottom: 10px;
}

.section-card:last-child {
  margin-bottom: 0;
}


.address {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.buttons {
  margin: 10px 25px 10px 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn {
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
  background: #ad8233;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.footer {
  visibility: hidden; 
}

/* RESPONSIVO */
@media (max-width: 750px) {
    .descricao h3 {
        font-size: 1rem;
    }
}
