@charset "UTF-8";
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@keyframes pulse-blue {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(31, 115, 198, 0.7);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 15px rgba(31, 115, 198, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(31, 115, 198, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(4, 12, 29, 0.95);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
header .navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 5%;
  min-height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}
header .navbar .logo-link {
  transition: transform 0.3s ease;
}
header .navbar .logo-link .logo-img {
  width: 110px;
  animation: fadeIn 1.5s ease-out forwards;
}
header .navbar .logo-link:hover {
  transform: scale(1.05);
}
header .navbar .btn-mobile {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  order: 2;
}
header .navbar .btn-default {
  display: none;
}
header .navbar .btn-default .nav-logo-contato {
  width: 25px;
}
header .navbar ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(4, 12, 29, 0.98);
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  padding: 0;
}
header .navbar ul.show {
  max-height: 400px;
  opacity: 1;
  padding: 2rem 0;
  border-bottom: 2px solid #1f73c6;
}
header .navbar ul li a {
  color: #e1e4e8;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
header .navbar ul li a:hover {
  color: #1f73c6;
}
@media (min-width: 769px) {
  header .navbar {
    padding: 15px 5%;
  }
  header .navbar .btn-mobile {
    display: none;
  }
  header .navbar .logo-link .logo-img {
    width: 140px;
  }
  header .navbar ul {
    position: static;
    max-height: none;
    opacity: 1;
    overflow: visible;
    background-color: transparent;
    flex-direction: row;
    width: auto;
    gap: 2rem;
    padding: 0;
  }
  header .navbar ul li a {
    font-size: 1rem;
    font-weight: 400;
  }
  header .navbar ul li a:hover {
    border-bottom: 2px solid #1f73c6;
  }
  header .navbar .btn-default {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
  }
  header .navbar .btn-default:hover {
    transform: scale(1.1);
  }
}

#home {
  background-color: #f0f2f5;
  padding: 80px 6% 60px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}
#home .home-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
#home .home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
#home .home-content.active {
  opacity: 1;
  transform: translateY(0);
}
#home .home-title {
  margin-top: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  font-weight: 800;
  color: #040c1d;
  line-height: 1.2;
}
#home .home-title span {
  letter-spacing: 1px;
  color: #1f73c6;
  position: relative;
  display: inline-block;
  z-index: 1;
}
#home .home-title span::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(31, 115, 198, 0.1);
  z-index: -1;
}
#home .home-description {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 550px;
  line-height: 1.6;
  font-weight: 500;
}
#home .home-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}
#home .home-actions .btn {
  padding: 16px 25px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
#home .home-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
#home .home-trust p {
  background: rgba(31, 115, 198, 0.05);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(31, 115, 198, 0.1);
  font-size: 0.9rem;
  color: rgba(74, 85, 104, 0.6);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#home .home-trust p i {
  color: #28a745;
  margin-right: 8px;
  transition: all 1s;
}
#home .home-trust p:hover {
  background: rgba(31, 115, 198, 0.1);
  transform: translateY(-3px);
}
#home .home-trust p:hover i {
  transform: scale(1.2);
}
#home .home-image-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 25px;
  overflow: hidden;
}
#home .home-image-wrapper .home-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
#home .home-image-wrapper:hover .home-image {
  transform: scale(1.05);
}
@media (min-width: 1024px) {
  #home {
    padding: 60px 6% 40px;
  }
  #home .home-container {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 60px 80px;
    gap: 60px;
  }
  #home .home-content {
    align-items: flex-start;
    text-align: left;
  }
  #home .home-title {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
  }
  #home .home-actions {
    flex-direction: row;
  }
  #home .home-actions .btn {
    width: auto;
  }
  #home .home-trust {
    flex-direction: row;
    justify-content: flex-start;
  }
  #home .home-image-wrapper {
    height: 500px;
  }
}

#services {
  padding: 80px 6%;
  background: linear-gradient(180deg, #ffffff 0%, #f0f2f5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
#services .services-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#services .services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}
#services .services-cards .services-card {
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  width: 100%;
  position: relative;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (hover: hover) {
  #services .services-cards .services-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(31, 115, 198, 0.3);
    z-index: 10;
  }
}
#services .services-cards .services-card img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#services .services-cards .services-card .services-rate {
  background-color: #f8f9fa;
  padding: 8px 15px;
  border-radius: 12px;
  margin: 20px auto 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 0.9rem;
}
#services .services-cards .services-card .services-rate i {
  color: #FFD700;
}
#services .services-cards .services-card .services-card-content {
  padding: 10px 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  flex-grow: 1;
}
#services .services-cards .services-card .services-card-content .services-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #040c1d;
  line-height: 1.3;
  margin: 0;
}
#services .services-cards .services-card .services-card-content .services-card-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  #services {
    padding: 60px 5%;
  }
  #services .services-cards {
    /* Mudamos para 1fr para ocupar a largura disponível sem transbordar */
    grid-template-columns: 1fr;
    /* Garantimos que o grid não tente centralizar algo maior que a tela */
    justify-content: stretch;
    justify-items: center;
    gap: 20px;
    width: 100%;
  }
  #services .services-cards .services-card {
    /* Garante que o card nunca seja maior que a largura do celular */
    max-width: 100%;
    width: 100%;
  }
}
#schedule {
  padding: 60px 5%;
  background-color: #f0f2f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
