@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600&family=Inter:wght@400;500;600;700&family=Niramit:wght@400;600;700&display=swap');

:root {
  /* Colors */
  --color-canvas: #1A1814;
  --color-surface-soft: #201E19;
  --color-gold: #C9A05A;
  --color-gold-muted: #8C887C;
  --color-cream: #FAEAC3;
  --color-body: #B3B1AF;
  --color-hairline: #333028;

  /* Gradients */
  --gradient-gold: linear-gradient(90.01deg, #F2C27E 0.01%, #ECB471 59.74%, #D58931 119.47%);
  --shadow-btn-gold: 0px 0px 28.3px rgba(250, 234, 195, 0.21);

  /* Fonts */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-btn: 'Niramit', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-pad: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-canvas);
  color: var(--color-body);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  padding: 0 72px;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-cream);
}

p {
  font-size: 16px;
  color: var(--color-body);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 9px;
  padding-left: 57px;
  height: 56px;
  width: 100%;
  max-width: 416px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #333028;
  box-shadow: var(--shadow-btn-gold);
}

.btn-light {
  background-color: var(--color-cream);
  color: #333028;
}

.btn-light .btn-icon {
  background-color: #E0C47D;
}

.btn-label {
  flex: 1;
  text-align: center;
}

.btn-icon {
  width: 38px;
  height: 38px;
  background-color: #FFEBCE;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1814;
  font-size: 14px;
}

