

@charset "UTF-8";


/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Inter", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #222121;
  --heading-color: #171717;
  --accent-color: #0f60a4;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
:root {
  --nav-color: #222222;
  --nav-hover-color: #0f60a4;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #171717;
  --nav-dropdown-color: #222222;
  --nav-dropdown-hover-color: #0f60a4;
}


.light-background {
  --background-color: #f9f5f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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


@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Diferenciais
--------------------------------------------------------------*/

.diferencial-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-bottom: 13px;
}

.caixa-icone-diferential:hover .diferencial-icon {
  transform: translateY(-4px);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.caixa-icone-diferential:hover .diferencial-icon i {
  color: var(--accent-color);
}

.diferencial-icon i {
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.diferencial-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  text-align: center;
}

section#diferenciais {
  background: aliceblue;
}

.caixa-icone-diferential {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icones_diferenciais {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}


/*--------------------------------------------------------------
# Global - Paulo
--------------------------------------------------------------*/
.section-title .preto h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background:
    color-mix(in srgb, #000000, transparent 60%) !important;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.form-header.text-center.mb-4.section-title.preto {
  padding-bottom: 0px !important;
}

/*--------------------------------------------------------------
# mobile - Paulo
--------------------------------------------------------------*/
@media(max-width:767px){
  #hero{
    padding-top: 220px;
  }

  .header .social-links a {
    color: #12395f;
    padding: 0 8px;
    display: inline-block;
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
}

.header .top-row .logo img {
    max-height: 100px;
    margin-right: 10px;
}

.certificados-list {
    padding-left: 0px !important; 
}

.lista-palavras li {
   font-size: 14px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.invisible{
  display:none;
}
.footer .social-links {
    justify-content: center;
}
.header .social-links a {
    word-break: break-all;
}

footer#footer {
    padding: 15px;
}


    .icones_diferenciais {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: fixed;
  width: 100%;
}

.header .top-row {
  padding-bottom: 10px;
}

.header .top-row .logo {
  text-decoration: none;
}

.header .top-row .logo img {
  max-height: 120px;
  margin-right: 10px;
}

.header .social-links a {
  color: #12395f;
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}


.header .social-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.header .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .social-links {
    padding-right: 40px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 15px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  /* background: url('../img/gem/bg.webp') center center / cover no-repeat; */
  
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/gem/bg-f.webp') center center / cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.footer-contact li {
  word-break: break-all;
  margin-bottom: 8px;
}

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

.footer .footer-brand h1,
.footer .footer-brand .logo {
  margin: 0;
  line-height: 1;
  font-weight: 600;
}

.footer .footer-brand .tagline {
  color: color-mix(in srgb, var(--default-color), #000000 25%);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  margin: 12px 0 0;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-links-grid h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

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

.footer .footer-links-grid ul li {
  margin-bottom: 15px;
}

.list-chav li {
  list-style: none;
  /* remove a bolinha padrão */
  position: relative;
  padding-left: 5px;
  /* espaço para o ícone */
}

.list-chav li::before {
  content: "»";
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 20px;
  color: #333;
}

.list-chav li a {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-bottom: 4px;
}

/* linha invisível */
.list-chav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  /* cor do sublinhado */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* animação ao passar o mouse */
.list-chav li a:hover::after {
  transform: scaleX(1);
}



.footer .footer-links-grid ul li a {
  color: color-mix(in srgb, var(--default-color), #000000 25%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
}

.footer .footer-links-grid ul li a:hover {
  color: var(--accent-color);
}



.footer .footer-cta h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--heading-font);
}

.footer .footer-cta .btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer .footer-cta .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 991px) {
  .footer .footer-links-grid {
    margin-bottom: 30px;
  }

  .footer .footer-cta {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .row {
    text-align: center;
  }

  .footer .footer-brand,
  .footer .footer-links-grid,
  .footer .footer-cta {
    margin-bottom: 40px;
  }

  .footer .footer-links-grid h5 {
    text-align: left;
  }

  .footer .footer-links-grid ul {
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 135px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

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

.hero-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
}

/* Pseudo-elemento vira um ícone real */
.hero-content ul li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 3px;
  width: 30px;
  height: 30px;
  background-color: white;
  -webkit-mask: url(https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/icons/check2-circle.svg) no-repeat center;
  mask: url(https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/icons/check2-circle.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}



.hero {
  /* padding-top: 17vh; */
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  padding-bottom: 60px;
  /* Decorative background */
  /* Swiper default fix if used somewhere inside */
}

#hero {
  min-height: 100vh;
  background-image: url("../img/gem/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}


#hero>* {
  position: relative;
  z-index: 2;
}


.hero li {
  font-size: 2.4vh;
  margin-bottom: 10px;
}

.hero .lead {
  font-size: 2.4vh;
}

.hero ul {
  margin-top: 40px;
}

.hero h1 {
  font-weight: 600;
  font-size: 5vh;
  margin-bottom: 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 10% 20%, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 70%), radial-gradient(900px 500px at 90% 80%, color-mix(in srgb, var(--heading-color), transparent 92%), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-right {
  padding: 20px;
}

.hero-form {
  max-width: 400px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  box-shadow: 5px 5px 10px #222222, -5px -5px 10px #292929;
}

.form-header h2 {
  color: #0a4d86;
  font-weight: 600;
}

.form-header p {
  color: #454545;
  font-weight: 600;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
#servicos-of-titulo {
  padding: 40px 0px;
}

.featured-services .service-item {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px -5px rgb(0 0 0 / 24%);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.featured-services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s ease-in-out;
}

.featured-services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.08);
}

.featured-services .service-item:hover::before {
  height: 100%;
}

.featured-services .service-item:hover .icon i {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-color);
}

.featured-services .service-item .icon {
  margin-bottom: 1.5rem;
}

.featured-services .service-item .icon i {
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transition: all 0.3s ease-in-out;
}

.featured-services .service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.featured-services .service-item p {
  color: #030303;
  font-size: 18px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  /* tokens */
  --card-radius: 16px;
  --soft-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --muted-text: color-mix(in srgb, var(--default-color), transparent 28%);
  --muted-strong: color-mix(in srgb, var(--default-color), transparent 18%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 88%);
  --accent-softer: color-mix(in srgb, var(--accent-color), transparent 92%);
}
  .about .section-title p {
                font-size: 18px;
                font-weight: 400;
            }

.about .intro-card {
  background: var(--surface-color);
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 4px);
  padding: 32px;
  box-shadow: 0 30px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .intro-card {
    padding: 22px;
  }
}

