/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-bright: #ffd97a;
  --gold-dark: #8b6914;
  --gold-pale: #f5e9c4;
  --gold-glow: rgba(201, 168, 76, 0.35);
  --black: #080807;
  --black-1: #0e0d0b;
  --black-2: #141310;
  --black-3: #1c1a15;
  --black-4: #252118;
  --white: #ffffff;
  --white-90: #f0ede5;
  --white-60: #ada89e;
  --white-30: #5e5b55;
  --border: rgba(201, 168, 76, 0.18);
  --border-dim: rgba(201, 168, 76, 0.08);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ═══════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--black-1);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   PARTICLES CANVAS
═══════════════════════════════════════════ */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  background: rgba(8, 8, 7, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-img {
  width: 64px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-name {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: "Cinzel", serif;
  font-size: 0.52rem;
  font-weight: 400;
  color: var(--white-60);
  letter-spacing: 0.55em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links li a {
  display: block;
  padding: 0.4rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--white-60);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 1.1rem;
  right: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.nav-links li a:hover {
  color: var(--gold-light);
}
.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-btn {
  font-family: "Raleway", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  cursor: pointer;
  padding: 0.65rem 1.8rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
}
.nav-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 0 0;
  overflow: hidden;
  background-image: url("img/lumina_dei_tech_background_gold_blue.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Animated scan line */
.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    transparent 100%
  );
  animation: scanDown 6s ease-in-out infinite;
  opacity: 0.4;
}
@keyframes scanDown {
  0% {
    top: 10%;
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

/* Vignette corner decorations */
.hero-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.hero-corner-tl {
  top: 90px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}
.hero-corner-tr {
  top: 90px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}
.hero-corner-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}
.hero-corner-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem 5rem 5rem;
  animation: fadeLeft 1s ease 0.2s both;
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.hero-overline-bar {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero-overline span {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.55em;
  text-transform: uppercase;
}

.hero-title-line1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.1em;
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
}
.hero-title-line2 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 40px rgba(232, 201, 106, 0.4);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.8rem;
}
.hero-divider-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider-diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hero-divider-text {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  border: none;
  cursor: pointer;
  padding: 0.9rem 2.4rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover::after {
  opacity: 1;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: pointer;
  padding: 0.9rem 2.4rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─── HERO RIGHT — SHIELD ─── */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  animation: fadeRight 1s ease 0.4s both;
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.shield-stage {
  position: relative;
  width: 440px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Circular halo rings */
.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid rgba(201, 168, 76, 0.15);
  animation: pulseRing 4s ease-in-out infinite;
}
.shield-ring-1 {
  width: 320px;
  height: 320px;
  animation-delay: 0s;
}
.shield-ring-2 {
  width: 380px;
  height: 380px;
  animation-delay: 0.5s;
  border-color: rgba(201, 168, 76, 0.09);
}
.shield-ring-3 {
  width: 440px;
  height: 440px;
  animation-delay: 1s;
  border-color: rgba(201, 168, 76, 0.05);
}
@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    border: 4px solid rgba(201, 168, 76, 0.15);
  }
  50% {
    transform: scale(1.03);
    border: 2px solid rgba(201, 168, 76, 0.05);
  }
}

.logo_large {
  width: 400px;
  position: absolute;
  animation: pulseRing1 4s ease-in-out infinite;
}
@keyframes pulseRing1 {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* Platform glow beneath shield */
.shield-platform {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.45) 0%,
    transparent 70%
  );
  filter: blur(8px);
  animation: platformPulse 3s ease-in-out infinite;
}
@keyframes platformPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.15);
  }
}

/* The shield itself */
.hero-shield-svg {
  width: 320px;
  height: 380px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5))
    drop-shadow(0 20px 60px rgba(201, 168, 76, 0.25));
  animation: shieldFloat 5s ease-in-out infinite;
}
@keyframes shieldFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-18px) rotate(0.5deg);
  }
  66% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

/* Orbiting particle dot */
.shield-orbit {
  position: absolute;
  width: 380px;
  height: 380px;
  animation: orbitSpin 10s linear infinite;
}
@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}
.shield-orbit-dot {
  width: 5px;
  height: 5px;
  background: var(--gold-bright);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--gold-bright);
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2.2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(201, 168, 76, 0.03);
}
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.stat-item:hover::before {
  transform: translateX(0);
}

.stat-icon {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.stat-num {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
  text-shadow: 0 0 20px rgba(232, 201, 106, 0.4);
}
.stat-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--white-60);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
.section {
  padding: 7rem 5rem;
  position: relative;
  z-index: 1;
}
.section-dark {
  background: var(--black-1);
}
.section-darker {
  background: var(--black-2);
}

