@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  --primary-bg: #060a13;
  --secondary-bg: #0b1120;
  --card-bg: rgba(13, 22, 38, 0.65);
  --card-bg-hover: rgba(20, 32, 54, 0.85);
  
  --gold-solid: #c5a059;
  --gold-light: #f5e0a9;
  --gold-dark: #8c6827;
  --gold-glow: rgba(197, 160, 89, 0.4);
  --gold-border: rgba(197, 160, 89, 0.25);
  --gold-border-hover: rgba(245, 224, 169, 0.6);
  
  --gold-gradient: linear-gradient(135deg, #8c6827 0%, #c5a059 50%, #f5e0a9 100%);
  --gold-text-gradient: linear-gradient(135deg, #f5e0a9 0%, #c5a059 50%, #8c6827 100%);
  --dark-gradient: linear-gradient(180deg, #060a13 0%, #0b1120 100%);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --whatsapp-green: #25d366;
  --whatsapp-hover: #128c7e;
  
  --font-title: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  background-color: var(--primary-bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(13, 22, 38, 0.6) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.05) 0%, transparent 50%),
    var(--dark-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-solid);
}

/* ==========================================================================
   TYPOGRAPHY & ACCENTS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

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

.title-glow {
  text-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

/* Divider Decoration */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--gold-gradient);
}
.gold-divider .star {
  color: var(--gold-solid);
  font-size: 1.2rem;
  margin: 0 10px;
  animation: pulseGlow 3s infinite ease-in-out;
}

/* ==========================================================================
   LAYOUT SECTIONS
   ========================================================================== */
section {
  padding: 6rem 1.5rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   HEADER / TOP BAR
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #8c6827 0%, #c5a059 50%, #8c6827 100%);
  background-size: 200% auto;
  color: #060a13;
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: shimmerBG 6s linear infinite;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

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

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-solid);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-tagline::after {
  content: '';
  height: 1px;
  width: 50px;
  background: var(--gold-gradient);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  animation: revealScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.3) 0%, rgba(6, 10, 19, 0.8) 50%, rgba(197, 160, 89, 0.1) 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  animation: float 6s ease-in-out infinite;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 30px rgba(197, 160, 89, 0.25);
  pointer-events: none;
}

/* Background floating elements */
.spiritual-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}
.orb-1 { top: 10%; right: -5%; }
.orb-2 { bottom: 10%; left: -10%; }

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--gold-gradient);
  color: #060a13;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
  transition: 0.8s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-subtitle svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-solid);
}

/* ==========================================================================
   METRICS / HIGHLIGHT BAR
   ========================================================================== */
.metrics-section {
  padding: 2rem 1.5rem;
  background: rgba(11, 17, 32, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-item {
  position: relative;
}
.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-border), transparent);
}

.metric-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   PILARS (THE THREE MESTRAS)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--gold-solid);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.pilar-card {
  background: var(--card-bg);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pilar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.pilar-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-hover);
  box-shadow: 0 20px 40px -10px rgba(197, 160, 89, 0.15);
}

.pilar-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  transition: var(--transition-smooth);
  position: relative;
}

.pilar-icon-wrapper svg {
  width: 35px;
  height: 35px;
  fill: url(#gold-gradient-def); /* Styled via SVG gradient definitions */
  transition: var(--transition-smooth);
}

.pilar-card:hover .pilar-icon-wrapper {
  background: var(--gold-gradient);
  box-shadow: 0 0 25px var(--gold-glow);
  transform: rotateY(180deg);
}

.pilar-card:hover .pilar-icon-wrapper svg {
  fill: #060a13;
}

.pilar-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pilar-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT / BIO SECTION (QUEM É BRUNA)
   ========================================================================== */
.about-section {
  background: var(--secondary-bg);
  position: relative;
}

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

.about-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.about-img-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: var(--transition-smooth);
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}
.about-img-box:hover img {
  transform: scale(1.05);
}

.about-img-1 {
  grid-column: 1 / 2;
  height: 380px;
  transform: translateY(-20px);
}
.about-img-2 {
  grid-column: 2 / 3;
  height: 380px;
  transform: translateY(20px);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-badge {
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-solid);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-paragraph {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-quote {
  border-left: 2px solid var(--gold-solid);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.about-roots {
  background: rgba(6, 10, 19, 0.4);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.roots-icon {
  font-size: 2rem;
  color: var(--gold-solid);
  animation: float 4s ease-in-out infinite;
}

.roots-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   SERVICES & SOLUTIONS
   ========================================================================== */
.services-section {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border-hover);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.1);
}

.service-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-solid);
  font-size: 1.5rem;
}

