/*====================================
  IMPORTS & GOOGLE FONTS
====================================*/
@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');

/*====================================
  CSS CUSTOM PROPERTIES
====================================*/
:root {
  --bg:      #f2eae6;
  --text:    #744a21;
  --accent:  #d1b496;
  --btn-bg:  #e5cba0;
  --border:  #eee1d8;
  --white:   #FFFFFF;
  --light:   #eee1d8;
  --muted:   #9c7c5c;
  --rose:    #ab7473;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

/*====================================
  TYPOGRAPHY
====================================*/
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

/*====================================
  LAYOUT
====================================*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 108px 0;
}

.section-alt {
  background-color: var(--light);
}

.section-dark {
  background-color: var(--text);
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/*====================================
  SECTION HEADER
====================================*/
.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.85;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.divider {
  width: 48px;
  height: 1px;
  background-color: var(--accent);
  margin: 24px 0;
}

.divider-center {
  margin: 24px auto;
}

/*====================================
  HEADER & NAVIGATION
====================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(242, 234, 230, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.logo-img-footer {
  max-height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}

.logo span {
  display: block;
  font-size: 0.62rem;
  font-family: var(--sans);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s ease;
}

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

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/*====================================
  HERO SECTION
====================================*/
.hero {
  padding-top: 180px;
  padding-bottom: 108px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--text);
}

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

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 44px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/*====================================
  BUTTONS
====================================*/
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--accent);
  color: var(--white);
  padding: 16px 38px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.button-primary:hover {
  background-color: #9c7c5c;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(209, 180, 150, 0.35);
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--text);
  padding: 15px 37px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.button-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--btn-bg);
  color: var(--text);
  padding: 16px 38px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.button-soft:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: var(--white);
  padding: 18px 44px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.button-whatsapp:hover {
  background-color: #1EBE56;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.button-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--border);
  color: #aaa;
  padding: 16px 38px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: not-allowed;
  border: none;
  pointer-events: none;
}

/*====================================
  IMAGE & VIDEO PLACEHOLDERS
====================================*/
.image-placeholder {
  background-color: var(--border);
  border: 1px solid #eee1d8;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #9c7c5c;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 380px;
  width: 100%;
  user-select: none;
}

.image-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.45;
}

.image-placeholder-sm  { min-height: 220px; }
.image-placeholder-lg  { min-height: 540px; }
.image-placeholder-sq  { min-height: unset; aspect-ratio: 1; }
.image-placeholder-tall { min-height: 480px; }

.video-placeholder {
  background-color: #744a21;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255,255,255,0.35);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 420px;
  width: 100%;
  user-select: none;
}

.video-placeholder svg {
  width: 52px;
  height: 52px;
  opacity: 0.35;
}

/*====================================
  AUTHORITY / STATS SECTION
====================================*/
.stat-block {
  text-align: center;
  padding: 52px 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  background: var(--white);
}

.stat-block:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(209, 180, 150, 0.12);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9c7c5c;
  font-weight: 600;
}

/*====================================
  CARD
====================================*/
.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(116, 74, 33, 0.09);
}

.card-body {
  padding: 36px;
}

.card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.card-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-open {
  background-color: rgba(209, 180, 150, 0.14);
  color: var(--accent);
}

.badge-closed {
  background-color: var(--border);
  color: #9c7c5c;
}

/*====================================
  TESTIMONIAL CARD
====================================*/
.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(116, 74, 33, 0.08);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 5.5rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 32px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #7c5428;
  line-height: 1.9;
  margin-bottom: 32px;
  padding-top: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(209, 180, 150, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 500;
}

.testimonial-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/*====================================
  CTA SECTION
====================================*/
.cta-section {
  background-color: var(--text);
  padding: 108px 0;
  text-align: center;
}

.cta-section .section-label {
  color: var(--accent);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 44px;
}

/*====================================
  SERVICE / CONTENT SECTION
====================================*/
.service-content p {
  margin-bottom: 22px;
}

.service-content p:last-of-type {
  margin-bottom: 32px;
}

/*====================================
  EVENT TYPE CARDS
====================================*/
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(116, 74, 33, 0.09);
}

.event-card-img .image-placeholder {
  border-radius: 0;
  min-height: 200px;
}

.event-card-body {
  padding: 28px;
}

