/* !
 * baguetteBox.js
 * @author  feimosi
 * @version 1.11.1
 * @url https://github.com/feimosi/baguetteBox.js */

#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0,0,0,.8);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0,0,0,.6);
  -moz-box-shadow: 0 0 8px rgba(0,0,0,.6);
  box-shadow: 0 0 8px rgba(0,0,0,.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0,0,0,.6);
  font-family: sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left .4s ease,-webkit-transform .4s ease;
  transition: left .4s ease,-webkit-transform .4s ease;
  transition: left .4s ease,transform .4s ease;
  transition: left .4s ease,transform .4s ease,-webkit-transform .4s ease,-moz-transform .4s ease;
}

#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight .4s ease-out;
  animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft .4s ease-out;
  animation: bounceFromLeft .4s ease-out;
}

@keyframes bounceFromRight {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
}

@keyframes bounceFromLeft {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-border-radius: 15%;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50,50,50,.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}

.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50,50,50,.9);
}

.baguetteBox-button#next-button {
  right: 2%;
}

.baguetteBox-button#previous-button {
  left: 2%;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1, .baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

:root {
  --primary: #163D6E;
  --secondary: #36B089;
  --accent: #6D6C6C;
  --light: #f8f9fa;
  --dark: #212529;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

/* Navbar Transparente no Hero */

.navbar-colabora {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-colabora.scrolled {
  background: white;
  padding: 12px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-colabora .navbar-brand {
  font-weight: 800;
  font-size: 28px;
  color: white !important;
  transition: all 0.3s ease;
}

.navbar-colabora.scrolled .navbar-brand {
  color: var(--primary) !important;
}

.navbar-colabora .nav-link {
  font-weight: 600;
  color: white !important;
  font-size: 1.1rem;
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
  padding: 8px 15px !important;
  border-radius: 8px;
}

.navbar-colabora.scrolled .nav-link {
  color: var(--primary) !important;
}

.navbar-colabora .nav-link:hover, .navbar-colabora .nav-link.active {
  color: var(--bs-dark-bg-subtle) !important;
  background-color: rgba(255, 255, 255, 0.15);
}

.navbar-colabora.scrolled .nav-link:hover, .navbar-colabora.scrolled .nav-link.active {
  background-color: rgba(54, 176, 137, 0.1);
}

.navbar-colabora .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 15px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.navbar-colabora .nav-link:hover:after, .navbar-colabora .nav-link.active:after {
  width: calc(100% - 30px);
}

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #2a8c6d;
  border-color: #2a8c6d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(54, 176, 137, 0.3);
}

.btn-outline-light {
  color: white;
  border-color: white;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-2px);
}

.navbar-colabora.scrolled .btn-outline-light {
  color: var(--primary);
  border-color: var(--primary);
}

.navbar-colabora.scrolled .btn-outline-light:hover {
  background-color: var(--primary);
  color: white;
}

/* Menu Mobile Melhorado */

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent !important;
  border: none!important;
  box-shadow: none!important;
}