.service-card:hover .service-icon {
  background: var(--gold-solid);
  color: #060a13;
}

.service-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

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

.services-cta-box {
  background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.1) 0%, transparent 70%), var(--secondary-bg);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.services-cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services-cta-desc {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.05rem;
}

/* ==========================================================================
   ETHICAL COMMITMENT SECTION (SERIEDADE & VERDADE)
   ========================================================================== */
.ethical-section {
  background: linear-gradient(180deg, #0b1120 0%, #060a13 100%);
  position: relative;
  text-align: center;
}

.ethical-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(6, 10, 19, 0.7);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

.ethical-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  left: 40px;
  font-family: var(--font-title);
  font-size: 10rem;
  line-height: 1;
  color: rgba(197, 160, 89, 0.05);
  font-style: italic;
  pointer-events: none;
}

.ethical-icon {
  font-size: 3rem;
  color: var(--gold-solid);
  margin-bottom: 1.5rem;
}

.ethical-text {
  font-family: var(--font-title);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
}

.ethical-signature {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-solid);
  font-size: 0.95rem;
}

/* ==========================================================================
   DEVOTION/SACRED WATERS SECTION
   ========================================================================== */
.devotion-section {
  background-image: 
    linear-gradient(180deg, rgba(6, 10, 19, 0.9) 0%, rgba(11, 17, 32, 0.8) 50%, rgba(6, 10, 19, 0.9) 100%),
    url('../assets/bruna-orando.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.devotion-content {
  max-width: 800px;
  margin: 0 auto;
}

.devotion-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.devotion-desc {
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  background: var(--secondary-bg);
}

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--gold-border-hover);
  background: var(--card-bg-hover);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  padding-right: 1.5rem;
}

.faq-icon {
  color: var(--gold-solid);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Opened FAQ state */
.faq-item.active .faq-content {
  max-height: 300px; /* Large enough to hold body */
}

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

.faq-item.active {
  border-color: var(--gold-solid);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #04070d;
  padding: 4rem 1.5rem 2rem 1.5rem;
  border-top: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-info h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 450px;
}

.footer-links h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--gold-solid);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ==========================================================================
   FLOATING WHATSAPP ELEMENT
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  pointer-events: none;
}

.whatsapp-tooltip {
  background: var(--secondary-bg);
  border: 1px solid var(--gold-solid);
  color: var(--text-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(15px);
  transition: var(--transition-smooth);
}

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

.whatsapp-btn {
  width: 65px;
  height: 65px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  color: white;
  text-decoration: none;
  pointer-events: auto;
  position: relative;
  transition: var(--transition-smooth);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--whatsapp-hover);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Notification badge */
.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: pulseBadge 2s infinite ease-in-out;
}

/* ==========================================================================
   2026 PREMIUM MICRO-ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes shimmerBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
    opacity: 0.8;
  }
  50% {
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.35);
    opacity: 1;
  }
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal helper classes controlled by JS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   RESPONSIVENESS (MOBILE DESIGN FIRST & MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  h1, .hero-title {
    font-size: 2.8rem;
  }
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1; /* Image first on tablet/mobile for visual hook */
  }
  .about-img-box {
    height: 320px;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-item:nth-child(2)::after {
    display: none;
  }
  .pilars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1rem;
  }
  h1, .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .metric-item::after {
    display: none !important;
  }
  .about-visual-grid {
    grid-template-columns: 1fr;
  }
  .about-img-1, .about-img-2 {
    grid-column: auto;
    height: 250px;
    transform: none;
  }
  .service-card {
    padding: 1.8rem 1.2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ethical-card {
    padding: 2.5rem 1.5rem;
  }
  .ethical-text {
    font-size: 1.3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer {
    text-align: center;
  }
  .footer-info p {
    margin-left: auto;
    margin-right: auto;
  }
  .whatsapp-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-tooltip {
    display: none; /* Hide tooltip on small mobile screens to prevent overflow */
  }
}
