@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --color-blue: #0B192C;
  --color-blue-dark: #060E18;
  --color-gold: #CEA052;
  --color-gold-light: #E8C380;
  --color-gold-dark: #B2883E;
  --color-light: #F8FAFC;
  --color-text: #334155;
  --color-text-muted: #666666;
  --color-text-slate: #94A3B8;
  --color-white: #FFFFFF;
  --color-border: #dddddd;
  --color-border-dark: #222222;

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-light);
  color: var(--color-text);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Custom selection */
::selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-blue);
}

/* ==========================================================================
   LAYOUTS & CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 6rem;
  }
}

/* Grid helper */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 768px) {
  .md_grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md_grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md_grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .md_grid-col-span-1 { grid-column: span 1; }
  .md_grid-col-span-2 { grid-column: span 2; }
  .md_grid-col-span-3 { grid-column: span 3; }
  .md_grid-col-span-4 { grid-column: span 4; }
  .md_grid-col-span-5 { grid-column: span 5; }
  .md_grid-col-span-6 { grid-column: span 6; }
  .md_grid-col-span-7 { grid-column: span 7; }
  .md_grid-col-span-8 { grid-column: span 8; }
  .md_grid-col-span-9 { grid-column: span 9; }
  .md_grid-col-span-10 { grid-column: span 10; }
  .md_grid-col-span-11 { grid-column: span 11; }
  .md_grid-col-span-12 { grid-column: span 12; }
}

@media (min-width: 1024px) {
  .lg_grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg_grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg_grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .lg_grid-col-span-1 { grid-column: span 1; }
  .lg_grid-col-span-2 { grid-column: span 2; }
  .lg_grid-col-span-3 { grid-column: span 3; }
  .lg_grid-col-span-4 { grid-column: span 4; }
  .lg_grid-col-span-5 { grid-column: span 5; }
  .lg_grid-col-span-6 { grid-column: span 6; }
  .lg_grid-col-span-7 { grid-column: span 7; }
  .lg_grid-col-span-8 { grid-column: span 8; }
  .lg_grid-col-span-9 { grid-column: span 9; }
  .lg_grid-col-span-10 { grid-column: span 10; }
  .lg_grid-col-span-11 { grid-column: span 11; }
  .lg_grid-col-span-12 { grid-column: span 12; }
}

/* Flex helper */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* Spacing and heights */
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }

/* Responsive utility helpers */
.hidden { display: none !important; }
.mt-8 { margin-top: 2rem; }

@media (min-width: 768px) {
  .md_inline-flex { display: inline-flex !important; }
}

@media (min-width: 1024px) {
  .lg_mt-0 { margin-top: 0 !important; }
}

/* ==========================================================================
   NAVIGATION CABEÇALHO (NAVBAR)
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to right, rgba(6, 14, 24, 0.95), rgba(11, 25, 44, 0.9), rgba(6, 14, 24, 0.95));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(206, 160, 82, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.75rem 0;
  background: rgba(6, 14, 24, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .header-container {
    padding: 0 3rem;
  }
}

.logo img {
  height: 1.75rem;
  width: auto;
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .logo img {
    height: 2.5rem;
  }
}

/* Desktop Menu */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #e2e8f0;
  }

  .nav-links a {
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
  }

  .nav-links a:hover {
    color: var(--color-white);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-socials a {
    color: var(--color-gold);
  }

  .nav-socials a:hover {
    color: var(--color-white);
  }
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 2rem;
  height: 2rem;
  z-index: 101;
}

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

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

.mobile-toggle span:last-child {
  width: 75%;
  align-self: flex-end;
}

/* Active Hambúrguer */
.mobile-toggle.active span:first-child {
  transform: translateY(10px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:last-child {
  width: 100%;
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 14, 24, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2rem);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.mobile-nav-links a {
  color: #e2e8f0;
}

.mobile-nav-links a:hover {
  color: var(--color-gold);
  transform: scale(1.05);
}

.mobile-socials {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
}

.mobile-socials a {
  color: var(--color-gold);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-socials a:hover {
  color: var(--color-white);
  border-color: var(--color-gold);
}

/* ==========================================================================
   SECTIONS & SPECIAL COMPONENTS
   ========================================================================== */
/* Hero Section */
.hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: var(--color-blue-dark);
  border-bottom: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  min-height: 90vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.hero-radial-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(206, 160, 82, 0.15), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-image-side {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: none;
  overflow: hidden;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-image-side {
    display: block;
  }
}

.hero-image-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-blue-dark) 0%, rgba(6, 14, 24, 0.8) 50%, transparent 100%);
  z-index: 20;
}

