@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --bg-body: #ffffff;
  --bg-topbar: #4b4b4d;
  --bg-navbar: transparent;
  --bg-navbar-scrolled: rgba(255, 255, 255, 0.95);
  --bg-section-light: #ededed;
  --bg-section-dark: #4b4b4d;
  --bg-pilares: linear-gradient(to top, #156ef4, #4463f7, #6553f7, #833ef3, #9f12eb);
  --bg-produtos: whitesmoke;
  --bg-newsletter: #90ac81;
  --bg-solucoes-overlay: rgba(0, 0, 0, 0.55);
  --bg-contato: linear-gradient(to bottom, #cbcaa5, #334d50);
  --bg-formulario-contato: whitesmoke;
  --bg-footer: whitesmoke;
  --color-top-footer: #344E51;
  --color-top-newsletter: whitesmoke;
  --placeholder-color: #8e9395;
  --text-primary: #212529;
  --text-primary-inverse: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);
  --text-muted-dark: rgba(255, 255, 255, 0.7);
  --text-secondary: #989797;
  --border-color: rgba(0, 0, 0, 0.1);
  --border-color-light: rgba(255, 255, 255, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.08);
  --shadow-strong: rgba(0, 0, 0, 0.15);
  --accent-hover: rgb(78.12, 141.1, 230.88);
  --divider-sobre: #9F12EB;
  --divider-solucoes: #CAC9A4;
}

