/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f6f6;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.section-title p {
  margin: 10px 0 0 0;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
}

.section-title p::after {
  content: "";
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  display: block;
  margin: 15px auto 0 auto;
}

.section-padding {
  padding: 120px 0 80px 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader .loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#preloader .loader svg {
  color: var(--primary-color);
  animation: pulse 1s infinite;
}

#preloader .loader p {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  color: #fff;
  font-size: 18px;
}

.back-to-top:hover {
  background: var(--accent-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# WhatsApp Button
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  visibility: visible;
  opacity: 1;
  right: 15px;
  bottom: 70px;
  z-index: 996;
  background: #25d366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-float i {
  color: #fff;
  font-size: 24px;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Cookie Notice
--------------------------------------------------------------*/
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 10px 0;
  z-index: 999;
}

#cookie-notice .cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

#cookie-notice p {
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

#cookie-notice a {
  color: var(--primary-color);
}

#cookie-notice button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

#cookie-notice button:hover {
  background: var(--accent-color);
}

@media (max-width: 768px) {
  #cookie-notice .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  #cookie-notice p {
    padding-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  color: var(--secondary-color);
}

.header .logo h1 a {
  color: var(--secondary-color);
}

.header .logo h1 a span {
  color: var(--primary-color);
}

.header-container {
  position: relative;
}

.header-contact {
  padding-left: 20px;
}

.header-contact i {
  font-size: 24px;
  margin-right: 10px;
  color: var(--primary-color);
}

.header-contact span {
  display: block;
  font-size: 12px;
  color: #848484;
}

.header-contact a {
  font-weight: 600;
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--primary-color);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  display: none;
  color: var(--secondary-color);
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.fa-times {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--secondary-color);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-color: #f6f6f6;
  position: relative;
  padding-top: 104px;
}

#hero .container {
  position: relative;
  height: 100%;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary-color);
}

#hero h2 {
  margin: 10px 0 0 0;
  font-size: 20px;
  font-weight: 400;
  color: #555;
}

#hero .hero-img {
  text-align: right;
}

#hero .hero-img img {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#hero .hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero .hero-text p {
  margin: 20px 0 30px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #777;
}

#hero .hero-btns {
  margin-top: 20px;
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  
  #hero .hero-img {
    text-align: center;
    margin-top: 40px;
  }
  
  #hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
  }
  
  #hero h2 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 30px 0;
  background-color: #fff;
}

.features .feature-box {
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
  transition: 0.3s;
  height: 100%;
}

.features .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.features .feature-box i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.features .feature-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.features .feature-box p {
  font-size: 15px;
  color: #777;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Sobre Section
--------------------------------------------------------------*/
.sobre .content h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary-color);
}

.sobre .content p {
  margin-bottom: 15px;
}

.sobre .content ul {
  list-style: none;
  padding: 0;
}

.sobre .content ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.sobre .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--primary-color);
}

.sobre .about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sobre .about-img img {
  transition: all 0.6s;
}

.sobre .about-img:hover img {
  transform: scale(1.05);
}

.sobre .about-btn {
  margin-top: 30px;
}

.sobre .counters {
  padding: 30px 0;
  margin-top: 20px;
}

.sobre .counters span {
  font-size: 48px;
  display: block;
  color: var(--primary-color);
  font-weight: 700;
}

.sobre .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .sobre .about-img {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# ServiÃ§os Section
--------------------------------------------------------------*/
.servicos .service-box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: 0.3s;
}

.servicos .service-box:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.servicos .icon-box {
  position: relative;
}

.servicos .icon-box .icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

.servicos .icon-box h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.servicos .icon-box p {
  font-size: 15px;
  color: #777;
  margin-bottom: 20px;
}

.servicos .service-details {
  margin-bottom: 20px;
}

.servicos .service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicos .service-details ul li {
  margin-bottom: 8px;
}

.servicos .service-details ul li i {
  color: var(--primary-color);
  margin-right: 8px;
}

.servicos .read-more {
  font-weight: 500;
  color: var(--secondary-color);
}

.servicos .read-more:hover {
  color: var(--primary-color);
}

.servicos .read-more i {
  margin-left: 5px;
  font-size: 14px;
  transition: 0.3s;
}

.servicos .read-more:hover i {
  transform: translateX(5px);
}

.servicos .servicos-cta {
  background: var(--secondary-color);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.servicos .servicos-cta h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}

.servicos .servicos-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.servicos .servicos-cta .btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.servicos .servicos-cta .btn-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Depoimentos Section
--------------------------------------------------------------*/
.depoimentos .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 20px 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s;
  height: 420px;
}

.depoimentos .testimonial-item:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.depoimentos .testimonial-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  border: 6px solid rgba(var(--primary-color-rgb), 0.15);
  margin-bottom: 15px;
}

.depoimentos .testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depoimentos .testimonial-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: var(--secondary-color);
}

.depoimentos .testimonial-item h4 {
  font-size: 14px;
  color: #777;
  margin: 0 0 15px 0;
  font-weight: 400;
}

