/* Importação de Fontes */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");

/* Variáveis CSS */
:root {
  --color-background: #1C1C1C;
  --color-text: #F0EAD6;
  --color-primary: #EEC643;
  --color-secondary: #2F2F2F;
  --color-accent: #FFDF6F;
  --font-family: "Poppins", sans-serif;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos Globais */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--color-background);
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button:focus {
  outline: none;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

/* 48px */
h2 {
  font-size: 2.25rem;
}

/* 36px */
h3 {
  font-size: 1.75rem;
}

/* 28px */
h4 {
  font-size: 1.375rem;
}

/* 22px */
h5 {
  font-size: 1.125rem;
}

/* 18px */
h6 {
  font-size: 1rem;
}

/* 16px */

p {
  margin-bottom: 1rem;
}

/* Utilitários */
.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* Listas */
ul,
ol {
  list-style-type: none;
}

/* Mídia */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}


/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: var(--color-background);
  z-index: 99999;
}

.preloader .loader {
  position: relative;
  width: 64px;
  height: 64px;
}

.preloader .loader .ytp-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
}

.preloader .loader .ytp-spinner-container {
  width: 100%;
  height: 100%;
  animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}

.preloader .loader .ytp-spinner-rotator {
  width: 100%;
  height: 100%;
  animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-left,
.preloader .loader .ytp-spinner-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.preloader .loader .ytp-spinner-left {
  left: 0;
}

.preloader .loader .ytp-spinner-right {
  right: 0;
}

.preloader .loader .ytp-spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border: 6px solid var(--color-primary);
  border-color: var(--color-primary) var(--color-primary) var(--color-secondary) var(--color-secondary);
  border-radius: 50%;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: var(--color-secondary);
  animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: var(--color-secondary);
  animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Animações do Preloader */
@keyframes ytp-spinner-linspin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ytp-spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }

  25% {
    transform: rotate(270deg);
  }

  37.5% {
    transform: rotate(405deg);
  }

  50% {
    transform: rotate(540deg);
  }

  62.5% {
    transform: rotate(675deg);
  }

  75% {
    transform: rotate(810deg);
  }

  87.5% {
    transform: rotate(945deg);
  }

  to {
    transform: rotate(1080deg);
  }
}

@keyframes ytp-spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  to {
    transform: rotate(130deg);
  }
}

@keyframes ytp-right-spin {
  0% {
    transform: rotate(-130deg);
  }

  50% {
    transform: rotate(5deg);
  }

  to {
    transform: rotate(-130deg);
  }
}


/* Botões */
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  border: 0;
  padding: 0 40px;
  font-size: 16px;
  line-height: 48px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.4s ease-out;
  background-color: var(--color-primary);
  color: var(--color-background);
}

.main-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-text);
}

.main-btn.main-btn-2 {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.main-btn.main-btn-2:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

/* Botão dourado com brilho premium */
.main-btn.gold-btn-shimmer {
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
  color: var(--color-background);
  border: none;
  border-radius: 50px;
  padding: 0 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.main-btn.gold-btn-shimmer::before,
.main-btn.gold-btn-shimmer::after {
  content: '';
  position: absolute;
}

.main-btn.gold-btn-shimmer::before {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(30deg);
  animation: shimmer-effect 4s linear infinite;
  z-index: 1;
}

.main-btn.gold-btn-shimmer::after {
  content: '';
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  position: absolute;
  top: -50%;
  left: -50%;
  animation: subtle-glow 6s infinite ease-in-out;
  z-index: 0;
}

@keyframes shimmer-effect {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

@keyframes subtle-glow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1.1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.main-btn.gold-btn-shimmer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, var(--color-accent), var(--color-primary));
}

.main-btn.gold-btn-shimmer:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}


/* Video */
.video-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.video-container iframe {
  width: 100%;
  max-width: 600px;
  border-radius: var(--carousel-image-radius);
  height: 338px;
  object-fit: cover;
  border: 2px solid gold;
  box-shadow: 0 0 5px gold;

}

@keyframes gold-shine {
  0% {
    box-shadow: 0 0 10px gold;
  }

  50% {
    box-shadow: 0 0 20px gold;
  }

  100% {
    box-shadow: 0 0 10px gold;
  }
}

/* Header e Navegação */
.header_area {
  padding-bottom: 60px;
}

.header_navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out;
  background-color: rgba(28, 28, 28, 0.8);
  padding: 0;
}

.header_navbar.sticky {
  position: fixed;
  background-color: var(--color-background);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.navbar-brand {
  padding: 0;
  margin-right: 20px;
}

.navbar-brand img {
  width: auto;
  height: 116px;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

.navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  transition: all 0.3s ease-out;
  padding: 10px 0;
  position: relative;
}

.navbar-nav .nav-item a::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: all 0.3s ease-out;
}