.hero-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-blue-dark) 0%, transparent 40%);
  z-index: 20;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.6;
  filter: grayscale(100%) contrast(1.1);
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  z-index: 30;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-content {
    width: 65%;
    padding-right: 4rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  color: var(--color-gold-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  background-color: rgba(206, 160, 82, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(206, 160, 82, 0.2);
  margin-bottom: 1.5rem;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  margin-right: 0.75rem;
  display: inline-block;
}

.badge.no-dot::before {
  display: none;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 2rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-description {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 36rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(206, 160, 82, 0.2);
}

.btn-gold:hover {
  box-shadow: 0 4px 25px rgba(206, 160, 82, 0.4);
  transform: translateY(-2px);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
  transform: translateY(-2px);
}

/* Trust Banner */
.trust-banner {
  background-color: var(--color-white);
  border-bottom: 1px solid #f1f5f9;
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.trust-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.65;
  transition: var(--transition-smooth);
}

@media (min-width: 640px) {
  .trust-container {
    justify-content: space-between;
  }
}

.trust-banner:hover .trust-container {
  opacity: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-blue);
}

.trust-item span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-blue);
}

/* Dor / Pain points Section */
.dor-section {
  background-color: var(--color-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.dor-watermark {
  position: absolute;
  left: -8rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.02;
  color: var(--color-blue);
  pointer-events: none;
}

.dor-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
}

.dor-text h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .dor-text h2 {
    font-size: 2.75rem;
  }
}

.dor-text p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.btn-link {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-link span {
  transition: transform 0.3s;
}

.btn-link:hover span {
  transform: translateX(4px);
}

.dor-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 2px;
  box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.dor-card-item {
  position: relative;
  padding-left: 2rem;
}

.dor-card-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.dor-card-item h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.dor-card-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Specialties Section */
.specialties {
  background-color: var(--color-light);
  padding: 6rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.spec-watermark {
  position: absolute;
  right: -5rem;
  bottom: 2rem;
  font-size: 22rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: rgba(148, 163, 184, 0.1);
  line-height: none;
  pointer-events: none;
  user-select: none;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header span {
  color: #A67C00;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.spec-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.spec-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(206, 160, 82, 0.05);
  border-bottom-left-radius: 100px;
  margin-right: -2rem;
  margin-top: -2rem;
  transition: var(--transition-smooth);
  z-index: 1;
}

.spec-card:hover {
  border-color: rgba(206, 160, 82, 0.3);
  box-shadow: 0 20px 40px -15px rgba(206, 160, 82, 0.15);
  transform: translateY(-6px);
}

.spec-card:hover::after {
  transform: scale(1.1);
}

.spec-number {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  display: block;
  position: relative;
  z-index: 10;
}

.spec-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--color-blue);
  position: relative;
  z-index: 10;
}

.spec-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
  z-index: 10;
}

.spec-card .btn-link {
  font-size: 0.6rem;
  z-index: 10;
}