.event-icon {
  width: 44px;
  height: 44px;
  background: rgba(209, 180, 150, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.event-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.event-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.event-card-body p {
  font-size: 0.88rem;
  line-height: 1.75;
}

/*====================================
  GALLERY GRID
====================================*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item .image-placeholder {
  border-radius: 12px;
  height: 100%;
  min-height: unset;
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item.span-row-2 {
  grid-row: span 2;
}

/*====================================
  PROCESS STEPS
====================================*/
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--accent);
}

.step-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.step-text {
  font-size: 0.87rem;
  color: #9c7c5c;
  line-height: 1.75;
}

/*====================================
  MENTORSHIP CARDS
====================================*/
.mentorship-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mentorship-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(116, 74, 33, 0.09);
}

.mentorship-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 24px;
}

/*====================================
  ABOUT / BIO
====================================*/
.bio-quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin: 44px 0;
}

.journey-item {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.journey-item:last-child {
  border-bottom: none;
}

.journey-year {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 500;
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}

.journey-content h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.journey-content p {
  font-size: 0.9rem;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.value-card h4 {
  font-family: var(--serif);
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.05rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

/*====================================
  CONTACT PAGE
====================================*/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 88px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child {
  padding-top: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(209, 180, 150, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 48px;
}

.contact-form-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 36px;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9c7c5c;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #d4b399;
}

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

/*====================================
  FOOTER
====================================*/
.footer {
  background-color: var(--text);
  padding: 72px 0 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.footer-logo span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-top: 4px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 260px;
}

.footer-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-dev a {
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-dev a:hover {
  opacity: 1;
}

.footer-dev-logo {
  height: 22px;
  width: auto;
}

/*====================================
  PAGE HERO (INNER PAGES)
====================================*/
.page-hero {
  padding: 168px 0 88px;
  background-color: var(--light);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero .section-label {
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 520px;
  margin: 0 auto;
}

/*====================================
  SEPARATOR
====================================*/
.separator {
  height: 1px;
  background: var(--border);
}

/*====================================
  ADMIN STYLES
====================================*/
.admin-body {
  background: #eee1d8;
  min-height: 100vh;
  font-family: var(--sans);
}

.admin-header {
  background: var(--text);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-logo {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.1rem;
}

.admin-logo small {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.admin-nav a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: all 0.2s ease;
}

.admin-nav a:hover {
  color: var(--accent);
  background: rgba(209, 180, 150, 0.1);
}

.admin-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 48px;
}

.admin-page-title {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 6px;
}

.admin-page-subtitle {
  font-size: 0.9rem;
  color: #9c7c5c;
  margin-bottom: 36px;
}

.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
}

.admin-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 24px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.admin-btn-new:hover {
  background: #9c7c5c;
  transform: translateY(-1px);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9c7c5c;
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 18px 16px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.admin-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.admin-btn-edit {
  background: rgba(209, 180, 150, 0.14);
  color: var(--accent);
}

.admin-btn-edit:hover {
  background: var(--accent);
  color: var(--white);
}

.admin-btn-delete {
  background: rgba(171, 116, 115, 0.1);
  color: #ab7473;
}

.admin-btn-delete:hover {
  background: #ab7473;
  color: var(--white);
}

.admin-form-group {
  margin-bottom: 24px;
}

.admin-form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9c7c5c;
  margin-bottom: 8px;
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
  border-color: var(--accent);
}

.admin-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 40px;
}

.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 52px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.login-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 4px;
}

.login-logo span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-top: 4px;
}

.login-subtitle {
  font-size: 0.82rem;
  color: #9c7c5c;
  margin: 16px 0 40px;
}

.alert-error {
  background: rgba(171, 116, 115, 0.08);
  border: 1px solid rgba(171, 116, 115, 0.2);
  color: #ab7473;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-align: left;
}

.alert-success {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #1E9950;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #9c7c5c;
}

.empty-state p {
  font-size: 0.95rem;
  margin-top: 8px;
}

/*====================================
  GALLERY & EVENT CARD IMAGES
====================================*/

/* Gallery grid real images */
img.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Event card thumbnail real images */
img.event-card-img-real {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/*====================================
  REAL IMAGE CLASSES
====================================*/
img.hero-image,
img.sobre-image,
img.decoracao-image,
img.mentoria-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* Hero image fills its grid column height */
img.hero-image {
  min-height: 520px;
  object-position: center top;
}

/* About and section images */
img.sobre-image {
  min-height: 420px;
}

img.decoracao-image,
img.mentoria-image {
  min-height: 480px;
}

/*====================================
  RESPONSIVE — 1200px
====================================*/
@media (max-width: 1200px) {
  .container {
    padding: 0 32px;
  }

  .header-inner {
    padding: 0 32px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/*====================================
  RESPONSIVE — 768px
====================================*/
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(116, 74, 33, 0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 16px 28px;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.span-2 {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-form {
    padding: 36px 28px;
  }

  .admin-container {
    padding: 32px 24px;
  }

  .admin-card {
    padding: 28px 24px;
  }
}

/*====================================
  RESPONSIVE — 480px
====================================*/
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button-primary,
  .button-outline,
  .button-soft,
  .button-whatsapp {
    width: 100%;
    justify-content: center;
  }

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

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

  .gallery-item.span-2 {
    grid-column: span 1;
  }

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

  .section {
    padding: 56px 0;
  }

  .admin-header {
    padding: 0 20px;
  }

  .login-card {
    padding: 40px 28px;
  }

  .stat-number {
    font-size: 2.6rem;
  }
}

/*====================================
  EVENTOS CAROUSEL
====================================*/
.eventos-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.eventos-carousel {
  overflow: hidden;
  flex: 1;
}

.eventos-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 28px;
}

.eventos-track .event-card {
  flex: 0 0 calc(25% - 21px);
  min-width: 0;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(209, 180, 150, 0.1);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 768px) {
  .eventos-track .event-card {
    flex: 0 0 calc(50% - 14px);
  }
}

@media (max-width: 480px) {
  .eventos-track .event-card {
    flex: 0 0 100%;
  }
}

/*====================================
  PROJETO / POST BLOG PAGE
====================================*/
.projeto-main-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin-bottom: 48px;
}

.projeto-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.projeto-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.projeto-galeria img:hover {
  transform: scale(1.02);
}

.projeto-content {
  max-width: 780px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .projeto-galeria {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/*====================================
  TURMAS ADAPTIVE GRID
====================================*/
.turmas-grid-1 {
  display: flex;
  justify-content: center;
}

.turmas-grid-1 .mentorship-card {
  max-width: 500px;
  width: 100%;
}

.turmas-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .turmas-grid-2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .turmas-grid-1 .mentorship-card {
    max-width: 100%;
  }
}

/*====================================
  TURMA DETAIL MODAL
====================================*/
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9500;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  animation: modalIn 0.28s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--text);
  border-color: var(--accent);
}

.modal-img {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: var(--border);
}

.modal-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.modal-img-empty {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0.4;
}

.modal-body {
  padding: 40px 44px 44px;
}

.modal-titulo {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--text);
  margin: 16px 0 14px;
  line-height: 1.2;
}