[data-theme=dark] {
  --bg-body: #121212;
  --bg-topbar: #4b4b4d;
  --bg-navbar: transparent;
  --bg-navbar-scrolled: rgba(18, 18, 18, 0.95);
  --bg-section-light: #1e1e1e;
  --bg-section-dark: #2a2a2a;
  --svg-logo: brightness(0) invert(1);
  --bg-pilares: linear-gradient(to top, #0d4a82, #1a3a6e, #2a2a5e, #3a1e4e, #4a0e3e);
  --bg-newsletter: #2d4a3a;
  --bg-produtos: #121212;
  --bg-solucoes-overlay: rgba(0, 0, 0, 0.75);
  --bg-contato: linear-gradient(to bottom, #3a4a3a, #1a2a30);
  --bg-formulario-contato: #5e5958;
  --bg-footer: #505d65;
  --color-top-footer: #1A2A30;
  --color-top-newsletter: #121212;
  --placeholder-color: #959595;
  --text-primary: #eaeaea;
  --text-primary-inverse: #f5f5f5;
  --text-muted: rgba(255, 255, 255, 0.85);
  --text-muted-dark: rgba(255, 255, 255, 0.6);
  --text-secondary: #a5a5a5;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-light: rgba(255, 255, 255, 0.15);
  --shadow-color: rgba(0, 0, 0, 0.3);
  --shadow-strong: rgba(0, 0, 0, 0.5);
  --accent-hover: rgb(167.88, 198.9, 243.12);
  --divider-sobre: #4A0F3F;
  --divider-solucoes: #3A4A3A;
}
[data-theme=dark] .nuvem {
  filter: brightness(0) saturate(100%) invert(0%) sepia(7%) saturate(1189%) hue-rotate(322deg) brightness(91%) contrast(86%);
}
[data-theme=dark] .invalid-feedback {
  color: #ba9658;
}

.text-body-secondary {
  color: var(--text-secondary) !important;
}

.tema .dropdown-menu {
  background: var(--bg-topbar, #4b4b4d);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  min-width: 160px;
  padding: 0.5rem 0;
}
[data-theme=dark] .tema .dropdown-menu {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.15);
}
.tema .dropdown-item {
  padding: 0.5rem 1rem;
  color: var(--text-primary-inverse, #fff);
  transition: background 0.2s ease, color 0.2s ease;
}
.tema .dropdown-item:hover, .tema .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary-inverse, #fff);
}
.tema .dropdown-item.active {
  background: rgba(123, 170, 237, 0.2);
  color: #7baaed;
  font-weight: 600;
}
.tema .dropdown-item.active i {
  color: #7baaed !important;
}
.tema .dropdown-item.active::after {
  content: "✓";
  margin-left: auto;
  font-size: 0.9rem;
  color: #7baaed;
}
.tema .icone-claro {
  color: #ffc107;
}
.tema .icone-escuro {
  color: #6c757d;
}
.tema .icone-auto {
  color: #0dcaf0;
}
.tema .dropdown-item:hover .icone-claro {
  color: #ffda6a;
}
.tema .dropdown-item:hover .icone-escuro {
  color: #adb5bd;
}
.tema .dropdown-item:hover .icone-auto {
  color: #6edff6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 35px;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.flat {
  border-radius: 0 !important;
}

.shine-container {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 24px;
  isolation: isolate;
  cursor: pointer;
}
.shine-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: brightness(0.92) saturate(1);
  transition: transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.7s ease;
}
.shine-container::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.shine-container::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -130%;
  width: 70%;
  height: 140%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 35%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.05) 65%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(8deg);
  filter: blur(2px);
  z-index: 2;
  pointer-events: none;
}
.shine-container:hover img {
  transform: scale(1.12);
  filter: brightness(1.02) saturate(1.08);
}
@media (max-width: 768px) {
  .shine-container:hover img {
    transform: scale(1);
  }
}
.shine-container:hover::before {
  opacity: 1;
}
.shine-container:hover::after {
  animation: cinematic-shine 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes cinematic-shine {
  from {
    left: -130%;
  }
  to {
    left: 180%;
  }
}
.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.section-divider.top {
  top: 0;
}
.section-divider.bottom {
  bottom: -1px;
}
.section-divider .divider-svg {
  display: block;
  width: 100%;
  height: clamp(60px, 8vw, 180px);
  color: inherit;
}
.section-divider.top .divider-svg {
  transform: rotate(180deg);
}

.nuvem {
  background-image: url(../dividers/nuvem.svg);
  background-size: cover;
  background-position: center top;
  bottom: 0;
  height: 149px;
  z-index: 1;
  transform: scale(1, 1);
}

.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  background-color: var(--bg-topbar);
  padding: 3px 0;
  transition: background-color 0.3s ease;
}
.top-bar .idiomas-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary-inverse);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.top-bar .idiomas-label i {
  font-size: 0.9rem;
}
.top-bar .flag-icon {
  width: 22px;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: brightness(1.1);
}
.top-bar .flag-icon:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}
.top-bar .tema .btn {
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}
.top-bar .tema .dropdown-toggle::after {
  display: none;
}
.top-bar .tema .icone-tema {
  font-size: 1.2rem;
  color: var(--text-primary-inverse);
  transition: color 0.3s ease;
}
.top-bar .tema .icone-tema:hover {
  color: #ffd700;
  transform: rotate(15deg);
}
.top-bar .tema .icone-claro, .top-bar .tema .icone-auto {
  font-size: 1.2rem;
  color: #ffd700;
  padding-right: 10px;
}
.top-bar .tema .icone-escuro {
  font-size: 1rem;
  color: #ffd700;
  padding-right: 13px;
}
.top-bar .tema .icone-texto {
  font-size: 0.9rem;
}