/* Testimonials (Social Proof) */
.testimonials {
  background-color: var(--color-blue-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.test-watermark {
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  font-size: 25rem;
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials .section-header h2 {
  color: var(--color-white);
}

.test-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .test-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.test-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.test-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.test-quote-icon {
  font-size: 4rem;
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.test-stars {
  color: var(--color-gold-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.test-body {
  color: #cbd5e1;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.test-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: auto;
}

.test-name {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.test-verify {
  color: var(--color-gold-light);
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Call to Action Final */
.cta-section {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-glow-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 300px;
  background: radial-gradient(circle, rgba(206, 160, 82, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-content .badge {
  margin-bottom: 2rem;
}

.cta-content h2 {
  color: var(--color-white);
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3.5rem;
  }
}

.cta-content p {
  color: #e2e8f0;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
}

/* ==========================================================================
   PÁGINAS ADICIONAIS & COMPONENTES
   ========================================================================== */
/* Page Header Generic */
.page-header {
  background-color: var(--color-white);
  padding-top: 8rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .page-header {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.page-header-container {
  position: relative;
  overflow: hidden;
}

.page-header-watermark {
  position: absolute;
  right: -2rem;
  top: -2.5rem;
  font-size: 20rem;
  font-family: var(--font-serif);
  font-weight: 300;
  color: rgba(241, 245, 249, 0.8);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 5.5rem;
  }
}

/* Page Intro Block */
.editorial-intro {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .editorial-intro {
    padding-left: 3rem;
    border-left: 1px solid var(--color-border);
    font-size: 1.15rem;
  }
}

/* Sobre Filosofia */
.filosofia {
  padding: 6rem 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  text-align: center;
}

.filo-text {
  max-width: 1000px;
  margin: 0 auto;
}

.filo-text p {
  font-size: 1.75rem;
  line-height: 1.4;
  color: var(--color-blue);
  font-weight: 300;
}

@media (min-width: 768px) {
  .filo-text p {
    font-size: 2.5rem;
  }
}

.filo-text span {
  color: var(--color-gold);
}

/* Profile Section (Dr. Edinei) */
.profile-section {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 1024px) {
  .profile-section {
    flex-direction: row;
    align-items: stretch;
  }
}

.profile-content {
  width: 100%;
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .profile-content {
    padding: 6rem;
  }
}

@media (min-width: 1024px) {
  .profile-content {
    width: 50%;
  }
}

.profile-content h2 {
  font-size: 2.25rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .profile-content h2 {
    font-size: 3.5rem;
  }
}

.profile-intro {
  color: #e2e8f0;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.profile-body {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 4rem;
}

.profile-image-side {
  width: 100%;
  height: 400px;
  position: relative;
}

@media (min-width: 768px) {
  .profile-image-side {
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .profile-image-side {
    width: 50%;
    height: auto;
  }
}

.profile-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transition: var(--transition-slow);
}

.profile-image-side:hover img {
  filter: grayscale(0%);
}

.profile-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-blue) 0%, transparent 40%);
}

@media (min-width: 1024px) {
  .profile-image-side::after {
    display: none;
  }
}

/* Serviços List Layout */
.service-item-row {
  padding: 6rem 0;
  border-bottom: 1px solid var(--color-border);
}

.service-number-col {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: #f1f5f9;
  line-height: 0.8;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-item-row:hover .service-number-col {
  color: var(--color-gold);
}

@media (min-width: 1024px) {
  .service-item-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }

  .service-number-col {
    grid-column: span 3;
    font-size: 7.5rem;
    margin-bottom: 0;
  }

  .service-content-col {
    grid-column: span 9;
  }
}

.service-item-row h2 {
  font-size: 2.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-item-row h2 {
    font-size: 3rem;
  }
}

.service-desc-body {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-blue);
  line-height: 1.7;
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.service-solution-card {
  border-left: 4px solid var(--color-gold);
  background-color: #fafafa;
  padding: 1.5rem 2rem;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  max-width: 48rem;
}

.service-solution-card strong {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-solution-card p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-blue);
}

/* Contato Form Page */
.contact-grid {
  display: grid;
  gap: 4rem;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
}

.contact-quick {
  border-left: 1px solid var(--color-gold);
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .contact-quick {
    padding-left: 4rem;
  }
}

.contact-quick span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1rem;
}

.contact-quick p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-quick p {
    font-size: 1.5rem;
  }
}

.contact-phone-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-blue);
}

@media (min-width: 640px) {
  .contact-phone-link {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-phone-link {
    font-size: 3.5rem;
  }
}

.contact-phone-link:hover {
  color: var(--color-gold);
  transform: translateY(-4px);
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-info-block {
    flex-direction: row;
    gap: 4rem;
  }
}

.info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  color: #333333;
}

.info-item a {
  font-size: 1.1rem;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  padding-bottom: 4px;
}

.info-item a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.info-item p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Assessoria Landing Page Styles */
.assessoria-hero {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .assessoria-hero {
    padding-top: 9rem;
    padding-bottom: 7rem;
  }
}

.assessoria-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .assessoria-hero-grid {
    grid-template-columns: 55% 45%;
    gap: 4rem;
  }
}

.assessoria-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.assessoria-left h1 {
  font-size: 2rem;
  line-height: 1.1;
  color: var(--color-white);
}

@media (min-width: 640px) {
  .assessoria-left h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .assessoria-left h1 {
    font-size: 3.5rem;
  }
}

.assessoria-left h1 span {
  background: linear-gradient(to right, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.assessoria-bullets {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .assessoria-bullets {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.85rem;
}

.bullet-item span.icon {
  color: var(--color-gold-light);
  font-size: 1.1rem;
}

/* Diagnostic Form Box */
.form-box-wrapper {
  position: relative;
}

.form-box-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
  border-radius: 4px;
  opacity: 0.2;
  filter: blur(8px);
  z-index: 0;
  transition: var(--transition-smooth);
}

.form-box-wrapper:hover::before {
  opacity: 0.3;
}

.form-box {
  position: relative;
  z-index: 10;
  background-color: rgba(11, 25, 44, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--color-text-slate);
  font-size: 0.85rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 0.35rem;
}

.input-field, .select-field {
  width: 100%;
  background-color: rgba(6, 14, 24, 0.8);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1rem;
  border-radius: 2px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.input-field:focus, .select-field:focus {
  border-color: var(--color-gold);
}

.select-field {
  cursor: pointer;
  color: #cbd5e1;
}

.select-field option {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
}

.btn-submit {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(206, 160, 82, 0.2);
  overflow: hidden;
}

.btn-submit:hover {
  box-shadow: 0 4px 25px rgba(206, 160, 82, 0.4);
}

.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: none;
}

.btn-submit:hover::after {
  animation: shimmer 2s infinite;
}

.form-footer-note {
  font-size: 0.65rem;
  color: var(--color-text-slate);
  text-align: center;
  margin-top: 1rem;
}

/* Pain vs Solution comparative block */
.comparison-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.comparison-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.comparison-card.pain::before {
  background-color: #ef4444; /* red-500 */
}

.comparison-card.solution::before {
  background-color: var(--color-gold);
}

.comparison-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-item {
  display: flex;
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-item .icon {
  margin-right: 1rem;
  margin-top: 0.15rem;
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-item.pain-item .icon {
  color: #ef4444;
}

.comparison-item.solution-item .icon {
  color: var(--color-gold);
}

.comparison-item strong {
  color: var(--color-blue);
  font-weight: 600;
}

.assessoria-bio-img-wrapper {
  position: relative;
}

.assessoria-bio-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(206, 160, 82, 0.4);
  transform: translate(1rem, 1rem);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.assessoria-bio-img-wrapper:hover .assessoria-bio-border {
  transform: translate(0.5rem, 0.5rem);
}

.assessoria-bio-img {
  position: relative;
  z-index: 10;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  aspect-ratio: 4/5;
  object-position: top;
  filter: grayscale(100%);
  transition: var(--transition-slow);
}

.assessoria-bio-img-wrapper:hover .assessoria-bio-img {
  filter: grayscale(0);
}

/* Steps Block */
.steps-grid {
  position: relative;
}

.steps-line {
  display: none;
  position: absolute;
  top: 3rem;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: rgba(226, 232, 240, 0.6);
  z-index: 0;
}

@media (min-width: 1024px) {
  .steps-line {
    display: block;
  }
}

.step-card {
  position: relative;
  z-index: 10;
  text-align: center;
  background-color: var(--color-white);
  padding: 2rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  height: 100%;
}

.step-number {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 8px solid var(--color-white);
}

.step-card:first-child .step-number {
  background-color: var(--color-gold);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER (RODAPÉ)
   ========================================================================== */
footer {
  background-color: var(--color-blue-dark);
  padding: 5rem 0;
  border-top: 1px solid #1a1a1a;
  color: var(--color-text-slate);
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-logo-link:hover {
  opacity: 1;
}

.footer-logo-link img {
  height: 2rem;
  width: auto;
}

@media (min-width: 768px) {
  .footer-logo-link img {
    height: 2.5rem;
  }
}

.footer-note {
  font-size: 0.75rem;
  max-width: 28rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.footer-copyright {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #444444;
}

.footer-right h4 {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .footer-right h4 {
    font-size: 1.5rem;
  }
}

.footer-right .btn-outline {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-right .btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Directions */
.fade-in.left {
  transform: translateX(2rem);
}

.fade-in.right {
  transform: translateX(-2rem);
}

.fade-in.up {
  transform: translateY(2rem);
}

.fade-in.down {
  transform: translateY(-2rem);
}

.fade-in.left.visible,
.fade-in.right.visible {
  transform: translateX(0);
}

.fade-in.up.visible,
.fade-in.down.visible {
  transform: translateY(0);
}

/* Stagger container children animation classes */

/* Glass CTA Card */
.cta-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.cta-glass-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-glass-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-glass-card .btn-whatsapp-white {
  display: block;
  width: 100%;
  padding: 1.1rem 2rem;
  background-color: var(--color-white);
  color: #0b192c;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  text-align: center;
  transition: var(--transition-smooth);
}

.cta-glass-card .btn-whatsapp-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Shimmer effect for form button */
@keyframes shimmer {
  100% {
    left: 120%;
  }
}

/* Pulse animation for gold dots */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse {
  animation: pulse 3s ease-in-out infinite;
}

/* ==========================================================================
   UTILITY CLASSES & FORM SUCCESS (CLEAN CODE REFACTOR)
   ========================================================================== */

/* Paddings */
.py-6rem { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.py-4rem { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-2rem { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.pt-1rem { padding-top: 1rem !important; }
.pb-1rem { padding-bottom: 1rem !important; }
.pb-2rem { padding-bottom: 2rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1rem { margin-bottom: 1rem !important; }
.mb-1-5rem { margin-bottom: 1.5rem !important; }
.mb-2rem { margin-bottom: 2rem !important; }
.mb-2-5rem { margin-bottom: 2.5rem !important; }
.mt-1rem { margin-top: 1rem !important; }

/* Colors & Backgrounds */
.bg-light { background-color: var(--color-light) !important; }
.bg-white { background-color: var(--color-white) !important; }
.bg-blue { background-color: var(--color-blue) !important; }
.text-white { color: var(--color-white) !important; }
.text-muted { color: var(--color-text-muted) !important; }

/* SVG / Icon Sizing */
.icon-sm { width: 1.25rem !important; height: 1.25rem !important; }
.icon-md { width: 1.5rem !important; height: 1.5rem !important; }
.icon-lg { width: 1.75rem !important; height: 1.75rem !important; }
.icon-wrapper-sm { width: 2.5rem !important; height: 2.5rem !important; }

/* Animation Delays */
.delay-150 { transition-delay: 0.15s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-255 { transition-delay: 0.25s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-450 { transition-delay: 0.45s !important; }

/* Form Success Message Box */
.form-success-box {
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(206, 160, 82, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(206, 160, 82, 0.2);
}

.form-success-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-gold-light);
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 400;
}

.form-success-text {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 300;
}

/* Custom refactoring helper utilities */
.gap-1rem { gap: 1rem !important; }
.gap-1-5rem { gap: 1.5rem !important; }
.gap-2rem { gap: 2rem !important; }
.gap-2-5rem { gap: 2.5rem !important; }
.btn-sm { padding: 0.65rem 1.5rem !important; font-size: 0.7rem !important; }
.btn-icon-outline { padding: 0.65rem !important; background-color: rgba(255, 255, 255, 0.1) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; border-radius: 2px !important; color: var(--color-white) !important; }
.text-gold-light { color: var(--color-gold-light) !important; }
.glow-gold-top-right { position: absolute; top: 0; right: 0; width: 600px; height: 600px; background-color: rgba(206, 160, 82, 0.05); border-radius: 50%; filter: blur(120px); pointer-events: none; }
.glow-blue-bottom-left { position: absolute; bottom: 0; left: 0; width: 400px; height: 400px; background-color: rgba(59, 130, 246, 0.05); border-radius: 50%; filter: blur(100px); pointer-events: none; }
.scroll-mt-7rem { scroll-margin-top: 7rem !important; }
.text-title-sm { font-size: 0.95rem !important; }
.border-bottom { border-bottom: 1px solid var(--color-border) !important; }
.border-top { border-top: 1px solid var(--color-border) !important; }
.relative { position: relative !important; }
.overflow-hidden { overflow: hidden !important; }
.bg-panel-right { position: absolute; right: 0; top: 0; width: 33.333%; height: 100%; background-color: rgba(248, 250, 252, 0.5); z-index: 0; }
.z-10 { z-index: 10 !important; }
.text-2-25rem { font-size: 2.25rem !important; }
.mb-0-5rem { margin-bottom: 0.5rem !important; }
.divider-gold { height: 1px; width: 3rem; background-color: var(--color-gold); margin-bottom: 1rem; }
.profile-metadata { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.profile-text { color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.7; font-weight: 300; }
.text-blue-dark { color: var(--color-blue) !important; }
.font-semibold { font-weight: 600 !important; }
.w-full { width: 100% !important; }
.text-center { text-align: center !important; }
.profile-social-link { color: var(--color-text-muted); font-weight: 600; font-size: 0.9rem; width: 100%; }
.mr-0-5rem { margin-right: 0.5rem !important; }
.border-light { border-color: #f1f5f9 !important; }
.shadow-sm { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important; }
.text-gold-ultra-light { color: rgba(206, 160, 82, 0.1) !important; }
.text-slate { color: var(--color-text-slate) !important; }
.py-7rem { padding-top: 7rem !important; padding-bottom: 7rem !important; }
.bg-blue-dark { background-color: var(--color-blue-dark) !important; }
.cta-grad-bg { position: absolute; inset: 0; background: linear-gradient(to bottom right, var(--color-blue-dark), var(--color-blue), #06101c); pointer-events: none; z-index: 0; }
.cta-dots-bg { position: absolute; inset: 0; background-image: radial-gradient(var(--color-gold) 1px, transparent 1px); background-size: 32px 32px; opacity: 0.03; pointer-events: none; z-index: 0; }
.cta-glow-bg-z0 { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 800px; height: 300px; background: radial-gradient(circle, rgba(206, 160, 82, 0.1) 0%, transparent 70%); filter: blur(50px); pointer-events: none; z-index: 0; }
.text-left { text-align: left !important; }
.border-white-opacity-2 { border-color: rgba(255, 255, 255, 0.2) !important; }
.font-light { font-weight: 300 !important; }
.font-serif { font-family: var(--font-serif) !important; }
.text-slate-light { color: #cbd5e1 !important; }
.max-w-32rem { max-width: 32rem !important; }
.cta-bullets-list { font-weight: 300; font-size: 0.9rem; color: #e2e8f0; display: flex; flex-direction: column; gap: 1rem; list-style-type: none; padding-left: 0; margin-bottom: 0; }
.bullet-dot-gold { width: 6px; height: 6px; border-radius: 50%; background-color: var(--color-gold); display: inline-block; margin-top: 0.5rem; flex-shrink: 0; }
.section-header p { color: var(--color-text-muted); font-size: 0.95rem; font-weight: 300; max-width: 32rem; margin: 1rem auto 0; line-height: 1.6; }

/* Additional Refactoring Helpers */
.watermark-right-4rem { right: -4rem !important; }
.text-2-5rem { font-size: 2.5rem !important; }
.max-w-48rem { max-width: 48rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.btn-padding-large { padding: 1.25rem 3.5rem !important; }
.fade-out-transition { opacity: 0 !important; transition: opacity 0.3s ease !important; }
.fade-in-transition { opacity: 1 !important; transition: opacity 0.3s ease !important; }
.form-success-divider { height: 1px; background-color: rgba(255, 255, 255, 0.1); margin: 1.5rem auto; width: 80%; }
.form-success-subtext { color: #94a3b8; font-size: 0.85rem; margin-bottom: 1.5rem; line-height: 1.5; font-weight: 300; }
.btn-whatsapp-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--color-white) !important;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
  text-decoration: none;
  animation: whatsapp-pulse 3s infinite ease-in-out;
}
.btn-whatsapp-success:hover {
  background: linear-gradient(135deg, #20ba56 0%, #0e7569 100%);
  box-shadow: 0 6px 25px rgba(18, 140, 126, 0.6);
  transform: translateY(-2px);
  animation-play-state: paused;
}
.btn-whatsapp-success svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.6rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 6px 22px rgba(18, 140, 126, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
  }
}

textarea.input-field {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
  font-family: var(--font-sans);
}
.char-counter {
  font-size: 0.65rem;
  color: var(--color-text-slate);
  margin-top: 0.35rem;
  text-align: right;
  transition: var(--transition-smooth);
}
.char-counter.valid {
  color: #25d366 !important;
}

/* Form Premium */
.form-uiverse {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  position: relative;
  background-color: rgba(11, 25, 44, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.form-uiverse .title-uiverse {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 25px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  margin-bottom: 0.25rem;
}

.form-uiverse .title-uiverse::before,
.form-uiverse .title-uiverse::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  left: 0px;
  background-color: var(--color-gold);
}

.form-uiverse .title-uiverse::before {
  width: 12px;
  height: 12px;
}

.form-uiverse .title-uiverse::after {
  width: 12px;
  height: 12px;
  animation: pulse-uiverse 1.5s linear infinite;
}

.form-uiverse .message-uiverse {
  font-size: 0.85rem;
  color: var(--color-text-slate);
  margin-bottom: 1.5rem;
}

.form-uiverse label {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 1.25rem;
}

.form-uiverse label .input {
  background-color: rgba(6, 14, 24, 0.8);
  color: var(--color-white);
  width: 100%;
  padding: 1.25rem 0.75rem 0.35rem 0.75rem;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-uiverse label .input:hover {
  border-color: rgba(206, 160, 82, 0.4);
}

.form-uiverse label .input:focus {
  border-color: var(--color-gold);
}

.form-uiverse label .input + span {
  color: var(--color-text-slate);
  position: absolute;
  left: 12px;
  top: 4px;
  font-size: 0.75rem;
  cursor: text;
  transition: 0.3s ease;
  pointer-events: none;
}

.form-uiverse label .input:placeholder-shown + span {
  top: 12.5px;
  font-size: 0.85rem;
}

.form-uiverse label .input:focus + span,
.form-uiverse label .input:valid + span {
  color: var(--color-gold);
  top: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

/* Para o select */
.form-uiverse .select-group {
  position: relative;
  margin-top: 1.25rem;
}

.form-uiverse .select-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text-slate);
  margin-bottom: 0.35rem;
}

.form-uiverse .select-field {
  width: 100%;
  background-color: rgba(6, 14, 24, 0.8);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1rem;
  border-radius: 2px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-uiverse .select-field:focus {
  border-color: var(--color-gold);
}

.form-uiverse .btn-submit-uiverse {
  border: none;
  outline: none;
  padding: 1rem;
  border-radius: 2px;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  width: 100%;
  margin-top: 0.5rem;
}

.form-uiverse .btn-submit-uiverse:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.form-uiverse .form-footer-note {
  font-size: 0.75rem;
  color: var(--color-text-slate);
  text-align: center;
  margin-top: 0.75rem;
  opacity: 0.8;
}

@keyframes pulse-uiverse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Instagram Hover Button */
.Btn {
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: .4s;
  cursor: pointer;
  position: relative;
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  overflow: hidden;
  text-decoration: none;
}

.svgIcon {
  transition-duration: .3s;
}

.svgIcon path {
  fill: white;
}

.text {
  position: absolute;
  color: rgb(255, 255, 255);
  width: 120px;
  font-weight: 600;
  opacity: 0;
  transition-duration: .4s;
  text-align: center;
  font-family: var(--font-sans);
}

.Btn:hover {
  width: 110px;
  transition-duration: .4s;
  border-radius: 30px;
}

.Btn:hover .text {
  opacity: 1;
  transition-duration: .4s;
}

.Btn:hover .svgIcon {
  opacity: 0;
  transition-duration: .3s;
}
