/* 
  Donna Tech - Design System & Stylesheet
  Visual Style: Corporate / Modern / Tonal Minimalism
  "Power Suit" Editorial Aesthetic
*/

:root {
  /* Colors */
  --vinho: #5C1520;
  --vinho-hover: #450F18;
  --off-white: #FAF8F5;
  --creme: #F0EBE3;
  --dourado: #B8860B;
  --dourado-hover: #A0750A;
  --dourado-cta: #B8963E;
  --on-surface: #1A0508;
  --on-surface-variant: #544243;
  --outline: #dac1c1;
  
  /* Spacing */
  --gutter: 24px;
  --margin-mobile: 20px;
  --margin-desktop: 64px;
  --section-padding: 100px;
  
  /* Fonts */
  --font-body: 'Montserrat', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-handwriting: 'Dancing Script', cursive;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0px !important; /* Sharp, high-end editorial look */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--off-white);
  color: var(--on-surface);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Utility Containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--margin-mobile);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--margin-desktop);
  }
}

/* Header & Navigation */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--creme);
  transition: all 0.3s ease;
}

header.scrolled {
  height: 70px;
  background-color: rgba(250, 248, 245, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px;
  transition: all 0.3s ease;
}

header.scrolled .header-container {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

header.scrolled .logo-img {
  height: 38px;
}

.logo-text {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vinho);
  text-transform: uppercase;
  font-style: italic;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  position: relative;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0%;
  height: 1px;
  background-color: var(--vinho);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
  color: var(--vinho);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background-color: var(--vinho);
  color: var(--off-white);
}

.btn-primary:hover {
  background-color: var(--on-surface);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26, 5, 8, 0.25);
}

.btn-secondary {
  background-color: var(--dourado);
  color: #ffffff;
  padding: 24px 48px;
  font-size: 0.8rem;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background-color: var(--dourado-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184, 134, 11, 0.35);
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid var(--vinho);
  color: var(--vinho);
}

.btn-ghost:hover {
  background-color: var(--vinho);
  color: var(--off-white);
}

.btn-block-cta {
  background-color: var(--vinho);
  color: var(--off-white);
  padding: 16px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  width: 100%;
}

.btn-block-cta:hover {
  background-color: var(--on-surface);
  box-shadow: 0 10px 24px rgba(26, 5, 8, 0.25);
}

/* Mobile Menu Button */
.menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--vinho);
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--vinho);
  color: var(--off-white);
}

.hero-bg {
  position: absolute;
  inset: -40px;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
  overflow: hidden;
}



.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(92, 21, 32, 0.7) 0%,
    rgba(92, 21, 32, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tagline {
  font-family: var(--font-handwriting);
  font-size: 2.2rem;
  color: var(--creme);
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  opacity: 0;
  width: 100%;
  white-space: nowrap;
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 400;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.hero-desc {
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-content > div > div:last-child {
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateX(-50%) rotate(-6deg) translateY(-10px); }
  to { opacity: 0.95; transform: translateX(-50%) rotate(-6deg) translateY(0); }
}

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

.hero-title span {
  font-style: italic;
  font-weight: 300;
}

.hero-title strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(240, 235, 227, 0.9);
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.hero-desc span {
  font-weight: 600;
  color: #ffffff;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--dourado) 40%, transparent);
  z-index: 10;
  animation: scrollIndicator 2.2s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0% { transform: translate(-50%, -20px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Sections Common */
section {
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  border-bottom: 2px solid var(--vinho);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.section-label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vinho);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--vinho);
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Biography / Trajetória */
.bio-section {
  position: relative;
  min-height: 450px;
  padding: 80px 0;
  background-color: var(--creme);
  overflow: hidden;
}

.bio-bg {
  position: absolute;
  inset: -40px;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}



.bio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.3) contrast(1.05);
}

.bio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 240, 232, 0.85) 0%,
    rgba(245, 240, 232, 0.7) 40%,
    rgba(245, 240, 232, 0.9) 100%
  );
}

.bio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .bio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.bio-info {
  background: transparent;
  color: var(--vinho);
}

.bio-info .section-title {
  color: var(--vinho);
}

.bio-info .section-label-text {
  color: var(--vinho);
}

.bio-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.bio-text {
  font-size: 1rem;
  color: var(--on-surface-variant);
  line-height: 1.8;
}

.bio-text p {
  margin-bottom: 24px;
}

.bio-quote {
  position: relative;
  border-left: 1px solid rgba(92, 21, 32, 0.15);
  padding-left: 32px;
  font-style: italic;
  font-family: var(--font-body);
  color: var(--vinho);
  margin: 32px 0;
}

.bio-quote::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 0%;
  background-color: var(--dourado);
  transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.reveal.active .bio-quote::before {
  height: 100%;
}

.bio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vinho);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

/* Bio Images */
.bio-img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  border-radius: 16px;
}

.bio-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bio-img-container:hover .bio-img-frame img {
  transform: scale(1.06);
}