.navbar-toggler span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-colabora.scrolled .navbar-toggler span {
  background-color: var(--primary);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Mobile - Offcanvas */

.offcanvas {
  background: white;
  color: black;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.offcanvas-title {
  font-weight: 700;
  font-size: 24px;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.offcanvas-body {
  padding: 20px;
}

.mobile-nav-item {
  /*padding: 15px 0;*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  color: black !important;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  padding: 10px 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--secondary) !important;
  padding-left: 10px;
}

.mobile-nav-link i {
  margin-right: 15px;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.mobile-nav-actions {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-actions .btn {
  text-align: center;
  padding: 12px;
  font-weight: 600;
  border-radius: 10px;
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s;
}

.mobile-nav-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* Hero Section */

.hero {
  background: linear-gradient(135deg, rgba(22, 61, 110, 0.85) 0%, rgba(54, 176, 137, 0.75) 100%), url('/img/hands-together-unity.jpg?h=bd1f56acf4c15f68ca2bb56bab7a592c');
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  color: white;
  margin-top: -5rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title {
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
}

.section-title.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Backgrounds Exclusivos para Cada Seção */

/* Como Funciona - Background com padrão geométrico azul */

.how-it-works-section {
  background-color: #f0f7ff;
  background-image: radial-gradient(circle at 10% 20%, rgba(22, 61, 110, 0.05) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(54, 176, 137, 0.05) 0%, transparent 20%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(54, 176, 137, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.how-it-works-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(22, 61, 110, 0.1);
  border-radius: 50%;
  z-index: 0;
}

/* Vantagens - Background com gradiente suave */

.features-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9f5 100%);
  padding: 100px 0;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Tutoriais - Background com padrão moderno */

.tutorials-section {
  background-color: #f8f9fa;
  background-image: linear-gradient(45deg, rgba(22, 61, 110, 0.03) 25%, transparent 25%), linear-gradient(-45deg, rgba(22, 61, 110, 0.03) 25%, transparent 25%), linear-gradient(135deg, rgba(22, 61, 110, 0.03) 25%, transparent 25%), linear-gradient(-135deg, rgba(22, 61, 110, 0.03) 25%, transparent 25%);
  background-size: 40px 40px;
  padding: 100px 0;
  position: relative;
}

.tutorials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

/* Taxas - Background com padrão angular moderno */

.pricing-section {
  background-color: #f8f9fa;
  background-image: linear-gradient(135deg, rgba(22, 61, 110, 0.03) 25%, transparent 25%), linear-gradient(225deg, rgba(22, 61, 110, 0.03) 25%, transparent 25%), linear-gradient(315deg, rgba(22, 61, 110, 0.03) 25%, transparent 25%), linear-gradient(45deg, rgba(22, 61, 110, 0.03) 25%, transparent 25%);
  background-size: 40px 40px;
  padding: 100px 0;
  position: relative;
}

.pricing-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

/* Depoimentos - Background com textura sutil */

.testimonials-section {
  background: radial-gradient(circle at 20% 70%, rgba(54, 176, 137, 0.1) 0%, transparent 30%), radial-gradient(circle at 80% 30%, rgba(22, 61, 110, 0.1) 0%, transparent 30%), #ffffff;
  padding: 100px 0;
}

/* FAQ - Background limpo com detalhes laterais */

.faq-section {
  background: linear-gradient(to right, #f8f9fa 0%, #f8f9fa 90%, rgba(54, 176, 137, 0.05) 90%, rgba(54, 176, 137, 0.05) 100%);
  padding: 100px 0;
}

/* How it works - Design Moderno */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  margin: 60px 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.step-indicator {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(22, 61, 110, 0.2);
}

.step-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  flex-grow: 1;
  border-left: 4px solid var(--secondary);
}

.step-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 22px;
}

.step-description {
  color: var(--accent);
  margin-bottom: 0;
}

.step-icon {
  font-size: 30px;
  color: var(--secondary);
  margin-right: 15px;
}

/* Features */

.feature-box {
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
  background: white;
  text-align: center;
  border-bottom: 4px solid transparent;
  z-index: 1;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-bottom: 4px solid var(--secondary);
}

.feature-icon {
  font-size: 50px;
  color: var(--secondary);
  margin-bottom: 20px;
  background: rgba(54, 176, 137, 0.1);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
}

/* Tutorial Cards */

.tutorial-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s;
  height: 100%;
  position: relative;
  z-index: 1;
}

.tutorial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.tutorial-thumbnail {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-color: #163D6E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tutorial-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tutorial-thumbnail:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.play-button:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--secondary);
}

.tutorial-content {
  padding: 25px;
}

.tutorial-duration {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Taxas Table */

.taxas-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.taxas-table th {
  background-color: var(--primary);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.taxas-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.taxas-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.taxas-table tr:last-child td {
  border-bottom: none;
}

.taxa-value {
  font-weight: 700;
  color: var(--secondary);
  font-size: 18px;
}

/* Testimonials */

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  margin: 15px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.testimonial-text:before {
  content: """;
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 60px;
  color: var(--secondary);
  font-family: Arial, sans-serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

/* CTA Section */

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

/* FAQ */

.accordion-button {
  font-weight: 600;
  padding: 20px;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(54, 176, 137, 0.1);
  color: var(--primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(54, 176, 137, 0.3);
}

/* Video Modal */

.modal-content {
  border-radius: 15px;
  overflow: hidden;
  border: none;
}

.modal-header {
  background: var(--primary);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 0;
  background: #000;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /*16: 9 Aspect Ratio;*/
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */

footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-links h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

/* Animations */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 1s ease-out;
}

/* Responsive Adjustments */

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding: 130px 0 80px;
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .section-title {
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .feature-box, .step-card, .pricing-card, .tutorial-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 991.98px) {
  .how-it-works-section::before, .how-it-works-section::after, .features-section::before, .pricing-section::after, .tutorials-section::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .faq-section {
    background: #f8f9fa;
  }
}

@media (max-width: 991.98px) {
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 991.98px) {
  .step-content {
    border-left: none;
    border-top: 4px solid var(--secondary);
  }
}

@media (min-width: 992px) {
  .navbar-actions {
    display: flex;
    gap: 15px;
  }
}

@media (min-width: 992px) {
  .offcanvas {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .process-steps:before {
    content: '';
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 35px;
    width: 2px;
    background: var(--secondary);
    opacity: 0.3;
    z-index: 1;
  }
}

.navbar-colabora:not(.scrolled) {
  background: transparent!important;
}

.navbar-colabora.scrolled .navbar-brand {
  display: block;
  background-image: url("/img/logo-colabora-h.png?h=c5d6f202b5253794010c6e0ce9effdcb");
  background-repeat: no-repeat!important;
  background-size: contain!important;
}

.navbar-colabora:not(.scrolled) .navbar-brand, footer .navbar-brand {
  background-image: url("/img/logo-colabora-h-white.png?h=adf76482d6806eb201726ba5c07d8465");
  display: block;
  background-repeat: no-repeat!important;
  background-size: contain!important;
}

@media (max-width: 499px) {
  .navbar-brand {
    width: 150px;
    height: 40px;
  }
}

@media (min-width: 500px) {
  .navbar-brand {
    width: 250px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .offcanvas {
    width: 80%!important;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 5rem;
  }
}

.navbar-colabora.scrolled .nav-link.active {
  color: var(--secondary)!important;
}

.btn.entrar {
  background-color: var(--secondary);
  color: white;
  border-radius: 1.5rem;
  font-size: 1.1rem;
  min-width: 100px;
}

.btn-primary, .btn-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary)!important;
}

ul {
  list-style-type: none;
}

@media (max-width: 576px) {
  ul {
    padding: 0;
  }
}

.termos-e-politicas .navbar-brand {
  max-width: 250px;
  background-size: contain!important;
  background-repeat: no-repeat!important;
  margin: auto;
  background-position: center!important;
}

.body:not(.termos-e-politicas) {
  padding-top: 76px;
}

.termos-e-politicas {
  padding: 2rem 0;
  background-color: #f0f9f5;
}

.termos-e-politicas h1 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.termos-e-politicas h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: var(--primary);
}

.termos-e-politicas p, ol li {
  font-size: 1.2rem;
  text-align: justify;
}

@media (max-width: 400px) {
  .termos-e-politicas .navbar-brand {
    width: 160px;
  }
}

.termos-e-politicas .last-update {
  color: var(--bs-secondary);
  margin-bottom: 0;
  font-size: medium;
}

.footer p, .termos-e-politicas .last-update {
  text-align: center;
}