.navbar-nav .nav-item.active>a::before,
.navbar-nav .nav-item:hover>a::before {
  width: 100%;
}

.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: var(--color-secondary);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: var(--color-text);
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: var(--color-primary);
}

.sticky .navbar-nav .nav-item a {
  color: var(--color-text);
}

.sticky .navbar-nav .nav-item.active>a,
.sticky .navbar-nav .nav-item:hover>a {
  color: var(--color-primary);
}

/* Posicionamento na navbar */
.social-media-wrapper {
  display: flex;
  gap: 15px;
  margin-left: 30px;
  align-items: center;
}

.social-login-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
  left: 8rem;

}

.social-login-icons svg {
  width: 70px;
}

.social-icon-1,
.social-icon-1-1,
.social-icon-2,
.social-icon-2-2,
.social-icon-3,
.social-icon-3-3 {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin: 20px 0 0px 0;
}

.icon svg {
  fill: #ffffff;
}

.socialcontainer {
  height: 80px;
  overflow: hidden;
}

.social-icon-1 {
  transition-duration: 0.4s;
  background-color: #25D366;
  /* WhatsApp green */
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
}

.social-icon-1 svg,
.social-icon-2 svg,
.social-icon-3 svg {
  opacity: 0;
  transition-duration: 0.5s;
  transition-delay: 0.2s;
}

.social-icon-1-1 {
  transition-duration: 0.4s;
  background-color: rgb(0, 0, 0, 0);
}

.socialcontainer:hover .social-icon-1 {
  transform: translateY(-70px);
}

.socialcontainer:hover .social-icon-1 svg,
.socialcontainer:hover .social-icon-2 svg,
.socialcontainer:hover .social-icon-3 svg {
  opacity: 1;
}

.social-icon-2 {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  background: linear-gradient(72.44deg,
      #ff7a00 11.92%,
      #ff0169 51.56%,
      #d300c5 85.69%);
}

.socialcontainer:hover .social-icon-2 {
  transform: translateY(-70px);
}

.social-icon-3 {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.46, -0.78, 0.5, 1.56);
  background: #316ff6;
}

.socialcontainer:hover .social-icon-3 {
  transform: translateY(-70px);
}

/* Slider Area */
:root {
  --slider-height: 750px;
  --slider-border-radius: 200px;
  --slider-overlay-color: rgba(28, 28, 28, 0.7);
  --slider-title-size: 47px;
  --slider-text-size: 26px;
  --slider-text-max-width: 550px;
}

.slick-slide {
  outline: none;
}

.single_slider {
  height: var(--slider-height);
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: var(--slider-border-radius);
}

.single_slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--slider-overlay-color);
}

.slider_content {
  padding-top: 50px;
}

.slider_content .slider_title {
  font-size: var(--slider-title-size);
  color: var(--color-text);
  margin-top: 15px;
}

.slider_content p {
  font-size: var(--slider-text-size);
  color: var(--color-text);
  margin-top: 30px;
  max-width: var(--slider-text-max-width);
}

.slider_content .main-btn {
  margin-top: 45px;
}

/* Service Area */
:root {
  --services-title-size: 30px;
  --services-icon-size: 120px;
  --services-item-gap: 20px;
  --services-item-margin-bottom: 40px;
}

.services_area {
  position: relative;
  padding: 60px;
}

.section_title_container {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.section_title {
  text-align: center;
  padding: 10px;

}

.section_title .title {
  font-size: var(--services-title-size);
  font-weight: 700;
  color: var(--color-primary);
}

.services_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.single_services {
  flex-basis: calc(25% - var(--services-item-gap));
  margin-bottom: var(--services-item-margin-bottom);
}

.services_icon img {
  width: var(--services-icon-size);
  height: var(--services-icon-size);
}

/* About Area */
:root {
  --about-bg-width: 50%;
  --about-bg-opacity: 0.2;
  --about-image-border-radius: 40px;
  --about-content-padding: 45px;
  --about-subtitle-size: 38px;
  --about-subtitle-span-size: 70px;
  --about-title-size: 40px;
  --about-vertical-line-width: 9px;
  --about-spacing: 25px;
}

.about_area {
  position: relative;
  z-index: 5;
}

.about_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--about-bg-width);
  height: 100%;
  z-index: -1;
  opacity: var(--about-bg-opacity);
  padding-right: 280px;
}

.about_bg .about_bg_image {
  width: 100%;
  height: 100%;
}

.about_image img {
  width: 100%;
  border-radius: var(--about-image-border-radius);
}

.about_content {
  padding-left: var(--about-content-padding);
}

