:root {
  /* ===================================
     SMACSS BASE - Design System Tokens
     =================================== */

  /* Typography */
  --font-family-primary: "Poppins", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Color Palette */
  --primary-color: #05512C;
  --primary-color-hover: #5e9fde;
  --secondary-color: #05512C;
  --accent-color: #05512C;

  /* Text Colors */
  --text-color-heading: #2c2d3f;
  --text-color-heading-hover: #6b6c78;
  --text-color-primary: #414252;
  --text-color-contrast: #ffffff;
  --text-color-light: #bcbcbc;

  /* Background Colors */
  --background-color-body: #ffffff;
  --background-color-section-primary: #9b9b9b;
  --background-color-section-secondary: #05512C;
  --background-color-footer: #2c2d3f;
  --background-color-button-footer: #0556ac;

  /* Borders & Shadows */
  --border-color-light: #b3b3b3;
  --shadow-color-primary: rgba(26, 118, 209, 0.3);
  --shadow-color-primary-light: rgba(26, 118, 209, 0.25);

  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.625rem;
  --spacing-md: 0.9375rem;
  --spacing-lg: 1.25rem;
  --spacing-xl: 1.875rem;

  /* Border Radius Scale */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 0.625rem;
  --border-radius-lg: 1.875rem;
  --border-radius-pill: 3.125rem;

  /* Animation Duration */
  --animation-duration-fast: 0.3s;
  --animation-duration-normal: 0.6s;

  /* Responsive Breakpoints */
  --breakpoint-xs: 384px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1366px;
  /* Fixed navbar anchor offset (updated dynamically via JS) */
  --navbar-offset: 72px;
  /* Default fallback value */
}

/* ===================================
   SMACSS BASE - GLOBAL STYLES
   =================================== */
html {
  scroll-behavior: smooth;
}

/*
 * Anchor offset compensation for fixed navbar
 * Applies to all sections and elements with IDs that might be navigation targets
 */
section[id],
header[id],
main[id],
footer[id],
div[id] {
  scroll-margin-top: var(--navbar-offset);
}

