/* ============================================
   AKEMILLY TEIXEIRA LIMA — LANDING PAGE
   Design System: Brown · Beige · Black
   ============================================ */

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

/* ---- TOKENS ---- */
:root {
  --brown-dark: #4A2E1E;
  --brown: #6B4226;
  --brown-mid: #8B5E3C;
  --brown-light: #C49A6C;
  --beige-dark: #D4B896;
  --beige: #EDD9C0;
  --beige-light: #F7EEE3;
  --cream: #FBF6F0;
  --black: #1A1A1A;
  --black-soft: #2C2C2C;
  --gray: #6B6B6B;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(74, 46, 30, 0.08);
  --shadow-md: 0 8px 32px rgba(74, 46, 30, 0.14);
  --shadow-lg: 0 20px 60px rgba(74, 46, 30, 0.18);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  font-size: 1rem;
  color: var(--black-soft);
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74, 46, 30, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 46, 30, 0.45);
}

.btn-outline {
  border: 2px solid var(--brown);
  color: var(--brown);
  background: transparent;
}

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

.btn-beige {
  background: var(--beige);
  color: var(--brown-dark);
  border: 1px solid var(--beige-dark);
}

.btn-beige:hover {
  background: var(--beige-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.2rem 2.8rem;
  font-size: 1rem;
}

.btn-pulse {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(74, 46, 30, 0.35);
  }

  50% {
    box-shadow: 0 4px 40px rgba(74, 46, 30, 0.6);
  }
}

/* ---- NAV ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 108, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--brown-light);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black-soft);
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brown);
  transition: width 0.3s;
}

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

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

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- ANNOUNCEMENT BANNER ---- */
.announcement-bar {
  background: var(--brown-dark);
  color: var(--beige);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.announcement-bar strong {
  color: var(--beige-light);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige-light) 50%, #EDD4B5 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.18) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 5rem 0;
}

.hero-content {
  max-width: 580px;
}

.hero-tag {
  display: inline-block;
  background: rgba(196, 154, 108, 0.2);
  border: 1px solid rgba(196, 154, 108, 0.4);
  color: var(--brown);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--brown-dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-title em {
  font-style: italic;
  color: var(--brown);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-note {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.8rem;
  font-style: italic;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 60% 60% / var(--radius-lg) var(--radius-lg) 40% 40%;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed rgba(196, 154, 108, 0.4);
  top: -20px;
  left: -20px;
  animation: spin-slow 20s linear infinite;
}

.hero-photo-deco2 {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(196, 154, 108, 0.15);
  bottom: 20px;
  right: -30px;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

/* ---- DIVIDER ---- */
.divider-ornament {
  text-align: center;
  color: var(--brown-light);
  font-size: 1.4rem;
  letter-spacing: 1rem;
  opacity: 0.5;
  padding: 1rem 0;
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  background: rgba(196, 154, 108, 0.12);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ---- ABOUT ---- */
.about {
  background: var(--white);
}

.about-photo {
  position: relative;
}

.about-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-photo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-quote {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--brown-dark);
  color: var(--beige-light);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  max-width: 200px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}

.about-content {
  padding-left: 2rem;
}

.about-bio {
  color: var(--black-soft);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--brown);
}

.about-item-text h4 {
  color: var(--brown-dark);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.about-item-text p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ---- MENTORIA TEASER ---- */
.mentoria-teaser {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 60%, var(--brown-mid) 100%);
  color: var(--beige-light);
  position: relative;
  overflow: hidden;
}

.mentoria-teaser::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.mentoria-teaser .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: var(--beige);
}

.mentoria-teaser .section-title {
  color: var(--white);
}

.mentoria-teaser .section-subtitle {
  color: rgba(237, 217, 192, 0.85);
}

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

.pillar-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: var(--transition);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(196, 154, 108, 0.5);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.pillar-card p {
  color: rgba(237, 217, 192, 0.75);
  font-size: 0.88rem;
  line-height: 1.6;
}

.mentoria-teaser-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-white {
  background: var(--white);
  color: var(--brown-dark);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--beige-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ---- EBOOKS ---- */
.ebooks {
  background: var(--beige-light);
}

.ebook-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.ebook-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.ebook-cover {
  background: linear-gradient(145deg, var(--brown-dark), var(--brown));
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ebook-cover::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.ebook-cover-inner {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.ebook-cover-inner .ebook-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ebook-cover-inner h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.3;
}

.ebook-cover-inner span {
  display: block;
  color: var(--beige);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.6rem;
}

.ebook-body {
  padding: 1.5rem;
}

.ebook-body h4 {
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}

.ebook-body p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.ebook-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 1rem;
}

.ebook-price sup {
  font-size: 0.9rem;
  vertical-align: super;
}

.ebook-coming {
  display: inline-block;
  background: var(--beige);
  color: var(--brown);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- WAITLIST SECTION ---- */
.waitlist {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige-light) 100%);
  text-align: center;
}

.waitlist-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196, 154, 108, 0.2);
}

.waitlist-box .section-title {
  margin-bottom: 0.8rem;
}

.waitlist-box p {
  color: var(--gray);
  margin-bottom: 2rem;
}

/* ---- INVITATION / CONVITE ---- */
.invitation {
  background: var(--white);
}

.invitation-intro {
  min-width: 0;
}

.invitation-intro .section-title {
  text-align: left;
}

