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

:root {
  /* Cores principais - tema igreja */
  --primary: #1a365d;
  --primary-dark: #0d1b2a;
  --primary-light: #2c5282;
  --secondary: #1b4332;

  /* Dourado sagrado */
  --gold: #d4a574;
  --gold-light: #e8c9a0;
  --gold-dark: #b8956a;

  /* Neutros */
  --white: #ffffff;
  --off-white: #faf8f5;
  --cream: #f5f0e8;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Funcionais */
  --success: #2d6a4f;
  --whatsapp: #25d366;
  --instagram: #e4405f;
  --facebook: #1877f2;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 40px rgba(212, 165, 116, 0.3);

  /* Bordas */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.stained-glass-cross {
  position: relative;
  width: 80px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.cross-beam {
  position: absolute;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  border-radius: 4px;
}

.cross-beam.vertical {
  width: 16px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.cross-beam.horizontal {
  width: 60px;
  height: 16px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.light-rays {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, rgba(212, 165, 116, 0.4) 0%, transparent 70%);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.preloader-text {
  font-family: "Cinzel", serif;
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.preloader-subtitle {
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

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

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

.logo-cross {
  width: 40px;
  height: 50px;
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  top: -5px; /* ajuste o valor */
}

.header.scrolled .logo-cross {
  color: var(--gold-dark);
}

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

.logo-name {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  transition: var(--transition);
}

.header.scrolled .logo-name {
  color: var(--primary-dark);
}

.logo-subtitle {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.header.scrolled .logo-subtitle {
  color: var(--gray-500);
}

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

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

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

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .menu-toggle span {
  background: var(--gray-800);
}

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

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    color: var(--gray-800) !important;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--cream);
    color: var(--primary) !important;
  }

  .nav-link::after {
    display: none;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/placeholder.svg?height=1200&width=1920") center / cover no-repeat;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(26, 54, 93, 0.85) 50%, rgba(13, 27, 42, 0.9) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  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%3Cpath d='M30 0v60M0 30h60' stroke='%23d4a574' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.light-beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.beam {
  position: absolute;
  top: -50%;
  width: 200px;
  height: 200%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 165, 116, 0.1) 30%,
    rgba(212, 165, 116, 0.05) 50%,
    transparent 100%
  );
  transform: rotate(15deg);
  animation: beam-move 20s ease-in-out infinite;
}

.beam:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.beam:nth-child(2) {
  left: 40%;
  animation-delay: -7s;
}
.beam:nth-child(3) {
  left: 70%;
  animation-delay: -14s;
}

@keyframes beam-move {
  0%,
  100% {
    transform: rotate(15deg) translateX(-20px);
    opacity: 0.3;
  }
  50% {
    transform: rotate(15deg) translateX(20px);
    opacity: 0.6;
  }
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dove {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  animation: float-dove 30s ease-in-out infinite;
}

.dove svg {
  width: 60px;
  height: 60px;
}

.dove-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.dove-2 {
  top: 25%;
  right: 15%;
  animation-delay: -15s;
}

@keyframes float-dove {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(100px, 0) rotate(0deg);
  }
  75% {
    transform: translate(50px, 30px) rotate(-5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid rgba(212, 165, 116, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1rem;
  color: var(--gold);
}

.hero-badge span:last-child {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(40px);
}

.title-logo {
  height: clamp(3rem, 10vw, 6rem);
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.3));
}

.title-accent {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.hero-verse {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 165, 116, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--primary-dark);
  width: 100%;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-full {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  width: 100%;
  justify-content: center;
}

.btn-whatsapp-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ===== SECTION STYLES ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-tag-light {
  color: var(--gold-light);
}

.tag-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.section-tag-light .tag-line {
  background: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

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

.section-title .highlight {
  color: var(--gold-dark);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}

.section-title-light .highlight {
  color: var(--gold-light);
}

/* ===== VERSE SECTION ===== */
.verse-section {
  position: relative;
  padding: 6rem 0;
  background: var(--cream);
  overflow: hidden;
}

.verse-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0v100M0 50h100' stroke='%23d4a574' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3Ccircle cx='50' cy='50' r='20' stroke='%23d4a574' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.verse-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.verse-ornament {
  position: absolute;
  width: 80px;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 Q40 40 0 80' stroke='%23d4a574' stroke-width='1' fill='none' stroke-opacity='0.3'/%3E%3Cpath d='M0 0 Q40 20 80 0' stroke='%23d4a574' stroke-width='1' fill='none' stroke-opacity='0.3'/%3E%3C/svg%3E");
}

.verse-ornament.top-left {
  top: 0;
  left: 0;
}
.verse-ornament.top-right {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}
.verse-ornament.bottom-left {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}
.verse-ornament.bottom-right {
  bottom: 0;
  right: 0;
  transform: scale(-1);
}

.verse-content {
  text-align: center;
}

.verse-icon {
  width: 60px;
  height: 60px;
  color: var(--gold);
  margin: 0 auto 1rem;
}

.verse-icon svg {
  width: 100%;
  height: 100%;
}

.verse-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.verse-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.verse-reference {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--gold-dark);
  font-style: normal;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 8rem 0;
  background: var(--white);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: var(--radius-2x1);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 700px;
  height: 400px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.3) 0%, transparent 50%);
}

.floating-card {
  position: absolute;
  bottom: -70px;
  right: -30px;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid var(--gold);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

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

.card-number {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.card-label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.about-content {
  padding: 1rem 0;
}

.about-text {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: var(--transition);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image img {
    height: 400px;
  }

  .floating-card {
    bottom: -20px;
    right: 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ===== LEADERSHIP SECTION ===== */
.leadership {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.leadership-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.leadership-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  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%3Cpath d='M30 0v60M0 30h60' stroke='%23d4a574' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3C/svg%3E");
}

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

.leadership-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pastor-card {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: 3rem;
}

.pastor-image {
  position: relative;
  flex-shrink: 0;
}

.pastor-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
}

.pastor-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
  animation: pastor-glow 3s ease-in-out infinite;
}

@keyframes pastor-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.pastor-info {
  flex: 1;
  color: var(--white);
}

.pastor-name {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.pastor-role {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pastor-verse {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
}

.pastor-verse svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.5;
}

.pastor-verse p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.pastor-verse cite {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
}

@media (max-width: 800px) {
  .pastor-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 2rem;
  }

  .pastor-verse {
    flex-direction: column;
    align-items: center;
    border-left: none;
    border-top: 3px solid var(--gold);
    padding-top: 1.5rem;
  }
}

/* ===== SCHEDULE SECTION ===== */
.schedule {
  padding: 8rem 0;
  background: var(--off-white);
}

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

.schedule-description {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* Tabela de horários */
.schedule-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

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

.schedule-table thead th {
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.06) 0%, rgba(212, 165, 116, 0.08) 100%);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.schedule-table tbody th,
.schedule-table tbody td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}

.schedule-table tbody tr:last-child th,
.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table tbody tr {
  transition: var(--transition);
}

.schedule-table tbody tr:hover {
  background: rgba(212, 165, 116, 0.07);
}

.schedule-table tbody tr.is-featured {
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.06) 0%, rgba(26, 54, 93, 0.0) 60%);
}

.day-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.day-pill--featured {
  color: var(--primary);
}

.schedule-hour {
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.cult-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(212, 165, 116, 0.22);
  border: 1px solid rgba(212, 165, 116, 0.35);
}

.cult-tag--prayer {
  background: rgba(45, 106, 79, 0.12);
  border-color: rgba(45, 106, 79, 0.28);
  color: var(--secondary);
}

.cult-tag--featured {
  background: rgba(26, 54, 93, 0.12);
  border-color: rgba(26, 54, 93, 0.25);
  color: var(--primary);
}

@media (max-width: 720px) {
  .schedule-header {
    margin-bottom: 2.5rem;
  }

  .schedule-table-wrapper {
    border-radius: var(--radius-xl);
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table th,
  .schedule-table td {
    display: block;
    width: 100%;
  }

  .schedule-table tbody tr {
    padding: 1rem 1.25rem;
  }

  .schedule-table tbody th,
  .schedule-table tbody td {
    padding: 0.5rem 0;
    border-bottom: none;
  }

  .schedule-table tbody td {
    color: var(--gray-700);
  }

  .schedule-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.35rem;
  }
}

/* (antigo grid de cards mantido no CSS abaixo caso queira voltar depois) */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.schedule-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  
}