#schedule .title {
  color: #040c1d;
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
}
#schedule .schedule-wrapper {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
}
#schedule .schedule-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
@media (hover: hover) {
  #schedule .schedule-image:hover {
    transform: scale(1.03) rotate(1.5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #ffffff;
  }
}
#schedule .schedule-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
#schedule .schedule-description {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 500px;
}
#schedule .btn-default {
  padding: 16px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  background-color: #1f73c6;
  color: #ffffff;
  animation: pulse-blue 2s infinite;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#schedule .btn-default:hover {
  animation: none;
  background-color: #040c1d;
}
@media (min-width: 992px) {
  #schedule {
    padding: 100px 5%;
  }
  #schedule .schedule-wrapper {
    flex-direction: row;
    padding: 60px;
    justify-content: space-evenly;
    text-align: left;
  }
  #schedule .schedule-content {
    align-items: flex-start;
    flex: 1;
  }
  #schedule .schedule-description {
    text-align: left;
  }
}

#about {
  padding: 80px 6%;
  background-color: #f0f2f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#about .about-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
#about .about-container .title {
  color: #040c1d;
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
#about .about-container .about-content {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  background-color: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
#about .about-container .about-content .about-image-banner {
  position: relative;
  height: 300px;
}
#about .about-container .about-content .about-image-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#about .about-container .about-content .about-image-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #ffffff 5%, transparent 100%);
}
#about .about-container .about-content .about-cards-container {
  padding: 40px 25px;
}
#about .about-container .about-content .about-cards-container .about-info {
  margin-bottom: 50px;
}
#about .about-container .about-content .about-cards-container .about-info h3 {
  color: #1f73c6;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
#about .about-container .about-content .about-cards-container .about-info p {
  color: #4a5568;
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
#about .about-container .about-content .about-cards-container .about-info p span {
  color: #040c1d;
  font-weight: 600;
}
#about .about-container .about-content .about-cards-container .about-info .location-tag {
  color: #1f73c6;
  font-weight: 700;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(31, 115, 198, 0.2);
  margin-bottom: 40px;
}
#about .about-container .about-content .about-cards-container .about-info .location-tag i {
  font-size: 1.2rem;
}
#about .about-container .about-content .about-cards-container .about-info .values-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#about .about-container .about-content .about-cards-container .about-info .values-list .value-item h4 {
  color: #040c1d;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#about .about-container .about-content .about-cards-container .about-info .values-list .value-item h4 i {
  color: #1f73c6;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
#about .about-container .about-content .about-cards-container .about-info .values-list .value-item p {
  color: #4a5568;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  #about .about-container .about-content {
    grid-template-columns: 1fr 1.5fr;
    min-height: 600px;
  }
  #about .about-container .about-content .about-image-banner {
    height: 100%;
  }
  #about .about-container .about-content .about-image-banner::after {
    background: linear-gradient(to right, transparent 50%, #ffffff 95%);
  }
  #about .about-container .about-content .about-cards-container {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  #about {
    padding: 120px 6%;
  }
}

#faq {
  padding: 80px 6%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}
#faq .faq-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#faq .faq-wrapper {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#faq .faq-item {
  background-color: #f0f2f5;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(31, 115, 198, 0.1);
  transition: all 0.3s ease;
}
#faq .faq-item.active {
  border-color: #1f73c6;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
#faq .faq-item.active .faq-question {
  color: #1f73c6;
}
#faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
#faq .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px;
  opacity: 1;
}
#faq .faq-question {
  width: 100%;
  padding: 22px 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: #040c1d;
  font-family: "Montserrat", sans-serif;
  transition: color 0.3s ease;
}
#faq .faq-question i {
  font-size: 0.9rem;
  transition: transform 0.4s ease;
  color: #1f73c6;
}
#faq .faq-question:hover {
  color: #1f73c6;
}
#faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#faq .faq-answer p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
}
#faq .faq-cta {
  margin-top: 50px;
  text-align: center;
}
#faq .faq-cta p {
  color: #4a5568;
  margin-bottom: 20px;
  font-weight: 500;
}
#faq .faq-cta .btn {
  padding: 16px 25px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
