/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  /* PALETA DE CORES ATUALIZADA COM BASE NA NOVA LOGOMARCA */
  --primary-blue: #0B2A4F;
  /* NOVO AZUL DA LOGOMARCA */
  --accent-gold: #C5A554;
  /* NOVO DOURADO DA LOGOMARCA */
  --accent-gold-gradient: linear-gradient(145deg, #DDC988, #C5A554);
  /* GRADIENTE DOURADO PARA EFEITO PREMIUM */

  --light-bg: #f8f9fa;
  --text-light: #ffffff;
  --text-dark: #343a40;
  --font-family: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--text-light);
}

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

a:hover {
  filter: brightness(1.1);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--primary-blue);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.3s;
  padding: 20px 0;
  background: rgba(11, 42, 79, 0.8);
  /* Azul com transparência */
  backdrop-filter: blur(10px);
}

#header.header-scrolled {
  background: var(--primary-blue);
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  transition: 0.3s;
}

#header .logo:hover {
  filter: brightness(1.1);
}

.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

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

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

.btn-cta {
  margin-left: 30px;
  padding: 10px 25px;
  border-radius: 50px;
  background: var(--accent-gold-gradient);
  color: var(--primary-blue);
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--primary-blue);
}

/*--------------------------------------------------------------
# Hero Section (com imagem de fundo)
--------------------------------------------------------------*/
#hero.hero-image-bg {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('sorriso.jpg') center center no-repeat;
  background-size: cover;
  z-index: 0;
}

#hero.hero-image-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(11, 42, 79, 0.6) 0%, rgba(11, 42, 79, 0.8) 100%);
  z-index: -1;
}

.hero-container {
  z-index: 1;
  padding: 0 15px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

#hero.hero-image-bg h1 {
  margin: 0 0 20px 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}

#hero.hero-image-bg p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
}

.btn-cta-hero {
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  background: var(--accent-gold-gradient);
  color: var(--primary-blue);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--primary-blue);
}

.cro-hero {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--light-bg);
}

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

.section-title .subtitle {
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.section-title p {
  margin-top: 15px;
  color: #6c757d;
}

#especialista .section-title {
  text-align: left;
}

/* Credibility Section */
.credibility-section {
  background-color: var(--primary-blue);
  padding: 60px 0;
}

.cred-item i {
  font-size: 48px;
  color: var(--accent-gold);
  margin-bottom: 15px;
  display: block;
}

.cred-item h3 {
  color: var(--text-light);
  font-size: 24px;
  margin-bottom: 5px;
}

.cred-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Galeria - Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-figure {
  margin: 0;
  position: relative;
  font-size: 0;
}

.comparison-item {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
}

.comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.comparison-item img {
  max-width: 100%;
  height: auto;
  display: block;
}

.comparison-item figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.comparison-after figcaption {
  left: auto;
  right: 10px;
}

.comparison-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

/* FAQ Accordion */
#duvidas .accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 20px;
}

#duvidas .accordion-button {
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px !important;
  font-weight: 600;
  color: var(--primary-blue);
  transition: all 0.3s;
}

#duvidas .accordion-button:not(.collapsed) {
  background: var(--primary-blue);
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(10, 37, 64, 0.1);
}

#duvidas .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 165, 84, 0.3);
}

#duvidas .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

#duvidas .accordion-body {
  padding: 20px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  border: 1px solid #eee;
  border-top: none;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(rgba(11, 42, 79, 0.9), rgba(11, 42, 79, 0.9)), url(URL_PARA_UMA_IMAGEM_DE_FUNDO_ABSTRATA.jpg) center center;
  background-size: cover;
  color: #fff;
}

.final-cta .final-cta-logo {
  max-width: 100px;
  margin-bottom: 20px;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.btn-cta-final {
  font-size: 18px;
  padding: 16px 50px;
}

/* Footer */
#footer {
  background: var(--primary-blue);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

#footer p {
  margin: 0;
}

#footer .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  margin-left: 15px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  color: var(--accent-gold);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

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

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

  .navbar ul {
    display: none;
  }
}
