/* ===========================
   Iglesia Rey de Gloria
   style.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1e3a6e;
  --primary-light: #2a4f94;
  --primary-foreground: #ffffff;
  --accent: #c8a84e;
  --accent-dark: #3d3218;
  --background: #f5f7fb;
  --card: #ffffff;
  --foreground: #0f1a2e;
  --muted: #6b7a94;
  --border: #dce3ef;
  --secondary-bg: #edf1f8;
  --whatsapp: #25D366;
  --whatsapp-hover: #20bd5a;
  --instagram: #E1306C;
  --facebook: #1877F2;
  --destructive: #e74c3c;
  --radius: 1rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ---------- Utility ---------- */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 1024px) {
  .header-inner {
    padding: 0.75rem 2rem;
  }
}

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

.header-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.header.scrolled .header-logo {
  background: var(--primary);
}

.header-logo span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-foreground);
}

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.header-brand-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--card);
  transition: color 0.3s;
}

.header.scrolled .header-brand-name {
  color: var(--foreground);
}

.header-brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  transition: color 0.3s;
}

/* Desktop Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--card);
  transition: color 0.3s;
}

.header.scrolled .header-nav a {
  color: var(--foreground);
}

.header-nav a:hover {
  color: var(--accent);
}

/* WhatsApp CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.header-cta:hover {
  background: var(--whatsapp-hover);
  box-shadow: var(--shadow-lg);
}

.header-cta svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  color: var(--card);
  border-radius: 0.5rem;
  transition: color 0.3s;
}

.header.scrolled .mobile-menu-btn {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--secondary-bg);
}

.mobile-menu-cta {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(1px);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,26,46,0.70), rgba(15,26,46,0.50), rgba(15,26,46,0.80));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.hero-subtitle {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

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

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

.hero-description {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  text-wrap: pretty;
}

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

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

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-dark);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}

.btn-whatsapp-hero:hover {
  box-shadow: var(--shadow-xl);
  filter: brightness(1.1);
}

.btn-whatsapp-hero svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-hero:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255,255,255,0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ---------- SECTIONS COMMON ---------- */
.section {
  padding: 6rem 0;
  overflow: hidden;
}

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

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-wrap: balance;
}

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

.section-description {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
  text-wrap: pretty;
}

/* ---------- SOCIAL SECTION ---------- */
.social-section {
  background: var(--card);
  position: relative;
}

.social-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
}

.social-grid {
  display: grid;
  gap: 2rem;
}

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

.social-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.social-card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.social-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.social-card:hover .social-card-image img {
  transform: scale(1.05);
}

.social-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,46,0.6), transparent);
}

.social-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.social-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.social-card-icon.instagram svg { color: var(--instagram); }
.social-card-icon.facebook svg { color: var(--facebook); }

.social-card-badge-text p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.social-card-badge-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

.social-card-body {
  padding: 1.5rem;
}

.social-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.social-card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.social-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s;
}

.social-card:hover .social-card-link {
  color: var(--accent);
}

.social-card-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.social-card:hover .social-card-link svg {
  transform: translateX(4px);
}

/* ---------- RADIO SECTION ---------- */
.radio-section {
  background: var(--secondary-bg);
}

.radio-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.radio-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.radio-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.radio-live-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(231,76,60,0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
}

.radio-live-dot {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
}

.radio-live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
  opacity: 0.75;
}

.radio-live-dot::after {
  content: '';
  position: relative;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #fff;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.radio-live-badge span {
  font-size: 0.75rem;
  font-weight: 700;
}

.radio-content-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.radio-content-label svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.radio-content-label span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.radio-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .radio-content h2 {
    font-size: 3rem;
  }
}

.radio-content p {
  max-width: 32rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-wrap: pretty;
}

.radio-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .radio-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}

.btn-primary:hover {
  box-shadow: var(--shadow-xl);
  filter: brightness(1.1);
}

.btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--border);
  color: var(--foreground);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
}

.btn-secondary:hover {
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.btn-secondary svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background: var(--card);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

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

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon.whatsapp {
  background: rgba(37,211,102,0.1);
}

.contact-card-icon.whatsapp svg {
  color: var(--whatsapp);
}

.contact-card-icon.location {
  background: rgba(30,58,110,0.1);
}

.contact-card-icon.location svg {
  color: var(--primary);
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-card-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

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

.contact-card-text .contact-cta {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--whatsapp);
  margin-top: 0.25rem;
}

/* Schedule Card */
.schedule-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--secondary-bg);
}

.schedule-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.875rem;
}

.schedule-row .day {
  color: var(--muted);
}

.schedule-row .time {
  font-weight: 500;
  color: var(--foreground);
}

/* Prayer Form */
.prayer-form-wrap {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.prayer-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.prayer-form-wrap > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  background: var(--background);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,110,0.1);
}

.form-group textarea {
  resize: none;
  min-height: 6rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}

.btn-submit:hover {
  box-shadow: var(--shadow-xl);
  filter: brightness(1.1);
}

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

.btn-submit svg {
  width: 1rem;
  height: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--foreground);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

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

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-foreground);
}

.footer-brand-text .name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-text .sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

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

.footer-links nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links nav a:hover {
  color: #fff;
}

.footer-location h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-address svg {
  width: 1rem;
  height: 1rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-address p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-social-link.whatsapp:hover {
  background: rgba(37,211,102,0.2);
  color: var(--whatsapp);
}

.footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

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

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
}

/* ---------- ANIMATIONS (scroll) ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