.navbar {
  position: absolute;
  top: 35px;
  width: 100%;
  z-index: 1000;
  background: var(--bg-navbar) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar .navbar-brand img {
  max-height: 45px;
  display: block;
  transition: filter 0.3s ease;
}
.navbar .nav-item {
  flex: 0 0 auto;
}
.navbar .nav-link {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 4px;
  color: var(--text-primary-inverse) !important;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #7baaed !important;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #7baaed;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
  transform: scaleX(1);
}
.navbar.scrolled {
  position: fixed;
  top: 35px;
  background: var(--bg-navbar-scrolled) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px var(--shadow-color);
}
.navbar.scrolled .nav-link {
  color: var(--text-primary) !important;
}
.navbar.scrolled .nav-link:hover {
  color: #7baaed !important;
}
.navbar.scrolled .navbar-brand img {
  filter: var(--logo-filter-scrolled, none);
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar:not(.scrolled) .navbar-toggler {
  filter: invert(1);
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: url("../videos/bg-001.jpg") center/cover no-repeat;
}
.hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.7);
  z-index: 0;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35));
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  animation: fadeUp 1s ease forwards;
}
.hero .hero-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary-inverse);
}
.hero .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
}
.hero .hero-actions .btn {
  padding: 12px 26px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hero .hero-actions .btn-primary {
  background-color: #7baaed;
  border-color: #7baaed;
  color: white;
}
.hero .hero-actions .btn-primary:hover {
  filter: brightness(1.1);
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.hero .hero-actions .btn-outline-light {
  border-width: 2px;
  color: white;
  border-color: white;
}
.hero .hero-actions .btn-outline-light:hover {
  background: white;
  color: #000;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.conteudo {
  width: 100%;
}

.titulo .titulo-logo {
  width: 100px;
  height: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.7;
  transition: filter 0.3s ease;
}
.titulo h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #555;
  padding-bottom: 30px;
  padding-top: 20px;
  transition: color 0.3s ease;
}

.titulo-branco .titulo-logo {
  filter: brightness(0) invert(1);
}
.titulo-branco h1 {
  color: var(--text-primary-inverse);
}

.divider-sobre svg, .divider-pilares svg {
  position: relative;
  display: block;
  width: 100%;
  height: 150px;
  transform: scaleY(1.02);
  margin-bottom: -1px;
}

.divider-sobre {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.divider-sobre .shape-fill {
  fill: var(--divider-sobre);
}

.divider-pilares {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.divider-pilares .shape-fill {
  fill: #FFFFFF;
}

#sobre {
  background-color: var(--bg-section-light);
  position: relative;
  transition: background-color 0.3s ease;
}
#sobre .titulo .titulo-logo {
  filter: var(--svg-logo);
}
#sobre .titulo h1 {
  color: var(--text-primary);
}
#sobre .descricao {
  text-align: justify;
  margin-top: 50px;
  padding: 0 20px 200px;
  font-size: 1.2rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
@media (min-width: 1199px) {
  #sobre .descricao {
    margin-right: 150px;
    padding: 0 0 100px;
  }
}