.about_content .sub_title {
  font-size: var(--about-subtitle-size);
  font-weight: 400;
  position: relative;
  color: var(--color-text);
}

.about_content .sub_title::before {
  content: '';
  position: absolute;
  width: var(--about-vertical-line-width);
  height: 100%;
  left: calc(-1 * var(--about-content-padding));
  top: 0;
  background-color: var(--color-primary);
}

.about_content .sub_title span {
  font-size: var(--about-subtitle-span-size);
  font-weight: 800;
  color: var(--color-primary);
}

.about_content .main_title {
  font-size: var(--about-title-size);
  margin-top: var(--about-spacing);
  color: var(--color-text);
}

.about_content p {
  margin-top: var(--about-spacing);
  color: var(--color-text);
}

/* Features Area */
:root {
  --features-padding: 80px 0 100px;
  --features-gap: 40px;
  --carousel-transition: 0.5s ease-in-out;
  --carousel-image-height: 300px;
  --carousel-image-radius: 40px;
  --button-size: 50px;
  --button-font-size: 18px;
  --button-position: 20px;
  --content-padding: 2.5rem;
  --title-font-size: 30px;
  --description-font-size: 20px;
  --features-button-padding: 0 40px;
  --features-button-height: 48px;
  --features-button-font-size: 16px;
  --shimmer-duration: 3s;
  --max-widht: 1200px;
}

.features_container {
  max-width: var(--max-widht);
  margin: 0 auto;
  padding: 60px;
}

.swiper {
  width: 100%;
  height: 100%;
  
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #1C1C1C;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--carousel-image-height);
 
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  
}