.invitation-intro p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.invitation-form-wrap {
  background: var(--beige-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(196, 154, 108, 0.25);
}

.invitation-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr 280px;
  gap: 3rem;
  align-items: start;
}

.invitation-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: stretch;
  min-height: 500px;
}

.invitation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: var(--radius-lg);
}

/* ---- FORMS ---- */
.form-group {
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-label .req {
  color: var(--brown);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(196, 154, 108, 0.35);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brown-light);
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(107, 107, 107, 0.5);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B4226' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  padding-right: 2.5rem;
}

.phone-row {
  display: flex;
  gap: 0.5rem;
}

.phone-row .form-select {
  width: 90px;
  flex-shrink: 0;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--black-soft);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--brown);
  width: 16px;
  height: 16px;
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 3rem;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: var(--beige-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--beige);
  color: var(--brown-dark);
}

.modal-title {
  font-family: var(--font-serif);
  color: var(--brown-dark);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.modal-success {
  text-align: center;
  display: none;
}

.modal-success.show {
  display: block;
}

.modal-success .check-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* ---- FORM SUCCESS ---- */
.form-success {
  text-align: center;
  padding: 2rem;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success .check-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  color: var(--beige-light);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h5 {
  font-family: var(--font-serif);
  color: var(--beige);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--beige-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--brown);
  color: var(--white);
}

/* ---- SOCIAL SECTION ---- */
.social-section {
  background: var(--white);
  padding: 4rem 0 5rem;
}

.social-section .section-header {
  margin-bottom: 2.5rem;
}

.social-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #A68A77;
  /* Soft brown similar to the reference image */
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(166, 138, 119, 0.2);
}

.social-circle .svg-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-circle:hover {
  background: var(--brown-dark);
  /* Darker brown on hover */
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 46, 30, 0.3);
}

.social-circle:hover .svg-icon {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .social-circles {
    gap: 1rem;
  }

  .social-circle {
    width: 55px;
    height: 55px;
  }

  .social-circle .svg-icon {
    width: 24px;
    height: 24px;
  }
}

/* ---- ANIMATIONS (SCROLL) ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ---- SCROLL INDICATOR ---- */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--brown-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.scroll-dot {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--brown-light));
  animation: scroll-drop 1.5s ease-in-out infinite;
}

@keyframes scroll-drop {

  0%,
  100% {
    transform: scaleY(0.5) translateY(-5px);
    opacity: 0.3;
  }

  50% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
  }
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--beige-light);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--beige);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  color: var(--black-soft);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 600;
  color: var(--brown-dark);
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ============================
   MENTORIA PAGE SPECIFIC
   ============================ */
.alert-banner {
  background: linear-gradient(90deg, #3D1F0E, var(--brown-dark));
  color: var(--beige-light);
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-top: 72px;
}

.alert-banner strong {
  color: var(--white);
}

.mentoria-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige-light) 100%);
  padding: 6rem 0;
  text-align: center;
}

.mentoria-hero .hero-content {
  max-width: 780px;
  margin: 0 auto;
}

.mentoria-hero .hero-note {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 0.8rem;
  text-align: center;
}

.pain-section {
  background: var(--white);
}

.pain-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--brown-dark);
  font-style: italic;
  line-height: 1.45;
  border-left: 4px solid var(--brown-light);
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.pain-text {
  color: var(--black-soft);
  line-height: 1.9;
}

.mindset-section {
  background: var(--beige-light);
}

.mindset-box {
  background: var(--white);
  border: 1px solid rgba(196, 154, 108, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 1.5rem;
}

.mindset-box p {
  color: var(--black-soft);
  line-height: 1.9;
}

.mindset-box p+p {
  margin-top: 1rem;
}

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

.week-card {
  display: flex;
  gap: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(196, 154, 108, 0.2);
  transition: var(--transition);
}

.week-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.week-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--beige);
  line-height: 1;
  min-width: 2ch;
}

.week-content h4 {
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.week-content p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.filter-section {
  background: var(--white);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.filter-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--beige-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196, 154, 108, 0.2);
}

.filter-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.filter-item p {
  color: var(--black-soft);
  font-size: 0.95rem;
}

.mentoria-cta-section {
  background: linear-gradient(160deg, var(--brown-dark) 0%, var(--brown) 100%);
  text-align: center;
  color: var(--white);
}

.mentoria-cta-section h2 {
  color: var(--white);
}

.mentoria-cta-section p {
  color: rgba(237, 217, 192, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 180px;
}

.cta-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--beige-light);
  font-weight: 700;
}

.cta-step p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {

  .grid-2,
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .invitation-layout {
    grid-template-columns: 1fr 1.8fr;
  }

  .invitation-photo {
    display: none;
  }

  .hero-photo-wrap {
    justify-content: center;
    order: -1;
  }

  .hero-photo-frame {
    max-width: 360px;
  }

  .about-photo {
    margin-bottom: 2rem;
  }

  .about-content {
    padding-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(196, 154, 108, 0.2);
    box-shadow: var(--shadow-md);
  }

  .nav-cta.open {
    display: flex;
    padding: 0 1.5rem 1.5rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .waitlist-box {
    padding: 2rem 1.5rem;
  }

  .invitation-form-wrap {
    padding: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-inner {
    gap: 2rem;
    padding: 3rem 0;
  }

  .cta-steps {
    flex-direction: column;
    align-items: center;
  }
}