.section-header {
  margin-bottom: 4.5rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-tag-line {
  justify-content: center;
}

.section-tag-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.stl-bar {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.stl-diamond {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.stl-text {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-title .gold {
  color: var(--gold-light);
}

.section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white-60);
  line-height: 1.95;
  max-width: 580px;
}
.section-desc.wide {
  max-width: 720px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services {
  background: var(--black-1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}

.service-card {
  background: var(--black-2);
  padding: 2.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  background: #1a180f;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover::after {
  opacity: 1;
}

.service-number {
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.3);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  position: relative;
  transition: border-color 0.3s;
}
.service-card:hover .service-icon-wrap {
  border-color: var(--gold);
}
.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.service-name {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-90);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  transition: color 0.3s;
}
.service-card:hover .service-name {
  color: var(--gold-light);
}

.service-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--white-30);
  line-height: 1.85;
  transition: color 0.3s;
}
.service-card:hover .service-desc {
  color: var(--white-60);
}

.service-arrow {
  margin-top: 2rem;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.service-card:hover .service-arrow {
  color: var(--gold);
}
.service-arrow::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.3s;
}
.service-card:hover .service-arrow::after {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   ABOUT / IDENTITY
═══════════════════════════════════════════ */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about-logo {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseRing1 4s ease-in-out infinite;
}
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("img/lumina_dei_tech_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-visual-shield {
  width: 260px;
  height: 300px;
  filter: drop-shadow(0 0 50px rgba(201, 168, 76, 0.3));
  animation: shieldFloat 6s ease-in-out infinite;
}
.about-rings-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
}
.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.ar1 {
  width: 340px;
  height: 340px;
  animation: spinCW 25s linear infinite;
}
.ar2 {
  width: 420px;
  height: 420px;
  animation: spinCCW 35s linear infinite;
  border-style: dashed;
}
.ar3 {
  width: 500px;
  height: 500px;
  animation: spinCW 50s linear infinite;
  border-color: rgba(201, 168, 76, 0.04);
}
@keyframes spinCW {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinCCW {
  to {
    transform: rotate(-360deg);
  }
}

/* Ring tick marks */
.about-ring-ticks {
  position: absolute;
  width: 340px;
  height: 340px;
  animation: spinCW 25s linear infinite;
}
.tick {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 8px;
  background: rgba(201, 168, 76, 0.4);
  transform-origin: 0 170px;
}

.about-content {
  padding: 5rem;
  background: var(--black-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-quote {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.about-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--white-60);
  line-height: 1.95;
  margin-bottom: 1.4rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  border: 1px solid var(--border-dim);
  background: var(--black-3);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.about-value:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}
.about-value-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.about-value-label {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.about-value-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-30);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOUNDER
═══════════════════════════════════════════ */
#founder {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}

.founder-portrait {
  position: relative;
  flex-shrink: 0;
}
.founder-monogram{
  width: 250px;
}
.founder-monogram-outer {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.founder-monogram-outer::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.founder-monogram-outer::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 168, 76, 0.06);
}
.founder-initials {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}
.founder-monogram-label {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.founder-name {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.founder-role {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.founder-bio {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--white-60);
  line-height: 1.95;
  margin-bottom: 2.2rem;
  max-width: 560px;
}

.founder-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
  margin-bottom: 2rem;
}
.founder-achievement {
  background: var(--black-3);
  padding: 1.2rem;
  text-align: center;
}
.fa-icon {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.fa-label {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}
.fa-value {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-60);
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.04);
  padding: 0.35rem 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.tag:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact {
  background: var(--black-1);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.contact-item {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s;
  cursor: default;
}
.contact-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--black-3);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.contact-item-label {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-item-val {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-90);
}

.contact-cta-box {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-cta-box .section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-cta-box .section-desc {
  font-size: 0.88rem;
  margin-bottom: 2rem;
}
.contact-tagline {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3rem 5rem;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: 2rem;
}
.footer-shield {
  width: 36px;
  height: 44px;
  opacity: 0.7;
}
.footer-tagline {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.4em;
}
.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--white-30);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--white-30);
  letter-spacing: 0.08em;
}
.footer-site {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 0.15em;
}