.features_content {
  padding: var(--content-padding);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features_title {
  font-size: var(--title-font-size);
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  padding: 30px 0;
}

.features_description {
  color: var(--color-text);
  font-size: var(--description-font-size);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 30px;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.features_button {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: var(--features-button-padding);
  font-size: var(--features-button-font-size);
  line-height: var(--features-button-height);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: none;
  border-radius: 50px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
  color: var(--color-background);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.features_button::before,
.features_button::after {
  content: '';
  position: absolute;
}

.features_button::before {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(30deg);
  animation: shimmer-effect 4s linear infinite;
  z-index: 1;
}

.features_button::after {
  content: '';
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  position: absolute;
  top: -50%;
  left: -50%;
  animation: subtle-glow 6s infinite ease-in-out;
  z-index: 0;
}

@keyframes shimmer-effect {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

@keyframes subtle-glow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1.1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.features_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, var(--color-accent), var(--color-primary));
  color: var(--color-background);
}

.features_button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}


/* FAQ AREA */
.faq_area {
  background-color: var(--color-background);

}

.faq_content {
  max-width: 800px;
  margin: 0 auto;


}

.faq_item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--color-secondary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq_button {
  display: block;
  width: 100%;
  padding: 20px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
  border: none;
  text-align: left;
  color: var(--color-background);
  font-weight: 600;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.faq_button:is(:hover, :focus) {
  background: linear-gradient(145deg, var(--color-accent), var(--color-primary));
  text-decoration: none;
  outline: none;
}

.faq_button::after {
  content: '\002B';
  font-size: 24px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.faq_button[aria-expanded="true"]::after {
  content: '\2212';
}

.faq_body {
  padding: 20px;
  background-color: var(--color-secondary);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}

.collapse {
  transition: all 0.3s ease;
}

/* Brand Logo */
.partner-circle {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 50px auto;
}

.partner-logo {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.partner-logo.active {
  transform: scale(1.5);
  z-index: 10;
}

.partner-logo.inactive {
  filter: blur(2px);
}

/* Contact */
.contact_form .single_form {
  margin-top: 30px;
}

.contact_form .single_form textarea,
.contact_form .single_form input {
  width: 100%;
  height: 55px;
  padding: 0 25px;
  border: 1px solid var(--color-secondary);
  border-radius: 5px;
  background-color: var(--color-background);
  color: var(--color-text);
}

.contact_form .single_form textarea:focus,
.contact_form .single_form input:focus {
  border-color: var(--color-primary);
}

.contact_form .single_form textarea {
  padding-top: 15px;
  resize: none;
  height: 125px;
}

.contact_info p,
.single_info .info_content p {
  color: var(--color-text);
}

.contact_info p {
  margin-top: 15px;
}

.single_info {
  margin-top: 30px;
}

.single_info .info_icon img {
  width: 60px;
  height: 60px;
}

.single_info .info_content {
  padding-left: 15px;
}

.single_info .info_content p {
  margin-top: 0;
}

/* Footer */
.footer_area {
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.footer_area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-secondary);
  z-index: -1;
}

.footer_widget {
  padding: 20px 0;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_logo img {
  max-width: 100%;
  height: 10rem;
  margin-top: 20px;
}

.footer_links {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.footer_link_group {
  margin-left: 30px;
}

.footer_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.link {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.link a:hover,
.footer_link_wrapper .footer_link .link li a:hover {
  color: var(--color-primary);
}



/* animations */
@keyframes ytp-spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }

  25% {
    transform: rotate(270deg);
  }

  37.5% {
    transform: rotate(405deg);
  }

  50% {
    transform: rotate(540deg);
  }

  62.5% {
    transform: rotate(675deg);
  }

  75% {
    transform: rotate(810deg);
  }

  87.5% {
    transform: rotate(945deg);
  }

  to {
    transform: rotate(1080deg);
  }
}

@keyframes ytp-spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  to {
    transform: rotate(130deg);
  }
}

@keyframes ytp-right-spin {
  0% {
    transform: rotate(-130deg);
  }

  50% {
    transform: rotate(5deg);
  }

  to {
    transform: rotate(-130deg);
  }
}

/* Estilo do botão flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 1.5s infinite;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: #FFFFFF;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
  background-color: #20b556;
}

/* Animação de pulso */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Media Queries */
@media only screen and (min-width: 1400px) {
  .single_slider {
    height: 950px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .navbar-brand img {
    height: 100px;
  }

  .navbar-nav .nav-item {
    margin-left: 20px;
  }

  .navbar-nav .nav-item a {
    font-size: 14px;
  }

  .single_slider {
    height: 780px;
  }

  .slider_content .slider_title {
    font-size: 34px;
  }

  .slider_content p {
    font-size: 16px;
    max-width: 450px;
  }

  .video-container {
    margin: 10px;
  }

  .video-container video {
    width: 80%;
  }

  .main-btn {
    position: relative;
    left: 1rem;
    bottom: 1rem;
  }



}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .navbar-brand img {
    height: 100px;
  }

  /* Menu hambúrguer aprimorado */
  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: background-color 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -6px;
  }


  .navbar-toggler-icon::after {
    bottom: -6px;
  }


  /* Menu lateral otimizado e criativo */
  .navbar-collapse {
    display: block;
    position: fixed;
    top: 0;
    right: -280px;
    width: 250px;
    height: 50vh;
    background-color: #1c1c1cc9;
    padding: 40px 0 20px;
    overflow: hidden;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-outright 0.3s ease, background-color 0.3s ease;
  }

  .navbar-collapse.show {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
  }

  .navbar-nav {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;

  }

  .navbar-nav .nav-item a {
    display: block;
    padding: 15px 0;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .navbar-nav .nav-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-item a:hover::before,
  .navbar-nav .nav-item a:focus::before {
    width: 100%;
    left: 0;
  }

  .navbar-nav .nav-item a:hover,
  .navbar-nav .nav-item a:focus {
    color: var(--color-primary);
    transform: translateY(-3px);
  }

  .navbar-nav .nav-item.active a {
    color: var(--color-primary);
    font-weight: 700;
  }

  .navbar-collapse.show .nav-item {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index));
  }

  .social-media-wrapper {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-20%);
    z-index: 999;
  }

  /* Ajustes para o container das redes sociais */
  .socialcontainer {
    height: 60px;
    position: relative;
    right: 50px;
  }

  /* Ajustes para os icones das redes sociais */
  .social-icon {
    width: 40px;
    height: 40px;
  }


  .social-icon-1,
  .social-icon-1-1,
  .social-icon-2,
  .social-icon-2-2,
  .social-icon-3,
  .social-icon-3-3 {
    width: 40px;
    height: 40px;
  }

  .single_slider {
    height: 660px;
    border-bottom-left-radius: 60px;
  }

  .slider_content {
    padding-top: 88px;
  }

  .slider_content .slider_title {
    font-size: 28px;
    line-height: 1.3;
  }

  .slider_content p {
    font-size: 20px;
    margin-top: 15px;
  }

  .services_area {
    height: 44vh;
  }

  .main-btn {
    padding: 0 25px;
    font-size: 14px;
    line-height: 40px;
  }

  .about_image {
    width: 400px;
  }

  .about_area {
    padding: 0px;
  }

  .section_title .title {
    font-size: 24px;
  }

  .about_content .sub_title {
    font-size: 22px;
  }

  .about_content .sub_title span {
    font-size: 40px;
  }

  .about_content .main_title {
    font-size: 22px;
  }

  .single_services .services_content .title {
    font-size: 20px;
  }

  .faq_area {
    height: 52vh;
  }

  .brand_logo_area {
    height: 80vh;
  }

  .video-container {
    margin: 0px;
  }

  .video-container iframe {
    width: 460px;
    height: 260px;

  }

}