.reveal.active .bio-img-frame {
  animation: clipReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes clipReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

.bio-img-caption {
  font-family: var(--font-handwriting);
  font-size: 1.6rem;
  color: var(--vinho);
  text-align: center;
}

/* 7 Steps Section */
.steps-section {
  background-color: var(--vinho);
  color: var(--creme);
  border-top: 1px solid rgba(218, 193, 193, 0.2);
  border-bottom: 1px solid rgba(218, 193, 193, 0.2);
}

.steps-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 96px auto;
}

.steps-header .section-title {
  color: var(--creme);
  font-size: 2.2rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .steps-header .section-title {
    font-size: 3.5rem;
  }
}

.steps-header p {
  font-weight: 300;
  color: rgba(240, 235, 227, 0.8);
  font-size: 1.1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: rgba(240, 235, 227, 0.1);
  border: 1px solid rgba(240, 235, 227, 0.1);
}

@media (min-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  padding: 48px;
  background-color: var(--vinho);
  border: 1px solid rgba(240, 235, 227, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.4s ease;
}

.step-card:hover {
  background-color: rgba(240, 235, 227, 0.06);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  opacity: 1;
  text-shadow: 0 0 18px rgba(184, 134, 11, 0.5);
}

.step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--dourado);
  opacity: 0.8;
  transition: all 0.4s ease;
  display: inline-block;
}

.step-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--creme);
}

.step-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(240, 235, 227, 0.7);
  line-height: 1.7;
}

.steps-grid > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.steps-section.active .steps-grid > * {
  opacity: 1;
  transform: translateY(0);
}

.steps-section.active .steps-grid > *:nth-child(1) { transition-delay: 0.05s; }
.steps-section.active .steps-grid > *:nth-child(2) { transition-delay: 0.12s; }
.steps-section.active .steps-grid > *:nth-child(3) { transition-delay: 0.19s; }
.steps-section.active .steps-grid > *:nth-child(4) { transition-delay: 0.26s; }
.steps-section.active .steps-grid > *:nth-child(5) { transition-delay: 0.33s; }
.steps-section.active .steps-grid > *:nth-child(6) { transition-delay: 0.4s; }
.steps-section.active .steps-grid > *:nth-child(7) { transition-delay: 0.47s; }
.steps-section.active .steps-grid > *:nth-child(8) { transition-delay: 0.54s; }

.step-cta-card {
  padding: 48px;
  background-color: var(--dourado-cta);
  color: var(--vinho);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.step-cta-card p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}

/* Deliverables Section */
.deliverables-section {
  background-color: var(--creme);
}

.deliv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

@media (min-width: 1024px) {
  .deliv-grid {
    grid-template-columns: 4fr 8fr;
    gap: 96px;
  }
}

.deliv-intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.deliv-intro p {
  font-size: 1.1rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
}

.deliv-features {
  padding-top: 40px;
  border-top: 1px solid rgba(92, 21, 32, 0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.deliv-feat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--on-surface);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}

.deliv-feat-item span.material-symbols-outlined {
  color: var(--vinho);
  transition: transform 0.3s ease;
}

.deliv-feat-item:hover span.material-symbols-outlined {
  transform: scale(1.15);
}

.deliv-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  background-color: var(--vinho);
  padding: 48px;
}

@media (min-width: 768px) {
  .deliv-cards-container {
    grid-template-columns: 1fr 1fr;
    padding: 80px;
  }
}

.deliv-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.deliv-card:hover {
  transform: translateY(-6px);
  background-color: rgba(240, 235, 227, 0.05);
}

.deliv-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.deliv-card-header span.material-symbols-outlined {
  color: var(--dourado);
  font-size: 2rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.deliv-card:hover .deliv-card-header span.material-symbols-outlined {
  transform: scale(1.2) rotate(-6deg);
}

.deliv-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--creme);
}

.deliv-card-desc {
  font-size: 0.85rem;
  color: rgba(240, 235, 227, 0.7);
  line-height: 1.7;
  padding-left: 48px;
}

/* Highlight Quote Section */
.quote-section {
  background-color: var(--creme);
  border-top: 1px solid rgba(84, 66, 67, 0.3);
  border-bottom: 1px solid rgba(84, 66, 67, 0.3);
  padding: 96px 0;
}

.quote-section {
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(92, 21, 32, 0.06);
  line-height: 1;
  pointer-events: none;
}

.quote-title {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--vinho);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  background: linear-gradient(100deg, var(--vinho) 40%, var(--dourado) 50%, var(--vinho) 60%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-section.active .quote-title {
  animation: quoteShine 2.5s ease-in-out 0.3s forwards;
}

@keyframes quoteShine {
  to { background-position: 0% 0; }
}

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

/* Method Detail Section */
.method-section {
  background-color: var(--creme);
}

.method-header {
  text-align: center;
  margin-bottom: 96px;
}

.method-header .section-title {
  margin-bottom: 24px;
  font-size: 3rem;
}

.method-header p {
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: rgba(92, 21, 32, 0.1);
  border: 1px solid rgba(92, 21, 32, 0.1);
}

@media (min-width: 768px) {
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.method-card {
  background-color: var(--off-white);
  padding: 64px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-card:hover {
  background-color: var(--vinho);
  color: var(--off-white);
}

.method-card-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(92, 21, 32, 0.1);
  margin-bottom: 32px;
  line-height: 1;
  transition: all 0.5s ease;
}

.method-card:hover .method-card-num {
  color: rgba(184, 134, 11, 0.5);
  text-shadow: 0 0 30px rgba(184, 134, 11, 0.4);
}

.method-card {
  position: relative;
}

.method-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--dourado);
  opacity: 0;
  transform: scale(1.02);
  transition: all 0.4s ease;
  pointer-events: none;
}

