* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.menu-open {
  overflow: hidden;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
    Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --primary: var(--color-primary);
  --primary-light: var(--color-primary-light);
  --primary-dark: var(--color-primary-dark);
  --background: #fafafa;
  --foreground: #1a1a1a;
  --muted: #f0f0f0;
  --muted-foreground: #666666;
  --border: #e5e5e5;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(var(--color-primary-rgb), 0.3);
  --radius: 0.75rem;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --teal: #5c0f0f;
  --teal-dark: #300a0a;
  --teal-light: #7a1a1a;
}

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #300a0a;
  cursor: default;
}

.hero-section a {
  cursor: pointer;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(1.1) sepia(0.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(20, 16, 14, 0.85) 0%,
    rgba(20, 16, 14, 0.55) 50%,
    rgba(20, 16, 14, 0.3) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: 3rem 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-tagline {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1.75rem;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  color: var(--color-white);
  text-shadow: none;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 540px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(var(--color-primary-rgb), 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.35);
  transform: translateY(-3px);
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  border: 2px solid rgba(var(--color-primary-rgb), 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-outline:hover {
  background: white;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.15);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.scroll-indicator-dot {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  animation: bounce 2s infinite;
  background: rgba(255, 255, 255, 0.8);
}

.scroll-indicator-dot::before {
  content: "";
  width: 4px;
  height: 12px;
  background: var(--primary);
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, -20px);
  }

  50% {
    transform: translate(-10px, 10px);
  }

  75% {
    transform: translate(15px, 15px);
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 90vh;
  }

  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
    text-align: center;
  }

  .hero-tagline {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    justify-content: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }

  .hero-title em {
    display: inline;
    margin-top: 0;
  }

  .hero-subtitle {
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-bg-image {
    object-position: center 30%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.875rem;
    justify-content: center;
  }

  .btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 479px) {
  .hero-section {
    min-height: 85vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-bg-image {
  will-change: transform;
}

@supports not (object-fit: cover) {
  .hero-bg-image {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.section {
  padding: 6rem 1rem;
}

.section-dark {
  background: var(--foreground);
  color: var(--background);
}

.section-faq {
  background: #faf8f5;
}

.section-muted {
  background: rgba(240, 235, 229, 0.3);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted-foreground);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
}

.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(var(--color-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition-base);
}

.service-card:hover .service-icon {
  background: rgba(var(--color-primary-rgb), 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.scripture-text {
  color: var(--primary);
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.features-content {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-content.revealed {
  opacity: 1;
  transform: translateX(0);
}

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-list li.revealed {
  opacity: 1;
  transform: translateX(0);
}

.check-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-text-bold {
  font-weight: 600;
}

.feature-text-muted {
  color: var(--muted-foreground);
}

.faq-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-base);
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
  transition: transform var(--transition-base);
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-base);
}

.faq-answer.active {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  transition: padding-bottom var(--transition-base);
}

.faq-answer.active > p {
  padding-bottom: 1.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.instagram-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.instagram-post:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.instagram-icon {
  width: 48px;
  height: 48px;
  color: white;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-base);
}

.floating-actions.hidden {
  transform: translateX(150%);
  opacity: 0;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.floating-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.5s ease-out;
}

.floating-btn:hover::before {
  transform: scale(1.2);
  opacity: 0;
  transition:
    transform 0.5s ease-out,
    opacity 0.3s ease-out 0.2s;
}

.floating-btn:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.floating-btn:active {
  transform: scale(1.05) rotate(0deg);
}

.floating-btn-whatsapp {
  background: #25d366;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #f77737 100%);
  animation: pulse-instagram 2.5s ease-in-out infinite;
}

.floating-btn-youtube {
  background: #ff0000;
  animation: pulse-youtube 3s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  }
}

@keyframes pulse-instagram {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
  }

  50% {
    box-shadow: 0 8px 35px rgba(131, 58, 180, 0.6);
  }
}

@keyframes pulse-youtube {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
  }

  50% {
    box-shadow: 0 8px 35px rgba(253, 29, 29, 0.6);
  }
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.floating-btn:hover svg {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .faq-container {
    padding: 0 1rem;
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-answer > p {
    padding: 0 1rem;
  }

  .faq-answer.active > p {
    padding-bottom: 1rem;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
    gap: 0.75rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .scroll-indicator-dot {
    width: 20px;
    height: 35px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-pulsing {
  animation: pulse 1.5s ease-in-out infinite;
  width: 150px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 1rem;
  }

  .services-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 479px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

.vw-plugin-top-wrapper {
  z-index: 1060;
}

@media (max-width: 767px) {
  .vw-plugin-top-wrapper {
    bottom: 70px !important;
  }
}

.text-primary {
  color: var(--primary) !important;
}

.section-title .text-primary {
  color: var(--primary) !important;
}

/* ===== HERO CTA & STATUS DOT ===== */
.hero-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: white;
  color: var(--foreground);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-hero-cta:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta svg {
  transition: transform var(--transition-fast);
}

.btn-hero-cta:hover svg {
  transform: translateX(4px);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--foreground);
  padding: 3rem 1rem;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.stat-star {
  flex-shrink: 0;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}

@media (max-width: 576px) {
  .stats-grid {
    gap: 2rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ===== TOP SERVICES (PHOTO CARDS) ===== */
.top-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.top-service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.top-service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.top-service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.top-service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0ebe5;
}

.top-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.top-service-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe5;
}

.top-service-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.top-service-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.top-service-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.top-service-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.top-service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
}

.top-service-time {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.top-service-time::before {
  content: "·";
  margin-right: 0.75rem;
}

.btn-agendar {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  background: var(--foreground);
  color: white;
  transition: all var(--transition-base);
}

.btn-agendar:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .top-services-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  color: #999;
  font-size: 1rem;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: left;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--color-primary-rgb), 0.4);
}

.testimonial-stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-name {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-service {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials-title {
    font-size: 1.8rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 50px 16px;
  }
}