@media only screen and (min-width: 576px) and (max-width: 767px) {

  .single_slider {
    height: 690px;
    border-bottom-left-radius: 60px;
  }

  .slider_content {
    padding-top: 88px;
  }

  .slider_content .slider_title {
    font-size: 24px;
    line-height: 1.3;
  }

  .slider_content p {
    font-size: 20px;
    margin-top: 15px;
  }

  .main-btn {
    padding: 0 25px;
    font-size: 14px;
    line-height: 40px;
    position: relative;
    bottom: 1rem;
  }

  .video-container {
    margin: 0px;
  }

  .video-container iframe {
    width: 460px;
    height: 260px;
  }

  .navbar-brand img {
    width: 15rem;
    position: relative;
    left: 8rem;
    top: 0.7rem;
  }

  /* Menu hambúrguer aprimorado */
  .navbar-toggler {
    border: none;
    padding-right: 20px;
    cursor: pointer;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
    display: block;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 54%;
    background-color: #1c1c1cc9;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-item a {
    font-size: 20px;
    color: var(--color-text);
  }

  .navbar-nav .nav-item a:hover,
  .navbar-nav .nav-item a:focus {
    color: var(--color-primary);
    transform: translateY(-3px);
  }

  .navbar-nav .nav-item.active a {
    color: var(--color-primary);
    font-weight: 700;
  }

  .navbar-collapse.show .nav-item {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index));
  }

  .social-media-wrapper {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-20%);
    z-index: 999;
  }

  /* Ajustes para o container das redes sociais */
  .socialcontainer {
    width: 60px;
    height: 80px;
    position: relative;
    right: 100px;
    bottom: 10px;
  }


  .services_area {
    height: 40vh;
    padding: 0px;
  }

  .services_container {
    padding-top: 70px;
  }

  .section_title_container {
    padding: 0px;
  }

  .section_title .title {
    font-size: 20px;
  }

  .single_services .services_content .title {
    font-size: 16px;
  }

  .single_services .services_content p {
    font-size: 12px;
  }

  .about_area {
    padding: 60px;
    padding-bottom: 0px;
  }

  .about_image {
    text-align: center;
    padding: 0px;
  }

  .about_image img {
    width: 80%;
  }

  .about_content {
    padding: 0px;
  }

  .about_content .main_title {
    font-size: 22px;
  }

  .about_content p {
    font-size: 14px;
  }

  .features_area {
    padding: 0px;
  }

  .features_container {
    padding: 0px;
  }

  .features_content {
    padding: 20px;
  }

  .features_container .features_title {
    font-size: 24px;
  }

  .faq_area {
    padding: 0px;
  }

  .brand_logo_area {
    height: 80vh;
  }

  .brand_logo_area .brand_logo {
    padding: 0px;
  }

  .brand_logo_area .brand_logo img {
    width: 50%;
  }

  .contact_area {
    padding: 20px;
  }

  .contact_container {
    padding: 20px;
  }

  .contact_content {
    padding: 20px;
  }

  .contact_content .contact_title {
    font-size: 24px;
  }

  .contact_content p {
    font-size: 14px;
  }

  .contact_form {
    padding: 20px;
  }

  .contact_form .single_form {
    margin-top: 20px;
  }

  .footer_content p {
    font-size: 14px;
  }

  .footer_content .footer_title {
    font-size: 14px;

  }

  .footer_content .footer_logo {
    width: 45%;
  }

  .footer_links {
    flex-direction: column;
  }

  .footer_link_group {
    position: relative;
    margin-top: 10px;
    left: 120px;
  }

  .footer_link_group .footer_title {
    font-size: 14px;
  }

  .footer_link_group .link a {
    font-size: 12px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

}