.about .intro-card .intro-head {
  margin-bottom: 1rem;
}

.about .intro-card .intro-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent-color);
  background: var(--accent-softer);
}

.about .intro-card .intro-head h2 {
  margin-top: 12px;
  margin-bottom: 0.75rem;
  font-size: 2.125rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .intro-card .intro-head h2 {
    font-size: 1.875rem;
  }
}

.about .intro-card .intro-body .lead {
  font-size: 16px;
  color: var(--muted-strong);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about .intro-card .intro-body p {
  color: var(--muted-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about .intro-card .feature-list {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.about .intro-card .feature-list .feature-item {
  display: flex;
  gap: 14px;
  padding: 14px 14px;
  border: 1px dashed var(--soft-border);
  border-radius: var(--card-radius);
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 50%);
  transition: all 0.3s ease;
}

.about .intro-card .feature-list .feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .intro-card .feature-list .feature-item i {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  background: var(--accent-soft);
  font-size: 18px;
}

.about .intro-card .feature-list .feature-item .text h6 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 700;
}

.about .intro-card .feature-list .feature-item .text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-text);
}

.about .intro-card .actions .btn.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.about .intro-card .actions .btn.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), black 14%);
  border-color: color-mix(in srgb, var(--accent-color), black 14%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color), transparent 62%);
}

.about .showcase {
  height: 100%;
  display: grid;
  gap: 16px;
  grid-template-rows: 1fr auto;
}

.about .showcase .showcase-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--card-radius) + 4px);
  border: 1px solid var(--soft-border);
  box-shadow: 0 24px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .showcase .showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
p.lead.msv {
    font-weight: 500;
    border-bottom: 2px solid #044685;
    width: fit-content;
    color: #044685 !important;
}


.clientes {
  padding: 60px 0;
}

.clientes-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.clientes-slider .swiper-slide {
  width: auto;
  /* importante */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.clientes-slider img {
  max-height: 80px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.clientes-slider .swiper-slide {
  width: auto;
  padding: 0 10px;
}

/*--------------------------------------------------------------
# palavras-chave Section
--------------------------------------------------------------*/
  .palavras-chave {
                background-color: aliceblue;
            }

            .palavras-chave .section-title {
                padding-bottom: 15px;
            }

            .lista-palavras ul {
                list-style: none;
                padding: 0;
                margin: 0;
                text-align: center;
            }

            .lista-palavras li {
                display: inline-block;
                margin-right: 10px;
                padding-left: 10px;
                position: relative;
            }

            .lista-palavras li::before {
                content: "|";
                position: absolute;
                left: 0;
                color: #000;
            }

            .lista-palavras li:first-child::before {
                content: "";
            }
/*--------------------------------------------------------------
# Certificados Section
--------------------------------------------------------------*/

.selo2 img {
  max-width: 180px;
}

.selo2 {
  text-align: center;
  margin-bottom: -110px;
  z-index: 2;
}

/* Certificados e Garantias */
.certificados {
  padding: 70px 0;
}

.subtitulo p {
  font-size: 20px;
  font-weight: 400;
}

#certificados {
  position: relative;
  overflow: hidden;
  background: #fffcf1;
}

#certificados::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/gem/bg-c.webp') center center / cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}

/* garante que o conteúdo fique acima do background */
#certificados>* {
  position: relative;
  z-index: 1;
}

