@font-face {
  font-family: "Onoma Regular";
  src: url("./assets/fonts/Onoma.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--gold), #ffa500);
  border-radius: 10px;
  border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffa500, var(--gold));
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #0a0a0a;
}

* {
  cursor: url("../img/cursor-default.cur"), default !important;
}

a,
button,
button::after,
button::before,
  a *,
  button *,
  button *::after,
  button *::before {
  cursor: url("../img/cursor-pointer.cur"), pointer !important;
}

/* a,
a *,
button,
button * {
  cursor: url("../img/cursor-pointer.cur"), pointer !important;
} */

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gold-gradient: linear-gradient(177deg, #ffffff 0%, var(--gold) 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  --gold: #ffd700;
  --platinum: #e5e4e2;
}

::selection {
  background-color: #ffd83d;
  color: #000;
}

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

* a {
  color: currentColor !important;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background: #0a0a0a;
  color: #ffffff;
}

.hero-section {
  min-height: 100vh;
  background: var(--dark-gradient);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><defs><radialGradient id="gradient" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23667eea;stop-opacity:0.3"/><stop offset="100%" style="stop-color:%23764ba2;stop-opacity:0.1"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23gradient)"/><circle cx="800" cy="800" r="200" fill="url(%23gradient)"/></svg>')
    no-repeat center center;
  background-size: cover;
  opacity: 0.1;
}

.floating-elements {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}

.floating-element {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: float 15s infinite linear;
  opacity: 0.6;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.navbar {
  background: rgb(0 0 0 / 72%) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2rem;
  font-weight: 700;
  /* background: var(--primary-gradient); */
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-toggler {
  border: none;
  padding: 8px 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 10px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 215, 0, 0.1)
  );
  border-color: var(--gold);
  transform: scale(1.05);
}

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

.hamburger {
  width: 25px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.4s ease;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 8px;
}

.hamburger span:nth-child(4) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.hamburger.active span:nth-child(2) {
  transform: rotate(45deg);
  background: var(--gold);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  background: var(--gold);
}

.hamburger.active span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  backdrop-filter: blur(20px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  height: 80px;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 215, 0, 0.1)
  );
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

.mobile-menu-content {
  padding: 40px 30px;
  height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInFromLeft 0.6s ease forwards;
}

.mobile-nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-nav-links li:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-nav-links li:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-nav-links li:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-nav-links li:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.mobile-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left 0.4s ease;
  z-index: -1;
}

.mobile-nav-links a:hover::before {
  left: 0;
}

.mobile-nav-links a:hover {
  color: #ffffff;
  border-color: var(--gold);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.mobile-nav-links a i {
  margin-right: 15px;
  font-size: 1.2rem;
  color: var(--gold);
  width: 25px;
  text-align: center;
}

.mobile-menu-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.mobile-contact-info {
  margin-bottom: 30px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-contact-item i {
  color: var(--gold);
  margin-right: 15px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.mobile-contact-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.mobile-social-links a {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mobile-social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transform: scale(0);
  transition: transform 0.4s ease;
  border-radius: 50%;
}

.mobile-social-links a:hover::before {
  transform: scale(1);
}

.mobile-social-links a:hover {
  color: #ffffff;
  border-color: var(--gold);
  transform: translateY(-5px);
}

.mobile-social-links a i {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.premium-btn {
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.4s both;
  transition: color 0.6s ease, transform 0.4s ease;
  z-index: 2;
  border-block: solid 1px #858585;
}

.premium-btn span {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

/* Shine */
.premium-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
  z-index: 4;
  border-block: solid 1px #858585;
}

.premium-btn:hover::before {
  left: 100%;
}

/* Girando galáxia */
.premium-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #121629, #764ba2, #121629);
  background-size: 200% 200%;
  animation: galaxySpin 5s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.premium-btn:hover::after {
  opacity: 1;
}

.premium-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.5);
  color: #ffffff;
}

/* Animação do gradiente girando */
@keyframes galaxySpin {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




.cta-section .btn {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-light {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #333333;
}

.cta-section .btn-light:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

.cta-section .btn-outline-light:hover {
  background: #ffffff;
  color: #333333;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.cta-section .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-section .btn:hover::before {
  left: 100%;
}

.section-premium {
  padding: 100px 0;
  background: var(--dark-gradient);
  position: relative;
}

.section-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card {
  min-width: 336px;
  aspect-ratio: 1/1;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.stats-section {
  background: var(--primary-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 4px
  );
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-section {
  background: #0a0a0a;
  padding: 100px 0;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9),
    rgba(118, 75, 162, 0.9)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.testimonials-section {
  background: var(--dark-gradient);
  padding: 100px 0;
}

.testimonial-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 20px;
  position: relative;
  backdrop-filter: blur(20px);
}

.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.3;
}

.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin: 0 auto 20px;
}

.cta-section {
  background: var(--primary-gradient);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: moveStars 20s linear infinite;
}

@keyframes moveStars {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(-100px);
  }
}

.footer {
  background: #000000;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2rem;
  font-weight: 700;
  /* background: var(--primary-gradient); */
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer a:hover {
  /* color: var(--gold) !important; */
}

.social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  color: #ffffff;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding: 20px 0;
  z-index: 10000;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Contact Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin-top: 20px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  color: #ffffff;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-select option {
  background: #1a1a1a;
  color: #ffffff;
}

.contact-form .form-text {
  font-size: .8em !important;
  color: #ccc !important;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-info .contact-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.contact-info .social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  color: #ffffff;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.contact-info .social-links a:hover {
  background: var(--gold);
  transform: translateY(-3px);
  color: #000000;
}

/* Removendo animações antigas - agora usando apenas AOS */

/* Enhanced Service Cards */
.service-card {
  aspect-ratio: 1/1;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

/* Enhanced Portfolio Items */
.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(1);
}

.portfolio-item:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9),
    rgba(118, 75, 162, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  transform: scale(0.8);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: scale(1);
}

/* Enhanced Testimonial Cards */
.testimonial-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 20px;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

/* Logo Animation - Apenas para Hero Section */
.hero-animation .logo-svg {
  width: 100%;
  height: 100%;
  /* max-width: 300px;
  max-height: 300px; */
  transition: none;
  filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.3));
  /* Apenas animação de surgir pelo AOS */
  animation: none;
}

/* .hero-animation .logo-svg:hover {
  transform: none;
  filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.3));
  animation-play-state: running;
} */

/* .hero-animation .logo-svg path {
  transition: all 0.3s ease;
} */

/* .hero-animation .logo-svg:hover path {
  fill: url(#logoGradientHover);
} */

/* 3D Effect - Apenas para Hero */
/* .hero-animation::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
  pointer-events: none;
  display: none;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
} */

/* Outras logos (sem animação) */
.navbar-brand .logo-svg,
.footer-logo .logo-svg {
  transition: all 0.3s ease;
}

.navbar-brand .logo-svg:hover,
.footer-logo .logo-svg:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Loading Animation - Removido, agora usando AOS */

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
/* .nav-link:focus, */
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --gold: #ffff00;
  }
  
  .service-card,
  .portfolio-item,
  .testimonial-card {
    border-width: 2px;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