/* Header */
.header {
  padding: 24px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 100px;
  height: auto;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-links a {
  color: var(--color-gold-muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-links a:hover {
  color: var(--color-cream);
}

.nav-separator {
  width: 6px;
  height: 6px;
  opacity: 0.5;
}

/* Section Common */
.section {
  padding: var(--section-pad) 0;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-image: url('./icons/losangle.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* 1. Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  position: relative;
  background-image: url('./ilustracoes/ilustracao_01.svg');
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__h1 {
  font-size: clamp(32px, 5vw, 64px);
  max-width: 800px;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #916E19 0%, #E0C47D 50%, #FAEAC3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 540px;
  margin-bottom: 40px;
  font-size: 16px;
  opacity: 0.8;
}

.metrics {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 800px;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric__value {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--color-cream);
  font-weight: 600;
  display: block;
}

.metric__label {
  font-size: 8px;
  color: #73694E;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.cta-guarantee {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-gold-muted);
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 416px;
}

/* 2. About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about__h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #916E19 0%, #E0C47D 50%, #FAEAC3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.about__body {
  margin-bottom: 32px;
  font-size: 16px;
  color: #59564F;
}

.about__img img {
  width: 100%;
  border-radius: 24px;
}

.about__footer {
  margin-top: 48px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  text-align: left;
}

.about__footer-left {
  display: flex;
  flex-direction: column;
}

.about__footer-left .section-tag {
  justify-content: flex-start;
}

.about__footer-h3 {
  font-family: var(--font-display);
  font-size: 24px;
  background: linear-gradient(90deg, #916E19 0%, #E0C47D 50%, #FAEAC3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.about__footer-center {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-line {
  width: 32px;
  height: 2px;
  background-color: var(--color-gold);
}

.about__footer-right {
  display: flex;
  gap: 16px;
}

.member-avatar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.avatar-circle-new {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(250, 234, 195, 0.1);
}

.avatar-circle-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-name {
  font-size: 8px;
  font-weight: 600;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Values Gold Section (Restored) */
.values-section-gold {
  background: linear-gradient(90deg, #F2C27E, #ECB471, #D58931);
  color: var(--color-canvas);
  padding: 80px 0;
}

.values-grid-gold {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.values-left-gold {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.values-left-gold h2 {
  color: var(--color-canvas);
  font-size: 36px;
  max-width: 500px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.values-left-gold .section-tag {
  color: rgba(26, 24, 20, 0.6);
}

.values-left-gold .section-tag::before,
.values-left-gold .section-tag::after {
  filter: brightness(0.2);
}

.values-left-gold p {
  color: rgba(26, 24, 20, 0.7);
  max-width: 440px;
  margin-bottom: 32px;
}

.values-left-gold .cta-guarantee {
  color: #1A1814;
  margin-top: 16px;
  font-size: 14px;
}

.values-list-gold {
  list-style: none;
}

.values-item-gold {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 24, 20, 0.1);
}

.values-item__title-gold {
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-canvas);
}

.values-item__icon-gold img {
  width: 32px;
  height: auto;
}

/* 3. Final Values CTA */
.values-section {
  background-color: var(--color-canvas);
  color: var(--color-cream);
  padding: 120px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

.values-left {
  padding-right: 64px;
}

.values-left h2 {
  font-weight: 700;
  line-height: 1.2;
}

.values-list {
  list-style: none;
  max-width: 400px;
}

.values-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(250, 234, 195, 0.1);
}

.values-item__title {
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 16px;
  color: #E0C47D;
}

.values-item__icon img {
  width: 40px;
  height: auto;
}

.values-divider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.values-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: rgba(250, 234, 195, 0.05);
}

.values-divider-btn {
  width: 32px;
  height: 32px;
  background-color: #1A1814;
  border: 1px solid rgba(250, 234, 195, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8C887C;
  font-size: 12px;
  z-index: 1;
}

.values-right {
  padding-left: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-badge {
  display: flex;
  justify-content: center;
}

.values-badge img {
  width: 160px;
  height: 160px;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-glow {
  background: linear-gradient(90deg, #F2C27E 0%, #D58931 100%);
  color: #1A1814;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 32px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(235, 176, 107, 0.3);
}

.btn-glow .btn-icon {
  background-color: #FAEAC3;
  color: #1A1814;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* 4. Pillars */
.pillars {
  padding: 0;
}

.pillars .container {
  padding: 0;
  max-width: 100%;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
}

.pillar-item {
  background-color: transparent;
  padding: 48px 32px;
  border: 1px solid rgba(250, 234, 195, 0.1);
  margin-right: -1px;
  margin-bottom: -1px;
  display: flex;
  flex-direction: column;
}

.pillar-item__icon-circle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 32px;
}

.pillar-item__icon-circle img {
  width: 32px;
  height: auto;
}

.pillar-tag {
  color: #FAEAC3;
  justify-content: flex-start;
  margin-bottom: 16px;
  font-size: 8px;
}

.pillar-item__title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #916E19 0%, #D58931 50%, #E0C47D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  line-height: 1.2;
}

.pillar-item__body {
  font-size: 12px;
  color: #8C887C;
  line-height: 1.6;
}

/* 5. How it works */
.how-section {
  position: relative;
  overflow: hidden;
}

.how-carousel-wrapper {
  width: 100%;
}

.how-carousel {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  margin-right: -72px;
  padding-bottom: 16px;
}

.how-carousel::-webkit-scrollbar {
  display: none;
}

.how-card {
  flex: 0 0 480px;
  height: 280px;
  padding: 40px 32px;
  border: 1px solid rgba(250, 234, 195, 0.1);
  margin-right: -1px;
  display: flex;
  flex-direction: column;
}

.how-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #916E19 0%, #E0C47D 50%, #FAEAC3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  line-height: 1.2;
}

.how-card__body {
  font-size: 12px;
  color: #8C887C;
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-bottom: 40px;
}

.carousel-progress {
  flex: 1;
  height: 2px;
  background-color: rgba(250, 234, 195, 0.1);
  margin-right: 48px;
  border-radius: 2px;
}

.carousel-progress-bar {
  width: 15%;
  height: 100%;
  background-color: #E0C47D;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.carousel-arrows {
  display: flex;
  gap: 16px;
}

.carousel-arrow {
  background: none;
  border: none;
  color: #E0C47D;
  font-size: 16px;
  cursor: pointer;
}

.how-footer {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.how-footer-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-text {
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 16px;
  color: #FAEAC3;
  line-height: 1.4;
}

.how-footer-cta-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.how-footer-spacer {
  flex: 1;
}

/* 6. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-left: 1px solid rgba(250, 234, 195, 0.1);
  border-top: 1px solid rgba(250, 234, 195, 0.1);
}

.featured-stat-card {
  background: url('./ilustracoes/ilustracao_01.svg') no-repeat center center, linear-gradient(135deg, #F2C27E 0%, #ECB471 50%, #D58931 100%);
  background-size: cover, auto;
  padding: 24px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  color: #1A1814;
  border-right: 1px solid rgba(250, 234, 195, 0.1);
  border-bottom: 1px solid rgba(250, 234, 195, 0.1);
  margin-right: -1px;
}

.featured-stat-card__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featured-stat__number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #1A1814;
  line-height: 1.1;
}

.featured-stat__body {
  font-size: 16px;
  color: #73694E;
  line-height: 1.6;
  max-width: 90%;
}

.featured-stat-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-stat__logo {
  width: 100px;
  height: auto;
  margin-bottom: 8px;
}

.btn-featured {
  background-color: #FAEAC3;
  color: #1A1814;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 32px;
  width: 100%;
}

.btn-featured .btn-icon {
  background-color: #D58931;
  color: #1A1814;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.featured-stat__guarantee {
  font-size: 12px;
  color: #1A1814;
  text-align: center;
  font-weight: 500;
}

.testimonial-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.rc-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(250, 234, 195, 0.1);
  border-bottom: 1px solid rgba(250, 234, 195, 0.1);
  margin-right: -1px;
  margin-bottom: -1px;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.rc-card-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.rc-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
}

.rc-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-card-author-name {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #FAEAC3;
  font-family: 'Niramit', sans-serif;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rc-card-author-role {
  display: block;
  font-size: 10px;
  color: #59564F;
  text-transform: uppercase;
}

.rc-card-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #59564F;
}

/* 7. Footer CTA */
.footer-cta {
  padding-bottom: 120px;
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-list {
  list-style: none;
  margin-top: 32px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-hairline);
  font-size: 16px;
}

.cta-list li img {
  width: 20px;
}

.footer-cta__right {
  text-align: center;
}

.badge-logo {
  margin-bottom: 32px;
}

.badge-logo img {
  width: 120px;
}

.footer-cta__h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.footer-cta__sub {
  margin-bottom: 40px;
  opacity: 0.7;
}

/* Responsividade */
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .about__grid,
  .values-grid-gold,
  .footer-cta-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-divider {
    display: none;
  }

  .values-left, .values-right {
    padding: 0;
  }

  .metrics,
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .how-grid {
    overflow-x: auto;
    display: flex;
  }

  .how-grid>* {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .header-links {
    display: none;
  }

  .header .container {
    justify-content: center;
  }

  .hero__h1 {
    font-size: 36px;
    line-height: 1.1;
  }
  
  .btn-glow {
    max-width: 100%;
    padding: 8px 8px 8px 24px;
    gap: 12px;
  }

  .btn-glow .btn-label {
    font-size: 14px;
  }

  .featured-stat-card {
    min-height: auto;
    padding: 40px 24px;
    margin-bottom: 80px;
  }
  
  .featured-stat__number {
    font-size: 48px;
  }

  .featured-stat__body {
    margin-bottom: 80px;
  }
  
  .testimonial-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .rc-card {
    padding: 24px;
  }

  .metrics {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .metric-item {
    padding: 32px 0;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .about__footer {
    flex-direction: column;
    text-align: center;
  }

  .about__footer-left {
    align-items: center;
  }

  .about__footer-left .section-tag {
    justify-content: center;
  }

  .values-left-gold {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .values-left-gold .cta-guarantee {
    text-align: center;
  }

  .how-footer {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .how-footer-guarantee {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .how-footer-cta-wrapper {
    width: 100%;
    justify-content: center;
  }

  .how-footer-cta-wrapper .btn {
    width: 100%;
    max-width: none;
  }

  .how-footer-spacer {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__h1 {
    font-size: 32px;
  }
  
  .featured-stat__number {
    font-size: 36px;
  }

  .how-carousel-item {
    width: 300px;
    height: 300px;
  }
}