#pilares {
  background-image: var(--bg-pilares);
  color: #fff;
  min-height: 100vh;
  padding: 80px 0 0;
  position: relative;
  transition: background-image 0.3s ease;
  /* CARDS DIAGONAIS */
}
#pilares .container {
  padding-left: 20px;
  padding-right: 20px;
}
#pilares .section-subtitle {
  color: var(--text-muted-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
#pilares .section-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary-inverse);
}
#pilares .section-title span {
  color: var(--text-muted-dark);
  transition: color 0.3s ease;
}
#pilares .diagonal-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 60px;
  margin-bottom: 100px;
  perspective: 1400px;
  min-height: 560px;
}
#pilares .expand-card {
  position: relative;
  width: 190px;
  height: 520px;
  overflow: hidden;
  border-radius: 32px;
  cursor: pointer;
  flex-shrink: 0;
  transform: rotate(-12deg);
  transition: width 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s ease, filter 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 20px 60px var(--shadow-strong);
  isolation: isolate;
  background: var(--bg-section-dark);
}
#pilares .expand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%);
  z-index: 2;
  pointer-events: none;
}
#pilares .expand-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.8s ease;
}
#pilares .expand-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 5%, rgba(2, 6, 23, 0.45) 45%, rgba(2, 6, 23, 0.15) 100%);
  z-index: 1;
}
#pilares .expand-card .content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 35px;
  z-index: 3;
}
#pilares .expand-card .card-mini {
  transition: all 0.5s ease;
}
#pilares .expand-card .card-mini span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  transition: color 0.3s ease;
}
#pilares .expand-card .card-mini h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary-inverse);
  transition: color 0.3s ease;
}
#pilares .expand-card .card-full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease, margin-top 0.5s ease;
  margin-top: 0;
}
#pilares .expand-card .card-full p {
  color: var(--text-muted-dark);
  line-height: 1.8;
  font-size: 1rem;
  transition: color 0.3s ease;
}
#pilares .expand-card.active {
  width: 480px;
  transform: rotate(0deg) translateY(-10px);
  z-index: 10;
  box-shadow: 0 35px 80px var(--shadow-strong);
}
#pilares .expand-card.active img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
#pilares .expand-card.active .card-full {
  max-height: 300px;
  opacity: 1;
  margin-top: 22px;
}
#pilares .expand-card.active .card-full p {
  animation: fadeUp 0.7s ease;
}
#pilares .expand-card:not(.active) {
  filter: brightness(0.7);
}
#pilares .expand-card:not(.active):hover {
  transform: rotate(-8deg) translateY(-10px);
  filter: brightness(0.9);
}
@media (max-width: 992px) {
  #pilares .values-section {
    padding: 60px 0;
  }
  #pilares .diagonal-cards {
    flex-direction: column;
    min-height: auto;
  }
  #pilares .expand-card {
    width: 100%;
    max-width: 500px;
    height: 120px;
    transform: none !important;
  }
  #pilares .expand-card.active {
    width: 100%;
    height: 420px;
  }
  #pilares .content {
    padding: 28px;
  }
}
@media (max-width: 576px) {
  #pilares .expand-card.active {
    height: 460px;
  }
  #pilares .card-mini h2 {
    font-size: 1.7rem;
  }
  #pilares .card-full p {
    font-size: 0.95rem;
  }
}

#produtos {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--bg-produtos);
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  #produtos .container {
    padding: 20px;
  }
}
#produtos .titulo .titulo-logo {
  filter: var(--svg-logo);
}
#produtos .titulo h1 {
  color: var(--text-primary);
}
#produtos .detalhes h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 10px;
  color: #7baaed;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  #produtos .detalhes {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#produtos .detalhes p {
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

#newsletter {
  min-height: 450px;
  position: relative;
  padding-bottom: 80px;
  background: var(--bg-newsletter);
  transition: background 0.3s ease;
}
#newsletter .titulo {
  font-family: "Poppins", sans-serif;
}
@media (min-width: 1024px) {
  #newsletter .titulo {
    margin-top: 200px;
  }
}
#newsletter .titulo .text-custom {
  color: var(--text-primary-inverse);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
#newsletter .titulo h2 span {
  color: var(--text-primary-inverse);
  transition: color 0.3s ease;
}
#newsletter .form-control {
  border-radius: 0 !important;
  border: 1px solid var(--border-color);
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}
#newsletter .form-control:focus {
  box-shadow: none;
  border-color: #7baaed;
  background: var(--bg-body);
}
#newsletter .form-control::placeholder {
  color: var(--placeholder-color);
  opacity: 1;
}
#newsletter .input-group > * {
  border-radius: 0 !important;
  border-color: var(--border-color);
}
#newsletter .color-top {
  color: var(--color-top-newsletter);
}
#newsletter .color-bottom {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

#solucoes {
  position: relative;
}
#solucoes .video-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
#solucoes #bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#solucoes .overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-solucoes-overlay);
  z-index: 1;
  transition: background 0.3s ease;
}
#solucoes .content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  min-height: 100vh;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  #solucoes .content {
    padding-bottom: 200px;
  }
}
#solucoes .titulo {
  padding-top: 50px;
}
@media (max-width: 768px) {
  #solucoes .titulo {
    margin-top: 80px;
    margin-bottom: 50px;
  }
}
#solucoes p {
  font-family: "Poppins", sans-serif;
  text-align: justify;
  font-size: 1.2rem;
  font-weight: 200;
  color: var(--text-primary-inverse);
  transition: color 0.3s ease;
}
#solucoes .color-top {
  color: #7baaed;
}
#solucoes .color-bottom {
  color: var(--divider-solucoes);
}

