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

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

body {
  min-height: 100vh;
  background-color: #FDF9F3;
  color: #3D3D3D;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #C5A059;
  color: #fff;
}

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

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #F2EFE9; }
::-webkit-scrollbar-thumb { background: #C5A059; border-radius: 5px; border: 2px solid #F2EFE9; }
::-webkit-scrollbar-thumb:hover { background: #B08D4B; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.relative-z { position: relative; z-index: 10; }

.text-terracota { color: #B3541E; }
.text-gold { color: #C5A059; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.italic { font-style: italic; }

.underline-gold {
  text-decoration: underline;
  text-decoration-color: #C5A059;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.btn-primary {
  background: #B3541E;
  color: #F9F7F2;
  border-bottom: 4px solid #8A3C12;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-primary:hover { background: #964214; }

/* Shine animation for primary */
.btn-primary::after,
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  z-index: 2;
  pointer-events: none;
}

.btn-gold {
  background: linear-gradient(to right, #C5A059, #E5C585, #C5A059);
  color: #4A4A4A;
  border-bottom: 4px solid #A08040;
  box-shadow: 0 4px 15px rgba(197,160,89,0.4);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-gold:hover {
  box-shadow: 0 8px 25px rgba(197,160,89,0.6);
}

.btn-gold > * { position: relative; z-index: 1; }

/* ===== ANIMATIONS ===== */
@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(179, 84, 30, 0.4);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(179, 84, 30, 0.6);
  }
}

@keyframes unfold {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== NAVBAR ===== */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(253,249,243,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E8DFD0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background: #B3541E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FDF9F3;
  border: 2px solid #C5A059;
}

.logo-circle span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  font-style: italic;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #3D3D3D;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 10px;
  color: #8B7355;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #5C4033;
  letter-spacing: 0.05em;
}

.navbar-links a {
  transition: color 0.3s;
  text-decoration-color: #C5A059;
}
.navbar-links a:hover {
  color: #B3541E;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.instagram-icon {
  color: #B3541E;
  transition: transform 0.3s;
}
.instagram-icon:hover { transform: scale(1.1); }

.btn-nav {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: none;
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: #5C4033;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #FDF9F3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-top: 1px solid #E8DFD0;
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  animation: unfold 0.3s ease-out;
}

.mobile-menu.active { display: flex; }

.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: #5C4033;
}

.mobile-divider {
  height: 1px;
  background: #E8DFD0;
  width: 100%;
}

.btn-mobile-cta { width: 100%; text-align: center; }

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
  .navbar-actions { display: flex; }
  .mobile-toggle { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #FDF9F3, #F9F5ED, #F5EFE6);
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, #C5A059 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, #C5A059 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(48px);
}
.hero-glow-left { top: 5rem; left: 2.5rem; background: #C5A059; opacity: 0.1; }
.hero-glow-right { bottom: 5rem; right: 2.5rem; background: #B3541E; opacity: 0.1; }

.hero-content { position: relative; z-index: 10; }

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-col { width: 100%; }

.hero-col-left { order: 3; }
.hero-col-center { order: 1; text-align: center; }
.hero-col-right { order: 2; }

@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    gap: 1.5rem;
  }
  .hero-col { width: 33.333%; }
  .hero-col-left { order: 1; }
  .hero-col-center { order: 2; }
  .hero-col-right { order: 3; }
}

/* Hero Photos */
.hero-photo-wrapper {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-photo-wrapper { margin: 0; }
}

.hero-photo-frame {
  position: relative;
  background: #fff;
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid #E8DFD0;
  transition: transform 0.5s;
}

@media (min-width: 1024px) {
  .hero-photo-rita { transform: rotate(-3deg); }
  .hero-photo-rita:hover { transform: rotate(0deg); }
}

.hero-photo-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.hero-photo-caption {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-caption-terracota { background: #B3541E; color: #fff; }
.hero-caption-gold { background: #C5A059; color: #1F1B16; }

.hero-corner-tl {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 3rem;
  height: 3rem;
  border-top: 4px solid #C5A059;
  border-left: 4px solid #C5A059;
  border-top-left-radius: 0.5rem;
  opacity: 0.6;
}

.hero-corner-br {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 3rem;
  height: 3rem;
  border-bottom: 4px solid #C5A059;
  border-right: 4px solid #C5A059;
  border-bottom-right-radius: 0.5rem;
  opacity: 0.6;
}

/* Hero Guadalupe */
.hero-photo-wrapper-right {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-photo-wrapper-right { margin-left: auto; margin-right: 0; }
}

.hero-guadalupe-outer-glow {
  position: absolute;
  inset: -0.5rem;
  background: linear-gradient(135deg, #D4AF37, #C5A059, #B8860B);
  border-radius: 1rem;
  opacity: 0.6;
  filter: blur(4px);
}

.hero-guadalupe-frame {
  position: relative;
  background: linear-gradient(135deg, #D4AF37, #C5A059, #B8860B);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.5s;
}

@media (min-width: 1024px) {
  .hero-guadalupe-frame { transform: rotate(3deg); }
  .hero-guadalupe-frame:hover { transform: rotate(0deg); }
}

.hero-guadalupe-inner {
  background: #fff;
  padding: 0.5rem;
  border-radius: 0.75rem;
}

.hero-guadalupe-inner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Hero Center Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #B3541E;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.hero-subtitle {
  font-size: 1.125rem;
  color: #5C4033;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-curso-badge {
  display: inline-block;
  background: linear-gradient(to right, #B3541E, #C5A059);
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(179,84,30,0.4);
  animation: pulse-slow 3s ease-in-out infinite;
}

.hero-product-box {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border: 2px solid #C5A059;
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C5A059;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) { .hero-product-name { font-size: 1.875rem; } }

.hero-product-desc {
  color: #5C4033;
  line-height: 1.6;
}

.hero-promise {
  font-size: 1.125rem;
  color: #4A4A4A;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-aulas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #5C4033;
  font-weight: 500;
  margin-bottom: 2rem;
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  width: 100%;
}

@media (min-width: 640px) { .btn-hero { width: auto; } }

/* ===== PARA QUEM SERVE ===== */
.para-quem {
  padding: 5rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.para-quem-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A059' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-subtitle-wrapper { max-width: 48rem; margin: 0 auto; }

.section-subtitle {
  font-size: 1.25rem;
  color: #5C4033;
  line-height: 1.7;
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
}

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

.target-card {
  background: linear-gradient(135deg, #FDF9F3, #F5EFE6);
  border: 1px solid #E8DFD0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.target-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.target-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.target-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(179,84,30,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.target-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 0.5rem;
}

.target-desc {
  color: #5C4033;
  line-height: 1.6;
}

/* Urgency Box */
.urgency-box {
  max-width: 56rem;
  margin: 0 auto;
  background: linear-gradient(to right, #B3541E, #8B4513);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.urgency-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.urgency-text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.urgency-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.urgency-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.btn-urgency { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* ===== GALLERY ===== */
.gallery-section {
  padding: 6rem 0;
  background: #EBE5D9;
}

.gallery-title { color: #4A4A4A; }

.gallery-subtitle {
  color: #5C4033;
  max-width: 40rem;
  margin: 0 auto;
}

.masonry-grid {
  columns: 1;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) { .masonry-grid { columns: 2; } }
@media (min-width: 1024px) { .masonry-grid { columns: 3; } }

.masonry-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.5s;
  background: #fff;
  margin-bottom: 1.5rem;
}

.masonry-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

.masonry-item img {
  width: 100%;
  height: auto;
  transition: transform 0.7s;
}

.masonry-item:hover img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
  transform: translateY(1rem);
  transition: transform 0.5s;
}

.masonry-item:hover .masonry-overlay h4 { transform: translateY(0); }

.masonry-overlay span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C5A059;
  transform: translateY(1rem);
  transition: transform 0.5s 0.075s;
}

.masonry-item:hover .masonry-overlay span { transform: translateY(0); }

.gallery-cta { display: flex; justify-content: center; }

.btn-gallery { padding: 1rem 2.5rem; }

/* ===== MATEMÁTICA DA FÉ ===== */
.matematica-section {
  padding: 5rem 0;
  background: #1F1B16;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.matematica-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 25% 25%, #C5A059 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, #C5A059 1px, transparent 1px);
  background-size: 50px 50px;
}

.matematica-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(197,160,89,0.2);
  border: 1px solid rgba(197,160,89,0.4);
  border-radius: 9999px;
  color: #C5A059;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.matematica-title { color: #fff; }

.matematica-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 40rem;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

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

.calc-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: background 0.3s;
}

.calc-card:hover { background: rgba(255,255,255,0.1); }

.calc-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(197,160,89,0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.calc-label { color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.25rem; }

.calc-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) { .calc-value { font-size: 1.875rem; } }

.calc-desc { font-size: 0.75rem; color: #6b7280; }

.calc-arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: -0.75rem;
  transform: translateY(-50%);
  color: #C5A059;
  font-size: 1.5rem;
}

@media (min-width: 768px) { .calc-arrow { display: block; } }

.calc-card:last-child .calc-arrow { display: none; }

/* Projection */
.projection-box {
  max-width: 48rem;
  margin: 0 auto;
  background: linear-gradient(to right, rgba(197,160,89,0.2), rgba(212,175,55,0.2));
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  text-align: center;
}

.projection-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

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

.projection-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .projection-flow { flex-direction: row; justify-content: center; }
}

.projection-item { text-align: center; }

.projection-label { color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.25rem; }

.projection-price { font-size: 1.25rem; font-weight: 700; color: #C5A059; }

.projection-arrow { font-size: 2.5rem; color: #C5A059; }

.projection-big {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 768px) { .projection-big { font-size: 3rem; } }

.projection-green {
  font-size: 0.875rem;
  color: #4ade80;
  margin-top: 0.25rem;
}

.projection-note {
  color: #9ca3af;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.projection-note strong { color: #fff; }

.btn-projection { padding: 1rem 2.5rem; font-size: 1.125rem; }

.matematica-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BIO ===== */
.bio-section {
  padding: 6rem 0;
  background: #EBE5D9;
  position: relative;
  overflow: hidden;
}

.bio-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, #8B5A2B 0, #8B5A2B 1px, transparent 0, transparent 50%);
  background-size: 10px 10px;
}

.bio-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .bio-grid { flex-direction: row; align-items: flex-start; }
}

.bio-image-col { width: 100%; }

@media (min-width: 1024px) {
  .bio-image-col {
    width: 41.666%;
    position: sticky;
    top: 6rem;
  }
}

.bio-photo-wrapper { position: relative; }

.bio-photo-frame {
  padding: 1rem;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: rotate(1deg);
  border: 1px solid #D4C4A8;
}

.bio-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s;
}

.bio-photo-frame:hover img { filter: grayscale(0%); }

.bio-photo-caption {
  margin-top: 1rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #8B5A2B;
}

.bio-photo-bg-border {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #B3541E;
  opacity: 0.3;
  transform: rotate(-2deg);
}

.bio-story-col { width: 100%; }

@media (min-width: 1024px) {
  .bio-story-col { width: 58.333%; }
}

.bio-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 2rem;
}

.bio-prose {
  color: #5C4033;
  line-height: 1.8;
  font-weight: 300;
}

.bio-prose p { margin-bottom: 1.5rem; }

.bio-prose strong { font-weight: 700; color: #4A4A4A; }
.bio-prose em { font-style: italic; }

.bio-quote-box {
  background: rgba(255,255,255,0.6);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #B3541E;
  margin: 2rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.bio-quote-box p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #4A4A4A;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.bio-highlight {
  display: block;
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #B3541E;
}

.bio-final-quote {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.bio-final-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: #4A4A4A;
}

.bio-footer { margin-top: 3rem; }

.bio-signature {
  height: 4rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.btn-bio {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  width: 100%;
}

@media (min-width: 768px) { .btn-bio { width: auto; } }

/* ===== INGRESSOS ===== */
.ingressos-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #F5EFE6, #EBE5D9);
  position: relative;
  overflow: hidden;
}

.ingressos-glow {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.05;
}
.ingressos-glow-left { top: 5rem; left: 2.5rem; background: #C5A059; }
.ingressos-glow-right { bottom: 5rem; right: 2.5rem; background: #B3541E; }

.ingressos-subtitle {
  font-size: 1.125rem;
  color: #5C4033;
  max-width: 40rem;
  margin: 0 auto;
}

.ingressos-card-wrapper {
  max-width: 32rem;
  margin: 0 auto;
}

.ingressos-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1F1B16, #2C2620);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border: 2px solid #C5A059;
}

.ingressos-badge-corner {
  position: absolute;
  top: 0;
  right: 0;
  background: #C5A059;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 1rem;
}

.ingressos-card-body { padding: 2rem; }

.ingressos-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ingressos-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Features List */
.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.feature-item span { color: #d1d5db; }

.feature-highlighted {
  background: linear-gradient(to right, rgba(197,160,89,0.2), transparent);
  margin: 0 -0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(197,160,89,0.3);
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(197,160,89,0.2);
}

.feature-icon-gold {
  background: #C5A059;
  box-shadow: 0 2px 8px rgba(197,160,89,0.4);
}

.feature-text-gold {
  color: #C5A059 !important;
  font-weight: 700;
}

/* Price */
.ingressos-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: #C5A059;
}

.price-sub {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* Form */
.ingressos-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ingressos-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  outline: none;
}

.ingressos-form input::placeholder { color: #9ca3af; }
.ingressos-form input:focus { border-color: #C5A059; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(to right, #C5A059, #D4AF37);
  color: #1F1B16;
}

.btn-submit:hover {
  box-shadow: 0 8px 25px rgba(197,160,89,0.5);
  transform: scale(1.02);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5C4033;
  font-size: 0.875rem;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #EBE5D9, #F5EFE6);
  position: relative;
  overflow: hidden;
}

.faq-glow {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.05;
}
.faq-glow-right { top: 2.5rem; right: 2.5rem; background: #C5A059; }
.faq-glow-left { bottom: 2.5rem; left: 2.5rem; background: #B3541E; }

.faq-container { max-width: 48rem; }

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(197,160,89,0.1);
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #C5A059;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #E8DFD0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: rgba(197,160,89,0.5);
}

.faq-item.active {
  border-color: #C5A059;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3D3D3D;
  transition: color 0.3s;
}

.faq-item.active .faq-question { color: #B3541E; }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  max-height: 24rem;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: #5C4033;
  line-height: 1.7;
  border-top: 1px solid #E8DFD0;
  padding-top: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1F1B16;
  color: #D4C4A8;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid #3D3D3D;
}

.footer-sub {
  margin-top: 0.5rem;
  opacity: 0.6;
}
