/* ════════════════════════════════════════════════════════════════
   TELLES DE OXALÁ — SITE INSTITUCIONAL ESPIRITUAL PREMIUM
   Arquitetura de Estilos DonBank (Main Bundle)
   ════════════════════════════════════════════════════════════════ */

@import url('variables.css');
@import url('components.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@500&display=swap');

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Atmospheric Glow Elements */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(8, 9, 13, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title span.badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: var(--border-gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-base);
}

.header.scrolled {
  padding: 0.3rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

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

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

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
}

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

.logo-text .title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.logo-text .subtitle {
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-base);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-base);
}

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

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  text-align: center;
}

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

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  background: var(--gold-gradient-hover);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
}

.btn-outline {
  background: transparent;
  border: var(--border-gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #FFF;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content .google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-glass);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.google-rating-pill img {
  width: 22px;
  height: 22px;
}

.google-rating-pill .stars {
  color: var(--star-yellow);
  font-size: 0.9rem;
}

.google-rating-pill span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-item i {
  color: var(--gold-primary);
}

.hero-card-wrapper {
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.hero-card-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold-primary);
  padding: 3px;
  background: var(--bg-primary);
  box-shadow: var(--shadow-gold);
}

.hero-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: var(--gold-light);
}

.hero-card p.subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: rgba(8, 9, 13, 0.6);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: var(--border-glass);
  margin-bottom: 1.5rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* PROOF / TRUST BADGE BAR */
.trust-bar {
  padding: 2.5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.trust-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SOBRE NÓS */
.about {
  padding: 100px 0;
  position: relative;
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.about-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: var(--transition-base);
}

.about-image-frame:hover img {
  transform: scale(1.03);
}

.about-badge-floating {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(8, 9, 13, 0.9);
  border: var(--border-gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.about-badge-floating i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.about-quote {
  background: rgba(212, 175, 55, 0.05);
  border-left: 4px solid var(--gold-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* SERVIÇOS */
.services {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-card), 0 0 25px rgba(212, 175, 55, 0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-primary);
  transition: var(--transition-base);
}

.service-link i {
  transition: var(--transition-base);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* PROCESS SECTION */
.process {
  padding: 100px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold);
}

.process-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* SWIPER / AVALIAÇÕES GOOGLE (5.0 ESTRELAS) */
.reviews {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-gold);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.google-trust-badge img {
  width: 28px;
}

.google-trust-badge .badge-text {
  text-align: left;
}

.google-trust-badge .score {
  font-weight: 800;
  color: var(--gold-light);
  font-size: 1.1rem;
}

/* Swiper Carousel Styling */
.reviews-slider {
  padding-bottom: 3.5rem;
}

.swiper-slide {
  height: auto;
}

.review-card {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.review-stars {
  color: var(--star-yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid var(--gold-primary);
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: rgba(212, 175, 55, 0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gold-primary);
  width: 24px;
  border-radius: 10px;
}

/* LOCALIZAÇÃO */
.location {
  padding: 100px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.location-info h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.info-details h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.info-details p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-card);
  height: 420px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ SECTION */
.faq {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.45);
}

.faq-question {
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  user-select: none;
}

.faq-question i {
  color: var(--gold-primary);
  transition: var(--transition-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem 1.8rem;
}

/* CTA BANNER FINAL */
.cta-banner {
  padding: 90px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(15, 17, 26, 0.95) 0%, rgba(28, 41, 61, 0.95) 100%);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* FOOTER */
.footer {
  background: var(--bg-primary);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition-base);
  animation: pulse-green 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: var(--whatsapp-green-hover);
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(8, 9, 13, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-base);
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