#contato {
  padding-top: 50px;
  padding-bottom: 100px;
  background: var(--bg-contato);
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  #contato .container {
    padding: 20px;
  }
}
#contato .card {
  background: var(--bg-formulario-contato);
}
#contato h2 {
  margin-top: 25px;
  font-family: "Poppins", sans-serif;
  color: #7baaed;
  transition: color 0.3s ease;
}
#contato h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  max-width: 800px;
  margin: 20px auto 50px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
#contato .formularioContato input {
  height: 50px;
  line-height: 30px;
  vertical-align: top;
}
#contato .formularioContato .label {
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
#contato .formularioContato .form-control {
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  font-size: 1rem;
  background: transparent;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
#contato .formularioContato .form-control:focus {
  box-shadow: none;
  border-bottom-color: #7baaed;
}
#contato .formularioContato .form-control::placeholder {
  color: var(--placeholder-color);
  opacity: 0.7;
}

#rodape {
  position: relative;
  padding-top: 150px;
  min-height: 400px;
  font-family: "Poppins", sans-serif;
  background: var(--bg-footer);
  transition: background 0.3s ease;
}
#rodape .footer-sobre .logo-footer {
  width: 200px;
  padding-bottom: 10px;
  filter: var(--logo-footer-filter, none);
}
#rodape .footer-parceria .logo-footer {
  width: 250px;
}
#rodape .footer-parceria h3 {
  color: #7baaed;
  padding-bottom: 10px;
  transition: color 0.3s ease;
}
#rodape .footer-social h3 {
  color: #7baaed;
  padding-bottom: 20px;
  transition: color 0.3s ease;
}
#rodape .footer-social .icone-social {
  width: 60px;
  margin: 7px;
  filter: var(--icon-filter, none);
  transition: filter 0.3s ease;
}
#rodape .footer-social .icone-social:hover {
  scale: 1.2;
  filter: brightness(1.2);
}
#rodape .footer-social a {
  text-decoration: none;
}
#rodape .color-top {
  color: var(--color-top-footer);
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  #rodape .container {
    padding: 20px;
  }
}

.back-to-top-sq {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 6px var(--shadow-color));
}
.back-to-top-sq.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top-sq:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px var(--shadow-strong));
}
.back-to-top-sq .sq-svg {
  width: 60px;
  height: 60px;
  transform: rotate(-90deg);
  overflow: visible;
}
.back-to-top-sq .sq-bg {
  fill: var(--bg-body);
  rx: 12px;
  transition: fill 0.3s ease;
}
.back-to-top-sq .sq-track {
  fill: none;
  stroke: var(--border-color);
  stroke-width: 4;
  rx: 12px;
  transition: stroke 0.3s ease;
}
.back-to-top-sq .sq-bar {
  fill: none;
  stroke: #4CAF50;
  stroke-width: 4;
  stroke-linecap: round;
  rx: 12px;
  transition: stroke-dashoffset 0.1s linear;
}
.back-to-top-sq .center-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.back-to-top-sq .sq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: opacity 0.3s ease, transform 0.3s ease, fill 0.3s ease;
}
.back-to-top-sq .sq-percent {
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  color: var(--text-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.back-to-top-sq:hover .sq-icon, .back-to-top-sq.show-text .sq-icon {
  opacity: 0;
  transform: scale(0.5);
}
.back-to-top-sq:hover .sq-percent, .back-to-top-sq.show-text .sq-percent {
  opacity: 1;
}

@media (min-width: 992px) {
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
}
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }
  .hero {
    background: url("../videos/bg-001.jpg") center/cover no-repeat;
  }
  .hero .hero-content {
    text-align: center;
  }
  .hero .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero .hero-actions .btn {
    width: 100%;
  }
  .footer-sobre {
    text-align: center;
  }
  .navbar .nav-link {
    color: #212529 !important;
  }
}

/*# sourceMappingURL=styles.css.map */