.method-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.method-card-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--vinho);
  margin-bottom: 24px;
  transition: all 0.5s ease;
}

.method-card:hover .method-card-title {
  color: var(--off-white);
}

.method-card-desc {
  font-size: 1rem;
  color: var(--on-surface-variant);
  line-height: 1.8;
  margin-bottom: 40px;
  transition: all 0.5s ease;
}

.method-card:hover .method-card-desc {
  color: rgba(250, 248, 245, 0.8);
}

.method-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.method-card-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.method-list-dot {
  width: 8px;
  height: 8px;
  background-color: var(--vinho);
  transition: all 0.5s ease;
}

.method-card:hover .method-list-dot {
  background-color: var(--dourado);
}

/* Final CTA Section */
.final-cta {
  position: relative;
  background-color: var(--vinho);
  background-image: radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: ctaGradientMove 10s ease-in-out infinite;
  color: var(--off-white);
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
}

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

.final-cta .btn-secondary {
  animation: ctaPulse 2.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.45); }
  50% { box-shadow: 0 0 0 16px rgba(184, 134, 11, 0); }
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.25;
  font-style: italic;
  font-weight: 400;
}

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

.final-cta-desc {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 650px;
  line-height: 1.7;
}

.final-cta-desc span {
  color: var(--dourado);
  font-weight: 700;
}

.final-cta-note {
  font-family: var(--font-handwriting);
  font-size: 1.8rem;
  color: var(--creme);
  opacity: 0.6;
}

/* Footer */
footer {
  background-color: var(--creme);
  padding: 80px 0;
  border-top: 1px solid rgba(84, 66, 67, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  height: 64px;
  width: fit-content;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vinho);
  font-style: italic;
}

.footer-desc {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  line-height: 1.8;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-links-container {
    text-align: right;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vinho);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--on-surface);
}

.footer-copy {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Animations Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

/* Mobile Sidebar Drawer Navigation */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 5, 8, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  background-color: var(--off-white);
  z-index: 101;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.open .mobile-sidebar {
  right: 0;
}

.close-menu-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--vinho);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  text-decoration: none;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--vinho);
}

/* Modal Form styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 25% 15%, rgba(184, 134, 11, 0.35) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 85%, rgba(92, 21, 32, 0.4) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(26, 5, 8, 0.2) 0%, transparent 70%),
    linear-gradient(135deg, rgba(26, 5, 8, 0.65) 0%, rgba(26, 5, 8, 0.8) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: rgba(250, 248, 245, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 90%;
  max-width: 640px;
  box-shadow:
    0 8px 32px rgba(26, 5, 8, 0.15),
    0 2px 8px rgba(26, 5, 8, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  padding: 48px;
  position: relative;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px !important;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--vinho);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--dourado);
  transform: scale(1.1) rotate(90deg);
}

.modal-close span {
  font-size: 24px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--vinho);
  margin-bottom: 16px;
  line-height: 1.2;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  margin-bottom: 32px;
}

/* Modern Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.form-group:focus-within .form-label {
  color: var(--vinho);
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 3px solid rgba(184, 134, 11, 0.3);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--on-surface);
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px !important;
  box-shadow:
    0 2px 8px rgba(26, 5, 8, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.form-input::placeholder {
  color: #a39091;
  font-size: 0.85rem;
}

.form-input:focus {
  border-color: var(--vinho);
  border-left-color: var(--dourado);
  box-shadow: 0 8px 24px rgba(92, 21, 32, 0.06);
}

.form-textarea {
  resize: none;
  height: 100px;
}

/* Custom Select Dropdown Chevron styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
}

.select-wrapper::after {
  content: 'expand_more';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vinho);
  font-size: 20px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.select-wrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Form Submit Button */
.btn-submit {
  width: 100%;
  border: none;
  background-color: var(--dourado);
  color: #ffffff;
  padding: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
  cursor: pointer;
  margin-top: 12px;
}

.btn-submit:hover {
  background-color: var(--vinho);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(92, 21, 32, 0.25);
  transform: translateY(-2px);
}

/* Success Message Styles */
.success-checkmark {
  animation: checkmark-bounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes checkmark-bounce {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.send-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .send-status-grid {
    grid-template-columns: 1fr;
  }
}

.send-status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.send-status-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.send-status-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  flex-shrink: 0;
}

.send-status-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.send-status-text strong {
  font-size: 0.85rem;
  color: var(--on-surface);
  margin-bottom: 2px;
}

.send-status-text span {
  font-size: 0.75rem;
  color: var(--on-surface-variant);
}