.certificados .section-title p {
  max-width: 900px;
  margin: 10px auto 0 auto;
}

.certificados-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 5px 5px 10px #bebebe,
    -5px -5px 10px #ffffff;
  padding-top: 108px;
}

.creas img {
  max-width: 110px;
}

.creas {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}

.certificados-list {
  list-style: none;
  padding: 0px;
  margin: 18px 0 35px 0;
  text-align: center;
  padding-left: 20%;
}

.certificados-list li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  line-height: 1.4;
}

.certificados-list i {
  font-size: 18px;
  margin-top: 2px;
}

.certificados-frase {
  font-weight: 600;
  opacity: 0.9;
}

#certificados p,
#certificados li {
  font-size: 19px;
  text-align: center;
}

#certificados p {
  margin-bottom: 20px;
}

#certificados .section-title {
  margin-bottom: -24px;
  padding-bottom: 0px;
}

.call-to-action .direita {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.call-to-action {
  padding: 100px 0;
}

.call-to-action .cta-wrapper {
  position: relative;
}

.call-to-action .cta-wrapper .content-block {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px color-mix(in srgb, var(--default-color), transparent 96%), 0 1px 0 color-mix(in srgb, var(--accent-color), transparent 94%);
}

.call-to-action .text-content {
  position: relative;
  z-index: 2;
}

.call-to-action .text-content .section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.call-to-action .text-content .section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.call-to-action .text-content h2 {
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.call-to-action .text-content h2 .accent-text {
  color: var(--accent-color);
  font-weight: 400;
  display: inline;
}

.call-to-action .text-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.call-to-action .action-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.call-to-action .action-group .btn {
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
}

.call-to-action .action-group .btn.btn-primary-action {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border: none;
  font-size: 1rem;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .action-group .btn.btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .visual-section {
  position: relative;
}

.call-to-action .visual-section .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .visual-section .decorative-elements .element {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .visual-section .decorative-elements .element.element-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 98%));
  top: -10%;
  right: 20%;
  animation: drift 8s ease-in-out infinite;
}

.call-to-action .visual-section .decorative-elements .element.element-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 98%));
  bottom: -5%;
  left: 10%;
  animation: drift 6s ease-in-out infinite reverse;
}

.call-to-action .visual-section .decorative-elements .element.element-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 88%), color-mix(in srgb, var(--accent-color), transparent 96%));
  top: 50%;
  left: -5%;
  animation: drift 10s ease-in-out infinite;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-8px) translateX(4px);
  }
}

@keyframes floatFast {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(6px) translateX(-3px);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(10px, -8px) rotate(120deg);
  }

  66% {
    transform: translate(-5px, 12px) rotate(240deg);
  }
}

@media (max-width: 992px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .content-block {
    padding: 3.5rem 2.5rem;
  }

  .call-to-action .text-content {
    margin-bottom: 3rem;
  }

  .call-to-action .text-content h2 {
    font-size: 2.5rem;
  }

  .call-to-action .text-content h2 .accent-text {
    display: inline;
  }

  .call-to-action .text-content p {
    max-width: 100%;
  }

  .call-to-action .action-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .call-to-action .action-group .btn.btn-primary-action {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }

  .call-to-action .content-block {
    padding: 2.5rem 1.5rem;
  }

  .call-to-action .text-content h2 {
    font-size: 2rem;
  }

  .call-to-action .text-content p {
    font-size: 1rem;
  }

  .call-to-action .decorative-elements .element {
    transform: scale(0.7);
  }

  .call-to-action .decorative-elements .element.element-1 {
    top: -5%;
    right: 10%;
  }

  .call-to-action .decorative-elements .element.element-2 {
    bottom: 0;
    left: 5%;
  }

  .call-to-action .decorative-elements .element.element-3 {
    display: none;
  }
}


.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.faq .faq-item.faq-active {
  border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

.grecaptcha-badge {
    display: none !important;
}