@media screen and (min-width: 515px) and (max-width: 575px) {

  .single_slider {
    height: 700px;
    border-bottom-left-radius: 60px;
  }

  .video-container {
    margin-top: 30px;
  }

  .video-container iframe {
    width: 80%;
    height: 248px;

  }

  .slider_content .slider_title {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 105px;
  }

  .slider_content p {
    font-size: 20px;
    margin-top: 15px;
  }

  .main-btn {
    padding: 0 25px;
    font-size: 14px;
    line-height: 40px;
    position: relative;
    bottom: 1rem;
  }

  .navbar-brand img {
    width: 15rem;
    position: relative;
    left: 8rem;
    top: 0.7rem;
  }

  /* Menu hambúrguer aprimorado */
  .navbar-toggler {
    border: none;
    padding-right: 20px;
    cursor: pointer;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
    display: block;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 36%;
    height: 54%;
    background-color: #1c1c1cc9;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-item a {
    font-size: 20px;
    color: var(--color-text);
  }

  .navbar-nav .nav-item a:hover,
  .navbar-nav .nav-item a:focus {
    color: var(--color-primary);
    transform: translateY(-3px);
  }

  .navbar-nav .nav-item.active a {
    color: var(--color-primary);
    font-weight: 700;
  }

  .navbar-collapse.show .nav-item {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index));
  }

  /* Ajustes para o container das redes sociais */
  .socialcontainer {
    width: 50px;
    height: 80px;
    position: relative;
    right: 110px;
    bottom: 10px;
  }


  .services_area {
    height: 40vh;
    padding: 0px;
  }

  .services_container {
    padding-top: 70px;
  }

  .section_title_container {
    padding: 0px;
  }

  .section_title .title {
    font-size: 20px;
  }

  .single_services .services_content .title {
    font-size: 16px;
  }

  .single_services .services_content p {
    font-size: 12px;
  }

  .about_area {
    padding: 60px;
    padding-bottom: 0px;
  }

  .about_image {
    text-align: center;
    padding: 0px;
  }

  .about_image img {
    width: 80%;
  }

  .about_content {
    padding: 0px;
  }

  .about_content .main_title {
    font-size: 22px;
  }

  .about_content p {
    font-size: 14px;
  }

  .features_area {
    padding: 0px;
  }

  .features_container {
    padding: 0px;
  }

  .features_content {
    padding: 20px;
  }

  .features_container .features_title {
    font-size: 24px;
  }

  .faq_area {
    padding: 0px;
  }

  .brand_logo_area {
    height: 80vh;
  }

  .brand_logo_area .brand_logo {
    padding: 0px;
  }

  .brand_logo_area .brand_logo img {
    width: 50%;
  }

  .whatsapp-float {
    width: 70px;
    height: 70px;
    bottom: 5px;
    right: 5px;
  }


}

@media screen and (min-width: 475px) and (max-width: 514px) {

  .single_slider {
    height: 620px;
    border-bottom-left-radius: 60px;
  }

  .video-container iframe {
    width: 80%;
    height: 220px;
  }

  .slider_content .slider_title {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 90px;
  }

  .slider_content p {
    font-size: 20px;
    margin-top: 15px;
  }

  .main-btn {
    padding: 0 25px;
    font-size: 14px;
    line-height: 40px;
    position: relative;
    bottom: 1rem;
  }

  .navbar-brand img {
    width: 15rem;
    position: relative;
    left: 8rem;
    top: 0.7rem;
  }

  /* Menu hambúrguer aprimorado */
  .navbar-toggler {
    border: none;
    padding-right: 20px;
    cursor: pointer;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
    display: block;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 38%;
    height: 53%;
    background-color: #1c1c1cc9;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-item a {
    font-size: 20px;
    color: var(--color-text);
  }

  .navbar-nav .nav-item a:hover,
  .navbar-nav .nav-item a:focus {
    color: var(--color-primary);
    transform: translateY(-3px);
  }

  .navbar-nav .nav-item.active a {
    color: var(--color-primary);
    font-weight: 700;
  }

  .navbar-collapse.show .nav-item {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index));
  }

  .socialcontainer {
    width: 50px;
    height: 80px;
    position: relative;
    right: 110px;
    bottom: 10px;
  }


  .services_area {
    height: 40vh;
    padding: 0px;
  }

  .services_container {
    padding-top: 70px;
  }

  .section_title_container {
    padding: 0px;
  }

  .section_title .title {
    font-size: 20px;
  }

  .single_services .services_content .title {
    font-size: 16px;
  }

  .single_services .services_content p {
    font-size: 12px;
  }

  .about_area {
    padding: 60px;
    padding-bottom: 0px;
  }

  .about_image {
    text-align: center;
    padding: 0px;
  }

  .about_image img {
    width: 80%;
  }

  .about_content {
    padding: 0px;
  }

  .about_content .main_title {
    font-size: 22px;
  }

  .about_content p {
    font-size: 14px;
  }

  .features_area {
    padding: 0px;
  }

  .features_container {
    padding: 0px;
  }

  .features_content {
    padding: 20px;
  }

  .features_container .features_title {
    font-size: 24px;
  }

  .faq_area {
    padding: 10px;
  }

  .faq_area .main_title {
    font-size: 20px;
  }

  .faq_button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .footer_area {
    padding: 20px;
  }

  .brand_logo_area {
    display: none;
  }

  .contact_area {
    padding: 20px;
  }

  .contact_container {
    padding: 0px;
  }


  .contact_area {
    padding: 20px;
  }

  .whatsapp-float {
    width: 70px;
    height: 70px;
    bottom: 5px;
    right: 5px;
  }

}

