@charset "UTF-8";
/* --- Variáveis e Reset --- */
:root {
  --color-primary: #7607b4;
  --color-secondary: #b430ab;
  --color-dark: #0f0518;
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-glass-strong: rgba(20, 10, 30, 0.95);
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --text-white: #ffffff;
  --text-gray: #b0b0b0;
  --font-primary: "Poppins", serif;
}

body {
  font-family: var(--font-primary);
  overflow-x: hidden !important;
  background-color: var(--color-dark);
  color: var(--text-white);
  background-image: radial-gradient(circle at 15% 50%, rgba(118, 7, 180, 0.15), transparent 25%), radial-gradient(circle at 85% 30%, rgba(180, 48, 171, 0.15), transparent 25%);
  background-attachment: fixed;
}
body.no-scroll {
  overflow: hidden !important;
}

a {
  text-decoration: none;
}

/* --- Big Background Text (Global) --- */
.big-bg-text {
  position: absolute;
  font-size: 150px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  font-family: "DM Sans", sans-serif;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}
.big-bg-text.left {
  top: 0;
  left: -20px;
}
.big-bg-text.right {
  top: 0;
  right: -20px;
}

@media (min-width: 992px) {
  .big-bg-text {
    font-size: 400px;
  }
  .big-bg-text.left {
    top: -50px;
    left: -100px;
  }
  .big-bg-text.right {
    top: -50px;
    right: -100px;
  }
}
/* --- EFEITOS DE TEXTO --- */
@keyframes shine-text {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.gradient-text {
  background: linear-gradient(90deg, #b430ab, #a64bf4, #ffffff, #b430ab);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-text 3s linear infinite;
  font-weight: 800;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background-color: var(--color-secondary);
  animation: blink 0.7s infinite;
  margin-left: 5px;
  vertical-align: middle;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* --- Form Styles --- */
.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 14px;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-secondary);
  box-shadow: 0 0 10px rgba(180, 48, 171, 0.2);
  color: var(--text-white);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* --- Utilitários de Botão --- */
.button {
  border-radius: 50px;
  display: inline-block;
  padding: 12px 30px;
  transition: all 0.4s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 5;
  font-size: 15px;
  cursor: pointer;
  border: none;
}
.button.button-primary {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: var(--text-white);
  text-align: center;
  box-shadow: 0 4px 15px rgba(118, 7, 180, 0.4);
}
.button.button-primary:hover {
  box-shadow: 0 6px 20px rgba(180, 48, 171, 0.6);
  transform: translateY(-2px);
}
.button.button-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  text-align: center;
}
.button.button-white:hover {
  background: var(--text-white);
  color: var(--color-primary);
}
.button.expanded {
  width: 100%;
  text-align: center;
}
.button.button-primary-outline {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--text-white);
  text-align: center;
}
.button.button-primary-outline:hover {
  background: var(--color-secondary);
  box-shadow: 0 0 15px var(--color-secondary);
}
.button.button-small {
  padding: 8px 20px;
  font-size: 13px;
}

/* --- Side Navigation --- */
#side-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: none;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 15px 10px;
}
#side-nav ul {
  margin: 0;
  padding: 0;
}
#side-nav ul li {
  list-style: none;
  margin: 15px 0;
  text-align: center;
  position: relative;
}
#side-nav ul li a {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s;
  position: relative;
}
#side-nav ul li a::before {
  content: attr(data-title);
  position: absolute;
  right: 25px;
  top: -4px;
  background: var(--color-primary);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  white-space: nowrap;
}
#side-nav ul li.active a, #side-nav ul li:hover a {
  background: var(--color-secondary);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--color-secondary);
}
#side-nav ul li.active a::before, #side-nav ul li:hover a::before {
  opacity: 1;
  visibility: visible;
  right: 30px;
}

/* --- Floating Buttons --- */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.floating-buttons .btn-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-buttons .btn-float.whatsapp {
  background: #25D366;
}
.floating-buttons .btn-float.whatsapp:hover {
  background: #20BA5C;
  transform: scale(1.1);
}
.floating-buttons .btn-float.back-to-top {
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.floating-buttons .btn-float.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-buttons .btn-float.back-to-top:hover {
  background: var(--color-secondary);
  transform: translateY(-5px);
}

/* --- MENU MOBILE OVERLAY --- */
#mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-glass-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
#mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
#mobile-menu-overlay.active ul li {
  opacity: 1;
  transform: translateY(0);
}
#mobile-menu-overlay .close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  color: var(--text-white);
  cursor: pointer;
  transition: transform 0.3s;
}
#mobile-menu-overlay .close-menu:hover {
  transform: rotate(90deg);
  color: var(--color-secondary);
}
#mobile-menu-overlay ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
#mobile-menu-overlay ul li {
  list-style: none;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