.schedule-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.schedule-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.schedule-card:hover .card-glow {
  opacity: 1;
}

.schedule-card.featured {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.12) 0%, rgba(212, 165, 116, 0.04) 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.schedule-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  height: 5px;
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schedule-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

.schedule-icon svg {
  width: 100%;
  height: 100%;
}

.schedule-card.featured .schedule-icon {
  color: var(--gold-dark);
}

.schedule-day {
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.schedule-card.featured .schedule-day {
  color: var(--primary-dark);
}

.schedule-time {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.schedule-card.featured .schedule-time {
  color: var(--gold-dark);
}

.schedule-name {
  font-size: 1rem;
  color: var(--gray-600);
}

.schedule-card.featured .schedule-name {
  color: var(--primary-dark);
}

.schedule-times {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
}

.time-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.time-item .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.schedule-card.featured .time-item .time {
  color: var(--gold-light);
}

.time-item .event {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.schedule-card.featured .time-item .event {
  color: rgba(255, 255, 255, 0.85);
}

.santa-ceia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.ceia-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.ceia-icon svg {
  width: 100%;
  height: 100%;
}

.ceia-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ceia-info strong {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.ceia-info span {
  font-size: 0.95rem;
  color: var(--gray-600);
}

@media (max-width: 1024px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .schedule-card {
    padding: 1.5rem 1rem;
  }
  
  .schedule-day {
    font-size: 0.9rem;
  }
  
  .schedule-time {
    font-size: 1.5rem;
  }
  
  .schedule-name {
    font-size: 0.85rem;
  }

  .santa-ceia {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .schedule-card {
    padding: 1.25rem 1rem;
  }
  
  .schedule-day {
    font-size: 0.8rem;
  }
  
  .schedule-time {
    font-size: 1.25rem;
  }
  
  .schedule-name {
    font-size: 0.75rem;
  }
}

/* ===== CONTRIBUTE SECTION ===== */
.contribute {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.contribute-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.contribute-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' stroke='%23d4a574' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3Ccircle cx='40' cy='40' r='20' stroke='%23d4a574' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3C/svg%3E");
}

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

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

.contribute-verse {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.contribute-verse cite {
  display: block;
  margin-top: 0.75rem;
  font-family: "Cinzel", serif;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
}

.contribute-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tithe-form-card,
.payment-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

.form-icon svg {
  width: 32px;
  height: 32px;
}

.form-header h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--gray-500);
  pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}

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

/* Payment Card */
.payment-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-100);
}

.payment-header h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.payment-header p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

#paymentSummary.active {
  color: var(--primary);
  font-weight: 600;
}

.payment-method {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.method-icon.pix {
  background: linear-gradient(135deg, #32bcad 0%, #00b894 100%);
}

.method-icon.bank {
  background: linear-gradient(135deg, #cc092f 0%, #a00724 100%);
}

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

.method-header h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.125rem;
}

.method-header span {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pix-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.pix-key {
  flex: 1;
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
}

.btn-copy {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--primary-dark);
}

.pix-recipient {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 0.75rem;
  text-align: center;
}

.bank-details {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.full {
  flex-direction: column;
  align-items: flex-start;
}

.detail-row .label {
  font-size: 0.8rem;
  color: var(--gray-500);
  min-width: 110px;
}

.detail-row .value {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}

.detail-row.full .value {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
}

.btn-copy-sm {
  background: var(--gray-200);
  color: var(--gray-600);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: var(--transition);
}

.btn-copy-sm:hover {
  background: var(--primary);
  color: var(--white);
}

.receipt-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}

.receipt-info svg {
  color: var(--whatsapp);
  flex-shrink: 0;
}

.receipt-info p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--gray-700);
  min-width: 150px;
}

.receipt-info a {
  color: var(--whatsapp);
  font-weight: 600;
  font-size: 0.9rem;
}

.receipt-info a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contribute-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRAYER SECTION ===== */
.prayer {
  padding: 8rem 0;
  background: var(--white);
}

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

.prayer-text {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.prayer-promise {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}

.prayer-promise svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
}

.prayer-promise p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.prayer-promise cite {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-style: normal;
}

.prayer-form-wrapper {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  text-align: center;
  font-style: italic;
}

@media (max-width: 900px) {
  .prayer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .day-buttons {
    justify-content: center;
  }

  .day-btn {
    min-width: 70px;
  }
}

/* ===== VISIT SECTION ===== */
.visit {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.visit-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
}

.visit-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  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%3Cpath d='M30 0v60M0 30h60' stroke='%23d4a574' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3C/svg%3E");
}

