:root {
  --primary: #C20000;
  --dark: #080808;
  --card-bg: #1A1A1A;
  --footer-bg: #E0E0E0;
  --text-gray: #A0A0A0;
}

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

body {
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar Profissional */
.navbar {
  padding: 30px 0;
  width: 100%;
  top: 0;
  transition: 0.3s;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
}

.logo img {
  width: 100px;
}

.sub-logo {
  font-size: 0.95rem;
  color: var(--text-gray);
  text-align: center;
  font-weight: 600;
}

button {
  padding: 15px 30px;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  border: none;
}

.but-type-1 {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  box-shadow: 0 0 15px 5px var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.but-type-1:hover {
  box-shadow: 0 0 20px 10px var(--primary);
  transform: scale(1.05);
}

.but-type-2 {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.but-type-2:hover {
  transform: scale(1.05);
}


/* Rodapé Curvado */
.main-footer {
  background: var(--footer-bg);
  color: var(--dark);
  padding: 120px 0 40px;
  border-radius: 60px 60px 0 0;
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  width: 200px;
}

.footer-social {
    display: flex;
    flex-direction: column; /* Alinhamento vertical */
    align-items: flex-end;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #888;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social a {
   align-items: fle;
    color: #333;
    font-weight: 700;
    font-size: 1rem;
}