@media screen and (min-width: 425px) and (max-width: 474px) {
  .single_slider {
    height: 600px;
    border-bottom-left-radius: 60px;
  }

  .slider_content .slider_title {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 100px;
  }

  .video-container iframe {
    width: 80%;
    height: 202px;
    max-width: 100%;
  }

  .slider_content p {
    font-size: 18px;
    margin-top: 15px;
  }

  .main-btn {
    padding: 0 25px;
    font-size: 14px;
    line-height: 40px;
    position: relative;
    bottom: 1rem;
  }

  .navbar-brand img {
    width: 15rem;
    position: relative;
    left: 5rem;
    top: 0.7rem;
  }

  /* Menu hambúrguer aprimorado */
  .navbar-toggler {
    border: none;
    padding-right: 20px;
    cursor: pointer;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
    display: block;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navbar-collapse {
    position: absolute;
    top: 0;
    left: 60%;
    width: 50%;
    background-color: #1c1c1cc9;
    padding: 0 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-item a {
    font-size: 20px;
    color: var(--color-text);
  }

  .navbar-nav .nav-item a:hover,
  .navbar-nav .nav-item a:focus {
    color: var(--color-primary);
    transform: translateY(-3px);
  }

  .navbar-nav .nav-item.active a {
    color: var(--color-primary);
    font-weight: 700;
  }

  .navbar-collapse.show .nav-item {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index));
  }

  .socialcontainer {
    width: 50px;
    height: 80px;
    position: relative;
    right: 130px;
    bottom: 10px;
  }

  .services_area {
    height: 34vh;
    padding: 10px;
  }

  .services_container {
    padding-top: 70px;
  }

  .section_title_container {
    padding: 0px;
  }

  .section_title .title {
    font-size: 16px;
  }

  .single_services .services_content .title {
    font-size: 13px;
  }

  .single_services .services_content p {
    font-size: 10px;
  }

  .about_area {
    padding: 0px;
    padding-bottom: 0px;
  }

  .about_image {
    text-align: center;
    padding: 0px;
  }

  .about_image img {
    width: 80%;
  }

  .about_content {
    padding: 0px;
  }

  .about_content .main_title {
    font-size: 22px;
  }

  .about_content p {
    font-size: 14px;
  }

  .features_area {
    padding: 0px;
  }

  .features_container {
    padding: 0px;
  }

  .features_content {
    padding: 20px;
  }

  .features_container .features_title {
    font-size: 24px;
  }

  .faq_area {
    padding: 10px;
  }

  .faq_area .main_title {
    font-size: 20px;
  }

  .faq_button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .footer_area {
    padding: 20px;
  }

  .footer_logo img {
    display: none;
  }

  .brand_logo_area {
    display: none;
  }

  .contact_area {
    padding: 20px;
  }

  .contact_container {
    padding: 0px;
  }


  .contact_area {
    padding: 20px;
  }

  .whatsapp-float {
    width: 70px;
    height: 70px;
    bottom: 5px;
    right: 5px;
  }

}