/* ═══════════════════════════════════════════
   ANIMATIONS / REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 4rem 2rem;
    text-align: center;
  }
  .hero-overline,
  .hero-divider {
    justify-content: center;
  }
  .hero-desc {
    margin: 0 auto 3rem;
  }
  .hero-btns {
    justify-content: center;
  }
  #about {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 300px;
  }
  .founder-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-monogram-outer {
    margin: 0 auto;
  }
  .founder-tags {
    justify-content: center;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding: 5rem 2rem;
  }
  nav {
    padding: 0 1.5rem;
  }
  .nav-links {
    display: none;
  }
  footer {
    padding: 2.5rem 2rem;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-achievements {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .founder-achievements {
    grid-template-columns: 1fr;
  }
  .hero-title-line1,
  .hero-title-line2 {
    font-size: 2.2rem;
  }
}

:root {
  --navy: #0f1b2d;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f7f3ec;
  --muted: #8b8b8b;
  --white: #ffffff;
  --green: #2d7a4f;
  --green-light: #e8f5ee;
  --blue: #1a4a7a;
  --blue-light: #e8f0fa;
  --purple: #5a2d82;
  --purple-light: #f0e8f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--navy);
}

header {
  background: var(--navy);
  padding: 32px 40px 0;
  text-align: center;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
}

.sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 24px;
}

.tabs {
  display: flex;
  background: var(--navy);
  padding: 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tab-btn {
  padding: 14px 26px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.content {
  display: none;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.content.active {
  display: block;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-bottom: 15px;
}

.pkg-card {
  background: var(--black-3);
  border-radius: 16px;
  padding: 28px;
  border: 2px solid transparent;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 27, 45, 0.12);
}

.pkg-card.featured {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}

.pkg-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 16px 0 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pkg-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.label-green {
  background: var(--green-light);
  color: var(--green);
}

.label-blue {
  background: var(--blue-light);
  color: var(--blue);
}

.label-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.label-gold {
  background: #fdf3d9;
  color: #8b6914;
}

.pkg-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: white;
}

.pkg-card.featured .pkg-name {
  color: var(--white);
}

.pkg-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.pkg-card.featured .pkg-desc {
  color: rgba(255, 255, 255, 0.6);
}

.pkg-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 14px 0;
}

.pkg-card.featured .pkg-divider {
  border-color: rgba(255, 255, 255, 0.15);
}

.pkg-items {
  list-style: none;
  margin-bottom: 18px;
}

.pkg-item {
  font-size: 13px;
  color: var(--white-60);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pkg-item::before {
  content: "✦";
  font-size: 9px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.pkg-card.featured .pkg-item {
  color: rgba(255, 255, 255, 0.7);
}

.pkg-original {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.pkg-card.featured .pkg-original {
  color: rgba(255, 255, 255, 0.35);
}

.pkg-price {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.pkg-card.featured .pkg-price {
  color: var(--gold);
}

.pkg-price span {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
}

.pkg-payment {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.pkg-card.featured .pkg-payment {
  color: rgba(255, 255, 255, 0.4);
}

/* Manutenção */
.manut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.manut-card {
  background: var(--black-3);
  border-radius: 16px;
  padding: 26px;
  border-left: 5px solid;
  transition: transform 0.2s;
}

.manut-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 27, 45, 0.1);
}

.manut-card.m1 {
  border-color:  #1577e7;
}

.manut-card.m2 {
  border-color: #f8bc25;
}

.manut-card.m3 {
  border-color: #2fc511;
}

.manut-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.m1 .manut-tag {
  color: #1577e7;
}

.m2 .manut-tag {
  color: #f8bc25;
}

.m3 .manut-tag {
  color: #2fc511;
}

.manut-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.manut-price {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  margin: 10px 0 4px;
  color: white;
}

.manut-price span {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.manut-items {
  list-style: none;
  margin-top: 14px;
}

.manut-item {
  font-size: 13px;
  color: var(--white-30);
  padding: 4px 0;
  display: flex;
  gap: 8px;
  line-height: 1.4;
}

.manut-item::before {
  content: "→";
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.m1 .manut-item::before {
  color:  #1577e7;
}

.m2 .manut-item::before {
  color: #f8bc25;
}

.m3 .manut-item::before {
  color: #2fc511;
}

.tip-box {
  background: linear-gradient(135deg, var(--navy), #1a3050);
  border-radius: 14px;
  padding: 24px 28px;
  color: white;
}

.tip-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 12px;
}

.tip-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Estratégia */
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .strategy-grid {
    grid-template-columns: 1fr;
  }
}

.strat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
}

.strat-title {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.strat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.icon-gold {
  background: #fdf3d9;
}

.icon-blue {
  background: var(--blue-light);
}

.icon-green {
  background: var(--green-light);
}

.icon-purple {
  background: var(--purple-light);
}

.strat-list {
  list-style: none;
}

.strat-item {
  font-size: 13px;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
  line-height: 1.5;
}

.strat-item:last-child {
  border-bottom: none;
}

.strat-item strong {
  color: var(--navy);
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e8e2d9;
  font-style: italic;
}
