/* Reset e Variáveis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores do tema */
  --gray900: rgba(20, 20, 21, 1);
  --gray800: rgba(28, 26, 34, 1);
  --gray700: rgba(37, 35, 42, 1);
  --gray600: rgba(80, 78, 85, 1);
  --gray500: rgba(118, 117, 121, 1);
  --gray400: rgba(125, 122, 133, 1);
  --gray300: rgba(168, 168, 170, 1);
  --gray200: rgba(199, 198, 200, 1);
  --gray100: rgba(255, 255, 255, 1);
  --gray050: rgba(255, 255, 255, 0.8);

  /* Cores primárias melhoradas */
  --primary-color: #a39185;
  --primary-dark: #8b7d6b;
  --primary-light: #b8a99d;
  --primary-glow: rgba(163, 145, 133, 0.4);

  /* Gradientes sofisticados */
  --gradient-primary: linear-gradient(135deg, #a39185 0%, #8b7d6b 50%, #a39185 100%);
  --gradient-primary-hover: linear-gradient(135deg, #b8a99d 0%, #a39185 50%, #8b7d6b 100%);
  --gradient-gold: linear-gradient(135deg, rgba(163, 145, 133, 0.3) 0%, rgba(139, 125, 107, 0.2) 100%);
  --gradient-section: linear-gradient(180deg, #25232A 0%, rgba(37, 35, 42, 0) 100%);
  --gradient-light: linear-gradient(329.9deg, rgba(255, 255, 255, 0.12) 14.05%, rgba(255, 255, 255, 0.05) 87%);
  --gradient-border: linear-gradient(137.62deg, rgba(255, 255, 255, 0.15) 1.79%, rgba(255, 255, 255, 0) 97.61%);
  --gradient-hero: radial-gradient(ellipse at center, rgba(163, 145, 133, 0.15) 0%, transparent 70%);
  
  /* Glassmorphism aprimorado */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
  font-family: 'Fira Sans', sans-serif;
  background: var(--gray900);
  color: var(--gray200);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

.landing-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

/* Hero Section - Muito mais bonito */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
  background: 
    radial-gradient(ellipse 120% 100% at 50% 0%, rgba(163, 145, 133, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(163, 145, 133, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(145, 145, 145, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--gray900) 0%, rgba(20, 20, 21, 0.95) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(163, 145, 133, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(145, 145, 145, 0.08) 0%, transparent 40%);
  animation: backgroundFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, transparent 0%, rgba(163, 145, 133, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: 650px;
  text-align: center;
  z-index: 1;
  position: relative;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.logo-container {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  position: relative;
  animation: logoFloat 3s ease-in-out infinite;
}

.logo {
  width: 120px;
  height: auto;
  filter: brightness(1) drop-shadow(0 8px 30px rgba(163, 145, 133, 0.4));
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.logo:hover {
  transform: scale(1.08);
  filter: brightness(1.1) drop-shadow(0 12px 40px rgba(163, 145, 133, 0.6));
}

.hero-title {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 2rem;
  background: linear-gradient(
    135deg,
    var(--gray100) 0%,
    var(--primary-light) 25%,
    var(--primary-color) 50%,
    var(--primary-light) 75%,
    var(--gray100) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 6s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(163, 145, 133, 0.3);
  position: relative;
  letter-spacing: -0.5px;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.6;
  animation: underlineGrow 1.5s ease-out 1s forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray300);
  opacity: 0.95;
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* About Section - Muito mais elegante */
.about-section {
  padding: 6rem 1.5rem;
  background: 
    linear-gradient(180deg, var(--gray800) 0%, rgba(28, 26, 34, 0.98) 100%),
    radial-gradient(ellipse at center, rgba(163, 145, 133, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-border);
  box-shadow: 0 0 20px rgba(163, 145, 133, 0.3);
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(163, 145, 133, 0.2), transparent);
}

.about-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.profile-image-container {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-image-container.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.profile-image {
  width: 240px;
  height: auto;
  border-radius: 28px;
  box-shadow:
    0 0 50px rgba(163, 145, 133, 0.5),
    0 0 100px rgba(163, 145, 133, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, rgba(163, 145, 133, 0.1), rgba(139, 125, 107, 0.05));
  padding: 4px;
}

.profile-image:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 80px rgba(163, 145, 133, 0.7),
    0 0 120px rgba(163, 145, 133, 0.4),
    0 25px 80px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(163, 145, 133, 0.5) 0%, rgba(163, 145, 133, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 5s ease-in-out infinite;
  filter: blur(30px);
}

.section-title {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--gray100);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--gray100), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section.animate-in .section-title,
.animate-in.section-title {
  opacity: 1;
  transform: translateY(0);
}

.about-text {
  font-size: 1.125rem;
  color: var(--gray300);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 400;
}

section.animate-in .about-text,
.animate-in.about-text {
  opacity: 1;
  transform: translateY(0);
}

section.animate-in .about-text:nth-child(2) {
  transition-delay: 0.1s;
}

section.animate-in .about-text:nth-child(3) {
  transition-delay: 0.2s;
}

.about-text strong {
  color: var(--primary-light);
  font-weight: 600;
  position: relative;
  text-shadow: 0 0 20px rgba(163, 145, 133, 0.3);
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--glass-border);
  border-radius: 20px;
  font-size: 0.96875rem;
  color: var(--gray200);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.credential-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(163, 145, 133, 0.15), transparent);
  transition: left 0.8s ease;
}

.credential-item:hover::before {
  left: 100%;
}

.credential-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.credential-item:hover::after {
  opacity: 1;
}

.credential-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.credential-item:nth-child(1) { transition-delay: 0.1s; }
.credential-item:nth-child(2) { transition-delay: 0.2s; }
.credential-item:nth-child(3) { transition-delay: 0.3s; }
.credential-item:nth-child(4) { transition-delay: 0.4s; }

.credential-item:hover {
  background: linear-gradient(135deg, rgba(163, 145, 133, 0.18), rgba(139, 125, 107, 0.12));
  border-color: rgba(163, 145, 133, 0.5);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 
    0 12px 40px rgba(163, 145, 133, 0.3),
    0 0 60px rgba(163, 145, 133, 0.15);
}

.credential-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: 50%;
  padding: 0.875rem;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(163, 145, 133, 0.2);
  aspect-ratio: 1 / 1;
}

.credential-item:hover .credential-icon-wrapper {
  background: linear-gradient(135deg, rgba(163, 145, 133, 0.35), rgba(139, 125, 107, 0.3));
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(163, 145, 133, 0.4);
}

.credential-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0.95);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 50%;
  object-fit: contain;
  clip-path: circle(50%);
}

.credential-item:hover .credential-icon {
  filter: brightness(1.3);
  transform: scale(1.15);
}

/* Services Section - Muito mais bonito */
.services-section {
  padding: 6rem 1.5rem;
  background: 
    linear-gradient(180deg, var(--gray900) 0%, rgba(20, 20, 21, 0.98) 100%),
    radial-gradient(ellipse at center, rgba(163, 145, 133, 0.04) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-border);
  box-shadow: 0 0 20px rgba(163, 145, 133, 0.3);
}

.services-content {
  max-width: 650px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-item {
  padding: 2.5rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--glass-border);
  border-radius: 24px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.service-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(163, 145, 133, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

.service-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-item:nth-child(1) { transition-delay: 0.1s; }
.service-item:nth-child(2) { transition-delay: 0.2s; }
.service-item:nth-child(3) { transition-delay: 0.3s; }
.service-item:nth-child(4) { transition-delay: 0.4s; }
.service-item:nth-child(5) { transition-delay: 0.5s; }
.service-item:nth-child(6) { transition-delay: 0.6s; }

.service-item:hover {
  background: linear-gradient(135deg, rgba(163, 145, 133, 0.2), rgba(139, 125, 107, 0.15));
  border-color: rgba(163, 145, 133, 0.5);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 16px 50px rgba(163, 145, 133, 0.3),
    0 0 80px rgba(163, 145, 133, 0.15);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  border-radius: 50%;
  padding: 1.25rem;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(163, 145, 133, 0.25);
  aspect-ratio: 1 / 1;
}

.service-item:hover .service-icon-wrapper {
  background: linear-gradient(135deg, rgba(163, 145, 133, 0.4), rgba(139, 125, 107, 0.35));
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(163, 145, 133, 0.4);
}

.service-icon {
  width: 40px;
  height: 40px;
  filter: brightness(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 50%;
  object-fit: contain;
  clip-path: circle(50%);
}

.service-item:hover .service-icon {
  filter: brightness(1.3);
  transform: scale(1.2);
}

.service-item h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--gray200);
  line-height: 1.5;
  transition: color 0.4s ease;
  letter-spacing: 0.2px;
}

.service-item:hover h3 {
  color: var(--gray100);
  text-shadow: 0 0 20px rgba(163, 145, 133, 0.3);
}

/* Contact Section - Muito mais elegante */
.contact-section {
  padding: 6rem 1.5rem;
  background: 
    linear-gradient(180deg, var(--gray800) 0%, rgba(28, 26, 34, 0.98) 100%),
    radial-gradient(ellipse at center, rgba(163, 145, 133, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-border);
  box-shadow: 0 0 20px rgba(163, 145, 133, 0.3);
}

.contact-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.75rem 2.25rem;
  background: var(--gradient-primary);
  color: var(--gray100);
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 8px 30px rgba(163, 145, 133, 0.4),
    0 0 60px rgba(163, 145, 133, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-button.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-button:nth-child(1) { transition-delay: 0.1s; }
.contact-button:nth-child(2) { transition-delay: 0.2s; }
.contact-button:nth-child(3) { transition-delay: 0.3s; }

.contact-button::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.8s ease;
}

.contact-button:hover::before {
  left: 100%;
}

.contact-button::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: var(--gradient-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact-button:hover::after {
  opacity: 1;
}

.contact-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 15px 45px rgba(163, 145, 133, 0.6),
    0 0 80px rgba(163, 145, 133, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: var(--gradient-primary-hover);
}

.contact-button.phone {
  background: linear-gradient(135deg, var(--gray700), var(--gray600));
}

.contact-button.phone:hover {
  background: linear-gradient(135deg, var(--gray600), var(--gray700));
}

.contact-button.email {
  background: linear-gradient(135deg, var(--gray700), var(--gray600));
}

.contact-button.email:hover {
  background: linear-gradient(135deg, var(--gray600), var(--gray700));
}

.contact-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover .contact-icon-wrapper {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  width: 28px;
  height: 28px;
  color: currentColor;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  flex-shrink: 0;
}

.contact-button:hover .contact-icon {
  transform: scale(1.2);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.animate-in .social-links,
.animate-in.social-links {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--glass-border);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 145, 133, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.8s ease, height 0.8s ease;
}

.social-link:hover::before {
  width: 200%;
  height: 200%;
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(163, 145, 133, 0.3), rgba(139, 125, 107, 0.25));
  border-color: rgba(163, 145, 133, 0.6);
  transform: translateY(-6px) scale(1.1);
  box-shadow: 
    0 12px 35px rgba(163, 145, 133, 0.4),
    0 0 60px rgba(163, 145, 133, 0.2);
}

.social-link img {
  width: 32px;
  height: 32px;
  filter: brightness(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
  border-radius: 50%;
  object-fit: cover;
}

.social-link:hover img {
  filter: brightness(1.3);
  transform: scale(1.2);
}

/* CTA Section - Muito mais impactante */
.cta-section {
  padding: 6rem 1.5rem;
  background: 
    linear-gradient(180deg, var(--gray900) 0%, rgba(20, 20, 21, 0.98) 100%),
    radial-gradient(ellipse at center, rgba(163, 145, 133, 0.08) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-border);
  box-shadow: 0 0 20px rgba(163, 145, 133, 0.3);
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.animate-in .cta-content,
.animate-in.cta-content {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--gray100);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gray100), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.cta-text {
  font-size: 1.125rem;
  color: var(--gray300);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 3rem;
  background: var(--gradient-primary);
  color: var(--gray100);
  text-decoration: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 10px 35px rgba(163, 145, 133, 0.5),
    0 0 70px rgba(163, 145, 133, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.8s ease;
}

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

.cta-button:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 20px 50px rgba(163, 145, 133, 0.7),
    0 0 100px rgba(163, 145, 133, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: var(--gradient-primary-hover);
}

.cta-button .arrow {
  font-size: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
}

.cta-button:hover .arrow {
  transform: translateX(10px) scale(1.15);
}

/* Footer - Mais elegante */
.footer {
  padding: 4rem 1.5rem;
  background: var(--gray800);
  border-top: 2px solid rgba(163, 145, 133, 0.2);
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-border);
  box-shadow: 0 0 20px rgba(163, 145, 133, 0.3);
}

.footer-content {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}

.footer-text {
  font-size: 1rem;
  color: var(--gray400);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-oab {
  font-size: 1rem;
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(163, 145, 133, 0.4);
}

.footer-cnpj {
  font-size: 0.95rem;
  color: var(--gray300);
  letter-spacing: 0.5px;
}

/* Animações melhoradas */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes backgroundFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 0.6;
  }
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: rippleAnimation 0.8s ease-out;
  pointer-events: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 1.25rem 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .credentials {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    width: 100%;
  }

  .contact-button {
    width: 100%;
  }
}

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

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

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

  .credentials {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    padding: 2rem 1.25rem;
  }

  .service-item h3 {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 1.875rem;
  }

  .cta-button {
    padding: 1.5rem 2.5rem;
    font-size: 1.125rem;
  }

  .contact-button {
    padding: 1.5rem 2rem;
    font-size: 1.0625rem;
  }

  .profile-image {
    width: 200px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

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