@media screen and (min-width: 375px) and (max-width: 424px) {
  .single_slider {
    height: 580px;
    border-bottom-left-radius: 60px;
  }

  .video-container iframe {
    width: 90%;
    height: 182px;
  }

  .slider_content .slider_title {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 90px;
  }

  .slider_content p {
    font-size: 16px;
    margin-top: 15px;
  }

  .main-btn {
    padding: 0 25px;
    font-size: 14px;
    line-height: 40px;
    position: relative;
  }

  .navbar-brand img {
    width: 15rem;
    position: relative;
    left: 3rem;
    top: 0.7rem;
  }

  /* Menu hambúrguer aprimorado */
  .navbar-toggler {
    border: none;
    background-color: transparent;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
    display: block;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    top: 8px;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navbar-collapse {
    position: absolute;
    top: 0;
    left: 50%;
    width: 54%;
    background-color: #1c1c1cc9;
    padding: 0 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-item a {
    font-size: 20px;
    color: var(--color-text);
  }

  .navbar-nav .nav-item a:hover,
  .navbar-nav .nav-item a:focus {
    color: var(--color-primary);
    transform: translateY(-3px);
  }

  .navbar-nav .nav-item.active a {
    color: var(--color-primary);
    font-weight: 700;
  }

  .navbar-collapse.show .nav-item {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index));
  }

  .socialcontainer {
    width: 50px;
    height: 80px;
    position: relative;
    right: 120px;
    bottom: 10px;
  }

  .services_area {
    height: 34vh;
    padding: 0px;
  }

  .services_container {
    padding-top: 40px;
  }

  .section_title_container {
    padding: 0px;
  }

  .section_title .title {
    font-size: 13.5px;
  }

  .single_services .services_content .title {
    font-size: 12px;
  }

  .single_services .services_content p {
    font-size: 10px;
  }

  .about_area {
    padding: 0px;

  }

  .about_image {
    text-align: center;
    padding: 0px;
  }

  .about_image img {
    width: 70%;
  }

  .about_content {
    padding: 60px;
  }

  .about_content .main_title {
    font-size: 20px;
  }

  .about_content .sub_title span {
    font-size: 44px;
  }

  .about_content p {
    font-size: 14px;
  }

  .features_area {
    padding: 0px;
  }

  .features_container {
    padding: 0px;
  }

  .features_content {
    padding: 20px;
  }

  .features_container .features_title {
    font-size: 24px;
  }

  .faq_area {
    padding: 10px;
  }

  .faq_area .main_title {
    font-size: 20px;
  }

  .faq_button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .footer_area {
    padding: 20px;
  }

  .footer_logo img {
    display: none;
  }

  .brand_logo_area {
    display: none;
  }

  .contact_area {
    padding: 0px;
  }

  .contact_container {
    padding: 0px;
  }


  .contact_area {
    padding: 0px;
    font-size: 14px;
  }

  .whatsapp-float {
    width: 70px;
    height: 70px;
    bottom: 5px;
    right: 5px;
  }

}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .header_navbar {
    padding: 0px;
    height: 80px;
  }


  .single_slider {
    height: 580px;
    border-bottom-left-radius: 60px;
  }

  .video-container iframe {
    width: 100%;
    height: 190px;
  }

  .slider_content .slider_title {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 30px;
  }

  .slider_content p {
    font-size: 12px;

  }

  .main-btn {
    padding: 0 20px;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
  }

  .navbar-brand {
    position: relative;
  }

  .navbar-brand img {
    width: 10rem;
    position: relative;
    left: 3rem;
    bottom: 0.7rem;
  }

  /* Menu hambúrguer aprimorado */
  .navbar-toggler {
    border: none;
    background-color: transparent;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 15px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
    display: block;
    bottom: 1rem;
    right: 0.5rem;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -6px;
  }

  .navbar-toggler-icon::after {
    top: 6px;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navbar-collapse {
    position: absolute;
    top: 0;
    left: 50%;
    width: 56%;
    background-color: #1c1c1cc9;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .navbar-nav .nav-item {
    margin: 15px 0;
  }

  .navbar-nav .nav-item a {
    font-size: 18px;
    color: var(--color-text);
  }

  .navbar-nav .nav-item a:hover,
  .navbar-nav .nav-item a:focus {
    color: var(--color-primary);
    transform: translateY(-3px);
  }

  .navbar-nav .nav-item.active a {
    color: var(--color-primary);
    font-weight: 700;
  }

  .navbar-collapse.show .nav-item {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--item-index));
  }

  .socialcontainer {

    height: 80px;
    position: relative;
    right: 120px;
    bottom: 10px;
  }

  .services_area {
    height: 26vh;
    padding: 0px;
  }

  .services_container {
    padding-top: 20px;
  }

  .section_title_container {
    padding: 0px;
  }

  .section_title .title {
    font-size: 18px;
  }

  .single_services .services_content .title {
    font-size: 10px;
  }

  .single_services .services_content p {
    font-size: 8px;
  }

  .about_area {
    padding: 0px;

  }

  .about_image {
    text-align: center;
    padding: 0px;
  }

  .about_image img {
    width: 70%;
  }

  .about_content {
    padding: 40px;
  }

  .about_content .main_title {
    font-size: 16px;
  }

  .about_content .sub_title span {
    font-size: 36px;
  }

  .about_content .sub_title h3 {
    font-size: 20px;
  }

  .about_content p {
    font-size: 13px;
  }

  .features_area {
    padding: 0px;
  }

  .features_container {
    padding: 0px;
  }

  .features_content {
    padding: 20px;
  }

  .features_container .features_title {
    font-size: 20px;
  }

  .features_container p {
    font-size: 13px;
  }


  .faq_button {
    padding: 26px;
    font-size: 12px;
  }

  .faq_button::after {
    font-size: 18px;

  }

  .footer_area {
    padding: 0px;

  }

  .footer_container {
    padding: 0px;

  }

  .footer_content {
    padding: 0px;
    position: relative;
    right: 20px;
  }

  .footer_content p {
    font-size: 10px;
  }

  .footer_logo img {
    display: none;
  }

  .brand_logo_area {
    display: none;
  }

  .contact_area {
    padding: 0px;
  }

  .contact_container {
    padding: 0px;
  }


  .contact_area {
    padding: 0px;
    font-size: 10px;
  }

  .whatsapp-float {
    width: 70px;
    height: 70px;
    bottom: 5px;
    right: 5px;
  }
}