/* 
  Apascentar Church - Official Style Guide & CSS System
  Estilo Clássico e Premium
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- Custom Properties (Design Tokens) --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-tertiary: #181818;
  --accent-gold: #c5a880;
  --accent-gold-hover: #b4966e;
  --accent-gold-rgb: 197, 168, 128;
  
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-muted: #666666;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(197, 168, 128, 0.25);
  
  --glass-bg: rgba(10, 10, 10, 0.8);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(12px);
  
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Resets & Global Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* --- Layout Utilities --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000000;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
}

.btn-outline {
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

.header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

.brand-text {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-weight: 400;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.nav-cta {
  display: inline-block;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-cta {
    display: none; /* Hide top CTA on tablet/mobile, we can place inside menu */
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* dynamic inline bg image in html */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 80%),
              linear-gradient(0deg, var(--bg-primary) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
}

.hero-tag {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-top: 8px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 550px;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-title span {
    font-size: 1.6rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .hero-desc {
    font-size: 1rem;
  }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background-color: var(--border-color);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--accent-gold);
  animation: scroll-dot 2s infinite ease-in-out;
}

@keyframes scroll-dot {
  0% { top: -20px; }
  100% { top: 50px; }
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.about-text-content h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.about-text-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-quote {
  border-left: 2px solid var(--accent-gold);
  padding-left: 24px;
  margin: 35px 0;
  font-style: italic;
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--text-primary);
}

.about-badge-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-secondary);
  padding: 16px 20px;
  border-radius: 4px;
  border-left: 3px solid var(--accent-gold);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-title {
  font-weight: 600;
  font-size: 0.9rem;
}

/* About Visual Frame */
.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-image-wrapper img {
  transition: var(--transition-smooth);
}

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

.about-visual::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 1px solid var(--accent-gold);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* --- Cultos Section (Schedule) --- */
.schedule-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.schedule-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.schedule-card:hover::before {
  height: 100%;
}

.schedule-day {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.schedule-time {
  font-size: 2.2rem;
  font-family: var(--font-title);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.schedule-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.schedule-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.schedule-notice {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Ministries Section --- */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.ministry-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.ministry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.ministry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.ministry-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.ministry-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.ministry-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.ministry-card:hover .ministry-img {
  transform: scale(1.08);
}

.ministry-card:hover .ministry-overlay {
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 80%);
}

.ministry-card:hover .ministry-icon {
  transform: translateY(0);
  opacity: 1;
}

.ministry-card:hover .ministry-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 10px;
}

/* --- GMB & Location Section --- */
.location-section {
  background-color: var(--bg-secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

/* GMB Card */
.gmb-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.gmb-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.gmb-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.gmb-badge-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.gmb-info-meta h4 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.gmb-category {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.gmb-reviews {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gmb-rating-num {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  width: 16px;
  height: 16px;
  fill: #ffc107; /* Google Gold Star */
}

.gmb-reviews-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* GMB Body */
.gmb-body-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 35px;
}

.gmb-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gmb-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gmb-icon-box svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

.gmb-info-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gmb-info-text p, .gmb-info-text a {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.gmb-info-text a:hover {
  color: var(--accent-gold);
}

/* GMB Actions */
.gmb-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gmb-actions .btn {
  padding: 12px 18px;
  font-size: 0.8rem;
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 400px;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .map-wrapper {
    height: 400px;
  }
}

/* --- Contact & Request Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info-wrap h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.contact-info-wrap p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-item {
  background-color: var(--bg-secondary);
  padding: 24px 30px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
}

.contact-card-details strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-card-details span {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.1);
}

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

.contact-form .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form {
    padding: 30px 20px;
  }
}

/* --- Footer --- */
.footer {
  background-color: #050505;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.footer-brand-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.footer-brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

.footer-about-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  background-color: rgba(197, 168, 128, 0.05);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--text-primary);
}

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

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

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer {
    padding: 60px 0 30px 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Pulse animation */
.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsapp-pulse 2s infinite;
  pointer-events: none;
}

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

/* --- Scroll Animation Elements --- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Specific delays for items in grid */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