#faq .faq-cta .btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  gap: 10px;
  border: none;
  animation: pulse-whatsapp 2s infinite;
}
#faq .faq-cta .btn-whatsapp:hover {
  transform: translateY(-5px) scale(1.03);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  #faq {
    padding: 60px 5%;
  }
  #faq .faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }
}
footer {
  background-color: #040c1d;
  color: #e1e4e8;
  padding: 40px 4% 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
footer .footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(225, 228, 232, 0.1);
  padding-bottom: 30px;
}
footer .footer-container div {
  flex: 1;
  min-width: 250px;
}
footer .footer-container h3, footer .footer-container h4 {
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
footer .footer-container p, footer .footer-container a {
  font-size: 0.9rem;
  color: #7b848d;
  text-decoration: none;
  line-height: 1.6;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
footer .footer-container a:hover {
  color: #1f73c6;
}
footer .redes-sociais {
  display: flex;
  gap: 20px;
  justify-content: center;
}
footer .redes-sociais .logo-footer {
  cursor: pointer;
  width: 32px;
  height: 32px;
  opacity: 0.5;
  transition: all 0.3s ease;
}
footer .redes-sociais .logo-footer:hover {
  opacity: 1;
  transform: translateY(-3px);
}
footer .footer-bottom, footer .footer-description {
  text-align: center;
  width: 100%;
  font-size: 0.8rem;
  color: #5a626b;
  margin: 5px 0;
}
footer .footer-bottom i, footer .footer-description i {
  margin: 0 5px;
}

@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f0f2f5;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

section {
  scroll-margin-top: 100px;
  cursor: default;
}

main {
  width: 100%;
}

a, button, .btn {
  cursor: pointer;
  text-decoration: none;
}

.reveal-effect {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-effect.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#services .services-card:nth-child(1) {
  transition-delay: 0.1s;
}
#services .services-card:nth-child(2) {
  transition-delay: 0.2s;
}
#services .services-card:nth-child(3) {
  transition-delay: 0.3s;
}
#services .services-card:nth-child(4) {
  transition-delay: 0.4s;
}
#services .services-card:nth-child(5) {
  transition-delay: 0.5s;
}
#services .services-card:nth-child(6) {
  transition-delay: 0.6s;
}
#services .services-card:nth-child(7) {
  transition-delay: 0.7s;
}
#services .services-card:nth-child(8) {
  transition-delay: 0.8s;
}
#services .services-card:nth-child(9) {
  transition-delay: 0.9s;
}
#services .services-card:nth-child(10) {
  transition-delay: 1s;
}

#services .services-card:nth-child(1) {
  transition-delay: 0.1s;
}
#services .services-card:nth-child(2) {
  transition-delay: 0.2s;
}
#services .services-card:nth-child(3) {
  transition-delay: 0.3s;
}
#services .services-card:nth-child(4) {
  transition-delay: 0.4s;
}
#services .services-card:nth-child(5) {
  transition-delay: 0.5s;
}
#services .services-card:nth-child(6) {
  transition-delay: 0.6s;
}
#services .services-card:nth-child(7) {
  transition-delay: 0.7s;
}
#services .services-card:nth-child(8) {
  transition-delay: 0.8s;
}
#services .services-card:nth-child(9) {
  transition-delay: 0.9s;
}
#services .services-card:nth-child(10) {
  transition-delay: 1s;
}

.title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-transform: uppercase;
  color: #040c1d;
  font-weight: 800;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1f73c6;
  margin: 15px auto 0;
  border-radius: 2px;
}

.btn {
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-default {
  background: transparent;
  color: #1f73c6;
  gap: 10px;
  border: 2px solid #1f73c6;
}
.btn-default:hover {
  background: rgba(31, 115, 198, 0.05);
  transform: translateY(-5px);
}
.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  gap: 10px;
  border: none;
  animation: pulse-whatsapp 2s infinite;
}
.btn-whatsapp:hover {
  transform: translateY(-5px) scale(1.03);
  filter: brightness(1.1);
}
.btn-fixed-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: pulse-whatsapp 2s infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
}
.btn-fixed-whatsapp .nav-logo-contato {
  width: 35px;
  height: auto;
}
.btn-fixed-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  filter: brightness(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .btn-fixed-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .btn-fixed-whatsapp .nav-logo-contato {
    width: 30px;
  }
}
.btn img, .btn i {
  pointer-events: none;
}

/* BOTÃO MENU MOBILE */
.btn-mobile {
  background-color: transparent;
  border: none;
  padding: 10px;
  color: #040c1d;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-mobile:hover {
  transform: scale(1.1);
  color: #1f73c6;
}

#container {
  width: 100%;
  max-width: 100vw;
}

#services .services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 25px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  #services {
    padding: 60px 5%;
  }
  #services .services-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #home {
    padding-top: 110px;
  }
}/*# sourceMappingURL=styles.css.map */