.modal-descricao {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 0;
}

.modal-detalhes {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.9;
  white-space: pre-line;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .modal-body {
    padding: 28px 24px 32px;
  }

  .modal-titulo {
    font-size: 1.5rem;
  }

  .modal-img img {
    height: 220px;
  }

  .modal-actions .button-primary,
  .modal-actions .button-outline {
    width: 100%;
    justify-content: center;
  }
}

/*====================================
  ALERT SUCCESS / CONTATO
====================================*/
.alert-success-page {
  background: rgba(30, 153, 80, 0.08);
  border: 1px solid rgba(30, 153, 80, 0.2);
  color: #1E9950;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 32px;
  text-align: center;
}

.alert-error-page {
  background: rgba(171, 116, 115, 0.08);
  border: 1px solid rgba(171, 116, 115, 0.2);
  color: var(--rose);
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/*====================================
  LOADING / EMPTY STATES (frontend)
====================================*/
.turmas-loading {
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.projeto-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.projeto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(116, 74, 33, 0.09);
}

/*====================================
  LOGO VISIBILITY ENHANCEMENT
====================================*/
.logo-img {
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.95))
    drop-shadow(0 2px 10px rgba(116, 74, 33, 0.22));
}

/*====================================
  LANGUAGE SWITCHER
====================================*/
.nav-end {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}

.nav-end .lang-switcher {
  border-left: 1px solid var(--border);
  padding-left: 20px;
  margin-left: 4px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  padding: 3px 5px;
  border-radius: 7px;
  opacity: 0.45;
  transition: opacity 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  opacity: 0.8;
  transform: scale(1.12);
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--accent);
  background: rgba(209, 180, 150, 0.12);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .lang-switcher {
    gap: 2px;
  }
  .lang-btn {
    font-size: 1.1rem;
    padding: 2px 3px;
  }
}

/*====================================
  FLOATING WHATSAPP BUTTON
====================================*/
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
