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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* ---------------------- */
/* HEADER */
/* ---------------------- */
.hero-header {
  background: linear-gradient(135deg, #084d6e, #032f44);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ---------------------- */
/* NAVBAR */
/* ---------------------- */
.navbar-custom {
  background: #04364a;
  padding: 4px 0;
}

.navbar-custom .navbar-brand img {
  height: 50px;
}

.navbar-custom .navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.navbar-custom .navbar-nav .nav-link:hover {
  color: #f8d210;
}

/* ---------------------- */
/* SECTIONS */
/* ---------------------- */
.section-padding {
  padding: 30px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #084d6e;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f8d210;
}

/* ---------------------- */
/* CARDS */
/* ---------------------- */
.card-custom {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  margin: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-img-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #084d6e;
  font-size: 2rem;
}

.card-custom h3 {
  margin-bottom: 15px;
  color: #04364a;
}

.card-custom p {
  font-size: 0.95rem;
  color: #555;
}

/* ---------------------- */
/* FEATURES */
/* ---------------------- */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.bg-color{
    background-color: #084d6e;
}

/* ---------------------- */
/* TESTIMONIAL */
/* ---------------------- */
.testimonial-section {
  background-color: #f8f9fa;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------------------- */
/* TEAM */
/* ---------------------- */
.team-member {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ---------------------- */
/* BUTTONS */
/* ---------------------- */
/* Classe base para padronizar todos os botões */
.btn-custom {
  padding: 12px 30px !important; /* força o mesmo espaçamento */
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;              /* altura mínima */
  min-width: 160px;              /* largura mínima (ajuste se quiser mais largo) */
  text-align: center;
}

/* Botão principal */
.btn-primary {
  background-color: #084d6e;
  border-color: #084d6e;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #063954;
  border-color: #063954;
  transform: translateY(-2px);
}

/* Botão outline */
.btn-outline-light {
  color: white;
  border: 2px solid white;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background-color: white;
  color: #084d6e; /* cor do texto quando hover */
  transform: translateY(-2px);
}


/* ---------------------- */
/* FORM */
/* ---------------------- */
.form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-control:focus {
  border-color: #084d6e;
  box-shadow: 0 0 0 0.2rem rgba(8, 77, 110, 0.25);
}

.form-label {
  display: block;        /* garante que fique acima do input */
  text-align: left;      /* força alinhamento à esquerda */
  font-weight: 500;      /* deixa mais visível, se quiser */
  margin-bottom: 5px;    /* espaço entre o label e o input */
}


/* ---------------------- */
/* FOOTER */
/* ---------------------- */
.footer-custom {
  background: #032f44;
  color: white;
  padding: 30px 0 20px;
}

.footer-custom a {
  color: #f8d210;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-custom a:hover {
  color: white;
  text-decoration: none;
}


/* ---------------------- */
/* RESPONSIVE */
/* ---------------------- */
@media (max-width: 768px) {
  .hero-header {
    padding: 70px 20px;
  }
  
  .hero-header h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 60px 20px;
  }
}

.bg-personalizado {
    BACKGROUND-COLOR: RED !important;
}

.fundo-per {
  background-color: #FF5733 !important;
}