.depoimentos .testimonial-item .stars {
  margin-bottom: 15px;
}

.depoimentos .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.depoimentos .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
}

.depoimentos .testimonial-item .quote-icon-left,
.depoimentos .testimonial-item .quote-icon-right {
  color: var(--primary-color);
  font-size: 16px;
  display: inline-block;
  margin: 0 10px;
}

.depoimentos .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.depoimentos .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  opacity: 1;
}

.depoimentos .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.depoimentos .testimonial-cta {
  margin-top: 50px;
}

.depoimentos .testimonial-cta h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.depoimentos .testimonial-cta p {
  margin-bottom: 20px;
  color: #555;
}

/*--------------------------------------------------------------
# Contato Section
--------------------------------------------------------------*/
.contato .info-box {
  color: var(--secondary-color);
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  height: 100%;
}

.contato .info-box i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

.contato .info-box h3 {
  font-size: 20px;
  color: rgba(var(--secondary-color-rgb), 0.8);
  font-weight: 600;
  margin-bottom: 20px;
}

.contato .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contato .info-box .whatsapp-link {
  display: inline-block;
  margin-top: 10px;
  color: #25d366;
  font-weight: 600;
}

.contato .info-box .whatsapp-link:hover {
  color: #128c7e;
}

.contato .map {
  border-radius: 8px;
  overflow: hidden;
}

.contato .map iframe {
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.contato .php-email-form {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.contato .php-email-form .form-group {
  margin-bottom: 20px;
}

.contato .php-email-form input,
.contato .php-email-form textarea {
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #ced4da;
}

.contato .php-email-form input:focus,
.contato .php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.contato .php-email-form textarea {
  resize: none;
}

.contato .php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contato .php-email-form button[type="submit"]:hover {
  background: var(--accent-color);
}

.contato .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contato .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: #eee;
  animation: rotate 1s linear infinite;
}

.contato .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 5px;
}

.contato .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contato .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 5px;
}

.contato .horario-atendimento {
  margin-top: 50px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contato .horario-atendimento h3 {
  color: var(--secondary-color);
  font-size: 22px;
  margin-bottom: 20px;
}

.contato .horario-atendimento p {
  margin-bottom: 5px;
  font-size: 16px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# PolÃ­ticas e Termos Pages
--------------------------------------------------------------*/
.politica-privacidade,
.termos-uso {
  padding-top: 120px;
}

.politica-privacidade .section-title,
.termos-uso .section-title {
  margin-bottom: 40px;
}

.politica-privacidade h1,
.termos-uso h1 {
  color: var(--secondary-color);
  font-size: 32px;
  margin-bottom: 5px;
}

.politica-privacidade .policy-content h2,
.termos-uso .terms-content h2 {
  color: var(--primary-color);
  font-size: 24px;
  margin: 30px 0 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.politica-privacidade .policy-content p,
.termos-uso .terms-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.politica-privacidade .policy-content ul,
.termos-uso .terms-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.politica-privacidade .policy-content ul li,
.termos-uso .terms-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.politica-privacidade .policy-content strong,
.termos-uso .terms-content strong {
  color: var(--secondary-color);
}

.politica-privacidade a,
.termos-uso a {
  color: var(--primary-color);
}

.politica-privacidade a:hover,
.termos-uso a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #444;
  font-size: 14px;
  background: #f6f6f6;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.05);
}

.footer .footer-info {
  margin-bottom: 30px;
}

.footer .footer-info h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 700;
  position: relative;
}

.footer .footer-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer .social-links a {
  font-size: 16px;
  display: inline-block;
  color: var(--secondary-color);
  line-height: 1;
  margin-right: 10px;
  transition: 0.3s;
  width: 36px;
  height: 36px;
  background: #eeeeee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer .social-links a:hover {
  background: var(--primary-color);
  color: #fff;
}

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

.footer .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #666;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer .footer-newsletter h4 {
  margin-top: 25px;
}

.footer .footer-newsletter form {
  margin-top: 15px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

.footer .footer-newsletter form input[type="email"]:focus {
  outline: none;
}

.footer .footer-newsletter form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: var(--primary-color);
  font-size: 14px;
  padding: 0 15px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  color: #fff;
}

.footer .footer-newsletter form button:hover {
  background: var(--accent-color);
}

.footer .footer-legal {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #666;
  border-top: 1px solid #eee;
}

.footer .copyright {
  font-size: 14px;
}

.footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #888;
}

.footer .footer-legal .footer-links a {
  margin-left: 15px;
}

@media (max-width: 768px) {
  .footer .footer-legal .copyright,
  .footer .footer-legal .credits {
    text-align: center;
    float: none;
  }
  
  .footer .footer-legal .footer-links {
    text-align: center;
    margin-top: 10px;
  }
  
  .footer .footer-legal .footer-links a {
    margin: 0 5px;
  }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
}

[data-aos="fade-down"] {
  transform: translate3d(0, -30px, 0);
}

[data-aos="fade-right"] {
  transform: translate3d(-30px, 0, 0);
}

[data-aos="fade-left"] {
  transform: translate3d(30px, 0, 0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}