body {
  overflow-x: hidden;
  background-color: var(--background-color-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  color: var(--text-color-heading);
}

p,
a {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  color: var(--text-color-primary);
}

a {
  text-decoration: none !important;
}

/* ===================================
   SMACSS LAYOUT - HEADER & NAVIGATION
   =================================== */
.navbar {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar>.container-fluid,
.navbar>.container {
  flex-wrap: nowrap;
}

.navbar h1 {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .navbar h1 .navbar-img {
    padding-right: 0 !important;
  }
}

h1>.navbar-img {
  color: var(--accent-color) !important;
  font-size: 20px;
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

h1>.navbar-img img {
  flex-shrink: 0;
}

@media only screen and (max-width: 992px) {
  h1>.navbar-img {
    font-size: 18px;
  }
}

h1>.navbar-img .navbar-lab-name-short {
  display: none;
}

@media only screen and (max-width: 767px) {
  h1>.navbar-img {
    font-size: 16px;
    gap: 8px;
  }

  h1>.navbar-img .navbar-lab-name {
    display: none;
  }

  h1>.navbar-img .navbar-lab-name-short {
    display: inline;
  }

  h1>.navbar-img img {
    height: 3.5rem !important;
  }
}

@media only screen and (max-width: 1919px) {
  h1>.navbar-img .navbar-lab-name,
  h1>.navbar-img .navbar-lab-name-short {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    padding: 80px 20px 30px;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    transform: translateX(0);
  }

  .navbar-collapse .navbar-nav {
    flex-direction: column;
    width: 100%;
  }

  .navbar-collapse .nav-link {
    padding: 14px 10px !important;
    font-size: 16px !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-toggler {
    position: relative;
    z-index: 1060;
  }

  .btn-nav-custom {
    display: block !important;
    margin: 10px 0 !important;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

.format-text-nav a {
  color: var(--text-color-heading) !important;
}

.format-text-nav a:hover {
  color: var(--text-color-heading-hover) !important;
}

.format-size-text a {
  font-size: 16px;
}

.withUs {
  color: var(--primary-color) !important;
}

.withUs:hover {
  color: var(--primary-color-hover) !important;
}

.btn-nav-custom {
  white-space: nowrap;
  background: linear-gradient(135deg, #05512C 0%, #077840 100%) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  margin-left: 8px !important;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 15px;
}

@media only screen and (max-width: 1400px) {
  .btn-nav-custom {
    padding: 8px 14px !important;
    font-size: 12px;
    margin-left: 4px !important;
  }

  .format-size-text a {
    font-size: 14px;
  }

  h1>.navbar-img {
    font-size: 16px;
  }

  h1>.navbar-img img {
    height: 3.5rem !important;
  }
}

.btn-nav-custom:hover {
  background: linear-gradient(135deg, #077840 0%, #099a50 100%) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(5, 81, 44, 0.4);
}

/* Results Side-by-Side Cards */
.results-side-by-side {
  align-items: stretch;
  flex-wrap: wrap;
}

.results-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px 25px 25px;
  text-align: center;
  backdrop-filter: blur(5px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.results-card-title {
  color: white !important;
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.results-card-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-family-primary);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 20px;
}

.results-card-fields {
  margin-bottom: 10px;
}

.results-field-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.results-field-row .form-control {
  flex: 1;
  min-width: 140px;
}

.results-field-row .input-group {
  flex: 1;
  min-width: 160px;
}

.results-forgot-link {
  font-size: 0.9rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.results-forgot-link:hover {
  opacity: 1;
  text-decoration: underline !important;
}

@media only screen and (max-width: 767px) {
  .results-side-by-side {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .results-card {
    padding: 25px 20px 20px;
  }

  .results-card-title {
    font-size: 1.15rem;
  }

  .results-field-row {
    flex-direction: column;
    gap: 10px;
  }

  .results-field-row .form-control,
  .results-field-row .input-group {
    min-width: 100%;
  }
}


#contato-servico {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  background-image: none !important;
}

#contato-servico:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(5, 81, 44, 0.25);
}

#contato-servico option {
  color: var(--primary-color);
}

/* ===================================
   SMACSS MODULES - HERO CAROUSEL
   =================================== */

.carousel-item {
  height: auto;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-background-color {
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-text {
  text-align: left;
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: var(--text-color-heading);
  margin: 0 !important;
  padding: 0 20px;
  max-width: 600px;
  box-sizing: border-box;
}

.hero-text span {
  color: var(--primary-color) !important;
}

.hero-text>h2 {
  font-size: 50px !important;
}

@media only screen and (max-width: 1366px) {
  .hero-text>h2 {
    font-size: 30px !important;
  }

  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color-heading);
    margin: 0 !important;
    padding: 0 15px;
    max-width: 90%;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .hero-text>h2 {
    font-size: 24px !important;
    line-height: 1.3;
  }

  .hero-text>p {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero-text {
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .hero-text>h2 {
    font-size: 20px !important;
  }

  .hero-text>p {
    font-size: 13px;
  }

  .carousel-item {
    min-height: 280px;
  }
}

.background-section-two {
  background: linear-gradient(135deg, #05512C 0%, #077840 100%);
}

.background-section-two h2 {
  color: var(--text-color-contrast);
}

.btn-result {
  background-color: white;
  padding: 16px;
  border: none;
  border-radius: 50%;
  color: var(--primary-color) !important;
  font-family: var(--font-family-primary);
  font-weight: 900 !important;
  font-size: 30px;
}

@media only screen and (max-width: 992px) {
  .btn-result {
    background-color: white !important;
    padding: 16px 16px !important;
    border-radius: 50% !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-family: var(--font-family-primary);
  }
}

@media only screen and (max-width: 767px) {
  .space-result>div:nth-child(1) {
    padding-bottom: 10px;
  }

  .space-result>div:nth-child(3) {
    padding-top: 10px;
  }
}

.click {
  cursor: pointer !important;
}

/* ===================================
   SMACSS LAYOUT - MAIN CONTENT
   =================================== */
/* Module: About Section */
.img-main-one {
  max-width: 500px;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .img-main-one {
    max-width: 320px !important;
  }
}

@media only screen and (max-width: 384px) {
  .img-main-one {
    max-width: 280px !important;
    margin: auto !important;
  }
}

.who-we-are>h2 {
  color: var(--text-color-heading);
}

.who-we-are p {
  color: var(--text-color-primary) !important;
}

/* Module: Icon Highlights */
.format-text-icon>i {
  padding: 20px 20px !important;
  background: linear-gradient(135deg, #05512C 0%, #077840 100%) !important;
  color: white;
  border-radius: 50%;
  /* margin: 0px 140px 0px 140px !important; */
  font-size: 25px;
}

@media only screen and (max-width: 384px) {
  .format-text-icon>i {
    padding: 20px 20px !important;
    background: linear-gradient(135deg, #05512C 0%, #077840 100%) !important;
    color: white;
    border-radius: 50%;
    margin: 0px !important;
    font-size: 25px;
  }
}

.format-text-icon {
  text-align: center !important;
}

.format-text-icon p {
  color: var(--text-color-primary) !important;
}

.format-text-icon h5 {
  padding-top: 15px;
  color: var(--text-color-heading);
}

/* Module: Feature Spotlight */
.background-main-section-three {
  background-color: var(--background-color-section-primary);
}

.background-main-section-three h2 {
  color: var(--text-color-heading);
}

.featured {
  color: var(--primary-color) !important;
}

.img-main-three>img {
  max-width: 500px;
  width: 100%;
  height: auto;
  position: relative;
  top: -50px;
}

.btn-section-three>button,
.btn-section-three>a {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: 15px;
}

.btn-section-three {
  text-align: left;
}

@media only screen and (max-width: 992px) {
  .img-main-three>img {
    max-width: 380px;
    position: relative;
    top: 40px;
  }

  .background-main-section-three {
    padding-bottom: 50px !important;
  }

  .background-main-section-three>.container {
    text-align: center !important;
  }

  .btn-section-three {
    text-align: center !important;
  }
}

@media only screen and (max-width: 767px) {
  .img-main-three>img {
    max-width: 340px;
    position: relative;
    top: 40px;
  }

  .background-main-section-three {
    padding-bottom: 50px !important;
  }

  .background-main-section-three>.container {
    text-align: center !important;
  }

  .btn-section-three {
    text-align: center !important;
  }
}

@media only screen and (max-width: 384px) {
  .img-main-three>img {
    max-width: 280px;
    position: relative;
    top: 40px;
  }
}

/* Module: Locations Gallery */

.background-main-section-four .container-fluid {
  text-align: center !important;
}

.btn-section-four>button,
.btn-section-four>a {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: 15px 40px;
  background-color: white;
  border-radius: .25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-section-four>button:hover,
.btn-section-four>a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-color);
  color: white !important;
}

.btn-section-four {
  text-align: center !important;
}

.map {
  color: white !important;
  font-weight: bold !important;
}

.map:hover {
  text-decoration: underline !important;
}

.row .img-background-section-four {
  height: 400px;
  max-width: 320px;
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.row .img-background-section-four:nth-child(1) {
  background-image: url("../img/unity01.jpg");
}

.row .img-background-section-four:nth-child(2) {
  background-image: url("../img/unity02.jpg");
}

.row .img-background-section-four:nth-child(3) {
  background-image: url("../img/unity03.jpg");
}

.row .img-background-section-four:nth-child(4) {
  background-image: url("../img/unity02.jpg");
}

@media only screen and (max-width: 767px) {
  .row .img-background-section-four {
    height: 400px;
    max-width: 90%;
    border-radius: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .row .img-background-section-four:nth-child(1) {
    background-image: url("../img/unity01.jpg");
  }

  .row .img-background-section-four:nth-child(2) {
    background-image: url("../img/unity02.jpg");
  }

  .row .img-background-section-four:nth-child(3) {
    background-image: url("../img/unity03.jpg");
  }

  .row .img-background-section-four:nth-child(4) {
    background-image: url("../img/unity02.jpg");
  }
}

.text-format-four {
  text-align: center;
  top: 35% !important;
  position: relative;
  color: var(--text-color-contrast);
}

.text-format-four h4,
.text-format-four p,
.text-format-four span {
  color: var(--text-color-contrast);
}

.image-background-color-four {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.image-background-color-four-in {
  background-color: var(--background-color-section-primary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.text-format-four-in {
  text-align: center;
  top: 10% !important;
  position: relative;
  color: var(--text-color-contrast);
}

.text-format-four-in h4,
.text-format-four-in p,
.text-format-four-in span {
  color: var(--text-color-contrast);
}

.text-format-four-in p {
  font-size: 14px !important;
}

/* Module: Call-to-Action Banner */
.background-main-five {
  background: linear-gradient(135deg, #05512C 0%, #077840 100%) !important;
}

.background-main-five h2 {
  color: white;
}

.background-main-five p {
  color: white;
}

.btn-section-five {
  text-align: center !important;
}

.btn-section-five>button,
.btn-section-five>a {
  color: var(--primary-color);
  font-family: var(--font-family-primary);
  font-weight: bold;
  padding: 15px;
}

/* Module: Testimonials Slider */
.glider-dot.active {
  background: var(--primary-color);
}

.glider-contain {
  overflow: hidden;
  max-width: 100%;
}

.glider {
  overflow: hidden;
}

.main-section-six {
  overflow: hidden;
}

.main-section-six h2 {
  color: var(--text-color-heading);
}

.main-section-six p {
  color: var(--text-color-primary);
}

/* Module: Team Spotlight */
.background-main-section-seven {
  background: linear-gradient(135deg, #05512C 0%, #077840 100%);
}

.background-main-section-seven h2 {
  color: white !important;
  padding: 10px 0px 20px 0px;
}

.background-main-section-seven p {
  color: var(--text-color-primary);
}

/* WhatsApp Buttons for Unidades Executoras */
.whatsapp-buttons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-whatsapp-matriz {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white !important;
  text-decoration: none !important;
  border-radius: 50px;
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-matriz i {
  font-size: 1.4rem;
}

.btn-whatsapp-matriz:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  color: white !important;
  text-decoration: none !important;
}

.btn-whatsapp-matriz:active {
  transform: translateY(-2px);
}

@media only screen and (max-width: 767px) {
  .whatsapp-buttons-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-whatsapp-matriz {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* Module: BMI Calculator */
.imc {
  margin-top: 30px !important;
}

.imc .input {
  font-family: var(--font-family-primary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color-primary);
  background-color: #ffffff;
  border: 1px solid var(--background-color-section-secondary);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.imc .input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 118, 209, 0.18);
}

.imc .input::placeholder {
  color: rgba(65, 66, 82, 0.6);
}

.imc-button {
  display: inline-block;
  font-family: var(--font-family-primary);
  font-weight: 700;
  background: linear-gradient(135deg, #05512C 0%, #077840 100%);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.imc-button:hover,
.imc-button:focus {
  background: linear-gradient(135deg, #077840 0%, #099a50 100%);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(5, 81, 44, 0.4);
  outline: none;
}

.format-text-section-ten h3 {
  color: var(--primary-color);
}

.main-section-ten {
  color: var(--text-color-primary);
}

#img-imc {
  max-width: 18.125rem;
  width: 100%;
}

/* Module: Contact Section */
.main-section-eleven h2 {
  color: var(--text-color-heading);
}

.main-section-eleven p {
  color: var(--text-color-primary);
}

.main-section-eleven input {
  border-color: var(--background-color-section-secondary) !important;
}

.main-section-eleven textarea {
  border-color: var(--background-color-section-secondary) !important;
}

.main-section-eleven button {
  background: linear-gradient(135deg, #05512C 0%, #077840 100%);
  padding-left: 50px;
  padding-right: 50px;
  border: none !important;
  border-radius: 50px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-section-eleven button:hover {
  background: linear-gradient(135deg, #077840 0%, #099a50 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(5, 81, 44, 0.4);
}

/* ===================================
   SMACSS MODULE - ATENDIMENTO CARDS
   =================================== */
.atendimento-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.atendimento-card-header {
  background: linear-gradient(135deg, #05512C 0%, #077840 100%);
  padding: 20px;
  text-align: center;
  color: white;
}

.atendimento-card-header i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.atendimento-card-header h4 {
  color: white;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.atendimento-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-atendimento {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--font-family-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-atendimento i {
  font-size: 1.2rem;
}

.btn-coleta {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white !important;
}

.btn-coleta:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-ipsemg {
  background: linear-gradient(135deg, #05512C 0%, #077840 100%);
  color: white;
}

.btn-ipsemg:hover:not(:disabled) {
  background: linear-gradient(135deg, #077840 0%, #099a50 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(5, 81, 44, 0.4);
}

.btn-ipsemg:disabled {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  cursor: not-allowed;
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .atendimento-card-header h4 {
    font-size: 1.3rem;
  }

  .btn-atendimento {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* ===================================
   SMACSS LAYOUT - FOOTER
   =================================== */
.background-section-footer-one {
  background-color: #2c2d3f !important;
  color: white !important;
}

.background-section-footer-one p,
.background-section-footer-one small,
.background-section-footer-one b,
.background-section-footer-one span,
.background-section-footer-one li {
  color: white !important;
}

.background-section-footer-one a {
  color: white !important;
  text-decoration: none !important;
}

.background-section-footer-one a:hover {
  text-decoration: none !important;
  color: #25D366 !important;
  transform: translateX(5px);
}

.footer-links a, .footer-social a {
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:before {
  content: "- ";
  opacity: 0.7;
}

.footer-units small {
  color: #ffffff !important;
  opacity: 1 !important;
  display: block;
  margin-bottom: 2px;
}

.footer-units b {
  font-size: 16px;
  color: white;
}

@media only screen and (max-width: 992px) {
  .background-section-footer-one p {
    text-align: center !important;
  }
}

@media only screen and (max-width: 767px) {
  .background-section-footer-one iframe {
    height: 250px !important;
  }

  .background-section-footer-one .col-sm-12 {
    text-align: center;
    margin-bottom: 20px;
  }
}

/*Sticky não mexer*/
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 2%;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50px;
}

#myBtn:hover {
  background-color: #555;
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
}
