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

body {
  font-family: Arial, sans-serif;
}

.container {
  margin: 0 auto;
  width: 100%;
}

/* TOP BAR */
.header-top {
  background-image: url("contents/header_background.avif");
  background-color: #eeeef0;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 160px;
}

.header-top .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
}

.header-top .logo img {
  width: 199px;
  height: 128px;
}

.header-top .phone-box {
  background-color: #1a1a2e;
  width: 248px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #2a2a4a;
  align-self: flex-start;
  margin-top: 8px;
}

.header-top .phone-box .number {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.header-top .phone-box .label {
  color: #44aa3f;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

/* NAV */
nav {
  background-color: #1a2535;
  height: 48px;
  display: flex;
  align-items: stretch;
}

nav .container {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  width: 100%;
}

nav ul li {
  flex: 1;
  display: flex;
  align-items: stretch;
}

nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #cdd6e0;
  text-decoration: none;
  font-size: 13px;
  font-weight: normal;
  transition: background-color 0.2s;
  white-space: nowrap;
}

nav ul li a:hover {
  background-color: #2a3a50;
  color: #ffffff;
}

nav ul li a.active {
  background-color: #44aa3f;
  color: #ffffff;
  font-weight: bold;
}

/* MAIN SECTION */
.main-section {
  padding: 28px 0 40px;
  background: #ffffff;
}

.cards-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

/* CARDS */
.cards-pair {
  flex: 1;
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.card {
  flex: 1;
  background: #ffffff;
  border: 7px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.card-img-wrapper img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
}

.card-label {
  background: rgba(15, 26, 48, 0.88);
  padding: 9px 14px;
  position: relative;
}

.card-label::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 13px solid rgba(15, 26, 48, 0.88);
  z-index: 1;
}

.card-label h2 {
  color: #ffffff;
  font-family: "Anton", sans-serif;
  font-size: 1.4em;
  font-weight: normal;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 12px 12px;
}

.card-body p {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: #333;
  text-align: justify;
  margin-bottom: 8px;
}

.btn-saiba-mais {
  display: block;
  width: fit-content;
  margin: auto 0 0 auto;
  background: #6dc268;
  color: #ffffff;
  padding: 7px 28px;
  font-size: 13px;
  text-decoration: none;
  margin-top: 16px;
}

.btn-saiba-mais:hover {
  background: #5aaa2e;
}

/* LOGIN BOX */
.login-box {
  flex: 0 0 300px;
  background: #ffffff;
  border: 7px solid #f0f0f0;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.login-box h3 {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  margin-bottom: 14px;
}

.login-box input {
  width: 100%;
  border: 1px solid #6dc268;
  padding: 8px 10px;
  font-size: 13px;
  margin-bottom: 10px;
  outline: none;
  color: #838383;
}

.login-box input::placeholder {
  color: #bbb;
}

.btn-acessar {
  display: block;
  margin-left: auto;
  background: #6dc268;
  color: #ffffff;
  border: none;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}

.btn-acessar:hover {
  background: #5aaa2e;
}

/* CONTACT SECTION */
.contact-section {
  background-color: #1a2535;
  padding: 36px 0 44px;
}

.contact-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-form-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.contact-map-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-title {
  font-family: "Anton", sans-serif;
  font-size: 1.4em;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: #05131e;
  border: none;
  padding: 10px 12px;
  font-size: 13px;
  color: #cdd6e0;
  outline: none;
  font-family: "Open Sans", sans-serif;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a9ab0;
}

.btn-enviar {
  align-self: flex-end;
  background: #6dc268;
  color: #ffffff;
  border: none;
  padding: 8px 28px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 6px;
}

.btn-enviar:hover {
  background: #5aaa2e;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background-color: #243044;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FOOTER */
footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 18px 0;
}

.footer-content {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #333;
  line-height: 1.8;
}

.footer-content strong {
  font-size: 13px;
}

.trial-divider {
  border: none;
  border-top: 7px solid #f0f0f0;
  margin: 14px -14px 0;
}

.trial-img {
  width: 100%;
  margin-top: 14px;
  display: block;
}