#mobile-menu-overlay ul li:nth-child(1) {
  transition-delay: 0.1s;
}
#mobile-menu-overlay ul li:nth-child(2) {
  transition-delay: 0.2s;
}
#mobile-menu-overlay ul li:nth-child(3) {
  transition-delay: 0.3s;
}
#mobile-menu-overlay ul li:nth-child(4) {
  transition-delay: 0.4s;
}
#mobile-menu-overlay ul li:nth-child(5) {
  transition-delay: 0.5s;
}
#mobile-menu-overlay ul li a {
  font-size: 24px;
  color: var(--text-white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}
#mobile-menu-overlay ul li a:hover {
  color: var(--color-secondary);
}

/* --- Header & Nav --- */
#primary-navigation {
  padding: 10px 20px;
  background: rgba(15, 5, 24, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
#primary-navigation .mobile-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#primary-navigation img {
  display: block;
  width: 120px;
  height: auto;
  margin: 0;
}

.hamburger-navigation {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.hamburger-navigation a {
  color: var(--text-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hamburger-navigation:active {
  transform: scale(0.95);
}
.hamburger-navigation:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 0 15px rgba(180, 48, 171, 0.4);
}

#footer {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  border-top: var(--border-glass);
  margin-top: 50px;
}
#footer__info {
  padding: 50px 0 30px 0;
}
#footer__info img {
  display: block;
  margin: 0 auto 25px auto;
  max-width: 150px;
  opacity: 0.9;
}
#footer__info .footer-title {
  color: var(--text-white);
  display: block;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 16px;
}
#footer__info .footer-title strong {
  font-weight: 600;
  color: var(--color-secondary);
}
#footer__info p {
  color: var(--text-gray);
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
#footer__info p strong {
  font-weight: 600;
  color: var(--text-white);
}
#footer__info p a {
  color: var(--text-gray);
  text-decoration: none;
  transition: 0.3s;
}
#footer__info p a:hover {
  color: var(--color-secondary);
}
#footer__info ul.footer-menu {
  margin: 0;
  padding: 0;
}
#footer__info ul.footer-menu li {
  display: block;
  list-style: none;
  margin-bottom: 8px;
}
#footer__info ul.footer-menu li a {
  color: var(--text-gray);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}
#footer__info ul.footer-menu li a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}
#footer__info ul.social {
  margin: 0;
  padding: 0;
}
#footer__info ul.social li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
}
#footer__info ul.social li a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #FFFFFF;
  display: flex;
  font-size: 16px;
  height: 35px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  width: 35px;
}
#footer__info ul.social li a:hover {
  background: var(--color-secondary);
  box-shadow: 0 0 10px var(--color-secondary);
  transform: translateY(-3px);
}
#footer__copyright {
  border-top: var(--border-glass);
  margin-top: 30px;
  padding: 20px 0 15px 0;
}
#footer__copyright strong {
  display: block;
  font-weight: 600;
  margin: 0;
  color: var(--text-white);
  font-size: 14px;
}
#footer__copyright p {
  font-size: 12px;
  color: var(--text-gray);
  margin: 0;
}
#footer__copyright__policy {
  text-align: center;
  margin-top: 10px;
}
#footer__copyright__policy ul {
  margin: 0;
  padding: 0;
}
#footer__copyright__policy ul li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}
#footer__copyright__policy ul li a {
  font-size: 12px;
}
#footer__copyright__policy ul li a:hover {
  color: var(--color-secondary);
}

#cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 500px;
  background: rgba(15, 5, 24, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
  animation: slideUp 0.5s ease;
}
#cookie-consent h4 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
#cookie-consent p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
}
#cookie-consent .cookie-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

@media (min-width: 992px) {
  #side-nav {
    display: block;
  }
  .sticky-top {
    top: 20px;
    position: sticky;
    z-index: 1020;
  }
  #primary-navigation {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    padding: 15px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }
  #primary-navigation .mobile-nav-wrapper {
    display: contents;
  }
  #primary-navigation img {
    display: block;
    width: 100%;
    max-width: 140px;
    margin: 0;
  }
  #primary-navigation ul {
    margin: 0;
    padding: 0;
    text-align: center;
  }
  #primary-navigation ul li {
    display: inline-block;
    list-style: none;
    margin-right: 35px;
  }
  #primary-navigation ul li:last-child {
    margin: 0;
  }
  #primary-navigation ul li a {
    border-bottom: 2px solid transparent;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.8;
  }
  #primary-navigation ul li a:hover, #primary-navigation ul li a.active {
    color: var(--color-secondary);
    opacity: 1;
    text-shadow: 0 0 15px rgba(180, 48, 171, 0.5);
  }
  #footer {
    text-align: left;
  }
  #footer__info img {
    margin-bottom: 25px;
    margin-left: 0;
  }
  #footer__info .footer-title {
    margin-top: 0;
  }
  #footer__copyright__policy {
    text-align: right;
    margin-top: 0;
  }
}
.sticky-top .button {
  overflow: inherit !important;
}

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