body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  height: 100%;
  padding-top: 50px; /* altura da navbar */
}

/* NAVBAR */
.navbar {
  background: #ffffff !important;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.navbar-brand {
  color: #FF4500 !important;
  font-weight: bold;
}

/* HERO */
.hero {
  min-height: calc(100vh - 50px); /* ocupa tela toda sem sobrar espaço */
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #FF4500, #FF8C00);
}
/* IMAGEM */
.hero-img {
  max-height: 400px;
}
.hero h1 {
  font-weight: bold;
}

.hero p {
  opacity: 0.9;
}

/* BOTÕES */
.btn-primary {
  background: #FF4500;
  border: none;
}

.btn-primary:hover {
  background: #cc3700;
}

.btn-outline-primary {
  color: #FF4500;
  border-color: #FF4500;
}

.btn-outline-primary:hover {
  background: #FF4500;
  color: white;
}

/* FORMULÁRIOS */
.form-container {
  max-width: 420px;
  margin: 80px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control:focus {
  border-color: #FF4500;
  box-shadow: 0 0 5px rgba(255,69,0,0.3);
}

/* CARDS */
.card {
  border: none;
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* PROFISSIONAIS */
.profissional {
  background: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* DASHBOARD */
.dashboard {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
}

/* CTA */
.cta {
  background: linear-gradient(to right, #FF4500, #FF8C00);
  color: white;
}

/* FOOTER */
footer {
  background: #FF4500;
  color: white;
  margin: 0;
}
.logo img {
  object-fit: contain;
}

/*===================*/

/* EU*/
/* BOTÔES PERSONALIZADOS */
.bob-btn-1 {
    border: 1px solid #ff5a00;
    padding: 8px 15px;
    border-radius: 6px;
    color: #ff5a00;
    text-decoration: none;
}
.bob-btn-1:hover {
    background-color:#FF8800;
        color: #ffffff;
}

.bob-btn-2 {
    border: 1px solid #ffffff;
    padding: 8px 15px;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

.bob-btn-2:hover {
    background-color:#FF6200;
}