.visit .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.visit-content {
  color: var(--white);
}

.visit-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.visit-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

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

.visit-form select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  transition: var(--transition);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

.visit-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

@media (max-width: 900px) {
  .visit .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .visit-content {
    text-align: center;
  }

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

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 8rem 0;
  background: var(--off-white);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

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

.info-text h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.info-text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--whatsapp);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.social-section {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.social-section h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  color: var(--white);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.social-btn.facebook {
  background: var(--facebook);
}

.social-btn.facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.map-wrapper {
  position: relative;
}

.map-container {
  height: 450px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

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

.map-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.map-pulse {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  animation: map-pulse 2s infinite;
}

@keyframes map-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 54, 93, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(26, 54, 93, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 54, 93, 0);
  }
}

.map-info span {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
  }
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--primary-dark);
  color: var(--white);
  padding-top: 5rem;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  color: var(--off-white);
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-cross {
  width: 36px;
  height: 45px;
  color: var(--gold);
}

.footer-logo .logo-name {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-logo .logo-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.footer-slogan {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 0.35rem 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gray-900);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  color: var(--success);
}

.toast-message {
  font-weight: 500;
}

/* ===== NEXT EVENT COUNTDOWN ===== */
.next-event-countdown {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-2xl);
  padding: 2rem 3rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-xl);
}

.countdown-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.countdown-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.countdown-icon svg {
  width: 32px;
  height: 32px;
}

.countdown-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-event {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-top: 0.25rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  min-width: 70px;
}

.countdown-number {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.countdown-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.countdown-separator {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
}

@media (max-width: 900px) {
  .next-event-countdown {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .countdown-header {
    flex-direction: column;
  }

  .countdown-unit {
    padding: 0.75rem 1rem;
    min-width: 55px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 8rem 0;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-description {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-top: -0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay svg {
  width: 48px;
  height: 48px;
  color: var(--white);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 250px;
  }

  .gallery-item:not(.large) {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.testimonials-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  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%3Cpath d='M30 0v60M0 30h60' stroke='%23d4a574' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3C/svg%3E");
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-top: -0.5rem;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-sizing: border-box;
}

.testimonial-quote {
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.testimonial-quote svg {
  width: 100%;
  height: 100%;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.125rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gold);
}

.testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--gold);
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 2rem;
    min-width: 100%;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .testimonials-navigation {
    gap: 1rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gray-900);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--gray-900);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}
.visit {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(33,150,243,0.08), transparent 60%),
    linear-gradient(180deg, #f9fafb, #ffffff);
}

.visit-card {
  max-width: 1000px;   /* MAIS LARGO */
  margin: 0 auto;
  background: #fff;
  padding: 70px 90px;  /* mais espaço lateral */
  border-radius: 30px;
  text-align: center;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
}

.visit-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #1e88e5, #43a047);
  border-radius: 10px;
}

.visit-icon {
  font-size: 56px;
  margin-bottom: 25px;
}

.visit-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.visit-text {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* Ocultar cards extras da seção inicial */
.stat-card,
.feature-card {
  display: none;
}
