/* ========================================
   Andréia Oliveira Studio - Landing Page
   ======================================== */

:root {
  --primary: #5d321c;
  --primary-foreground: #faf6f3;
  --secondary: #d3a679;
  --secondary-foreground: #3d2815;
  --accent: #c8956c;
  --accent-foreground: #2d1f12;
  --background: #f5efe9;
  --foreground: #3d2815;
  --card: #faf6f3;
  --card-foreground: #3d2815;
  --muted: #e8ddd2;
  --muted-foreground: #6b5a4a;
  --border: #d9c9b8;
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

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

@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

.section-title {
  font-size: 1.5rem;
  color: var(--foreground);
}

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

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

.section-subtitle {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

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

.text-secondary {
  color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #c49564;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: #c49564;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background-color: #b8855c;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-outline-light {
  background-color: rgba(255,255,255,0.1);
  color: var(--primary-foreground);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.2);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-width: 200px;
}

@media (min-width: 640px) {
  .btn-large { width: auto; }
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ========================================
   Entrance Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for cards */
.service-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.services-section.visible .service-card:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.services-section.visible .service-card:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.services-section.visible .service-card:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.services-section.visible .service-card:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  background-color: var(--background);
}

.carousel-container {
  overflow: hidden;
  padding: 1rem 0;
  max-height: 220px;
}

@media (min-width: 768px) {
  .carousel-container {
    padding: 2rem 0;
    max-height: 320px;
  }
}

.carousel-track {
  display: flex;
  gap: 0.75rem;
  animation: marquee 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-item {
  flex-shrink: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item.tall {
  width: 7rem;
  height: 10rem;
}

.carousel-item.wide {
  width: 10rem;
  height: 7rem;
}

.carousel-item.medium {
  width: 8rem;
  height: 8rem;
}

@media (min-width: 768px) {
  .carousel-item.tall { width: 12rem; height: 16rem; }
  .carousel-item.wide { width: 16rem; height: 12rem; }
  .carousel-item.medium { width: 13rem; height: 13rem; }
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1.5rem 4rem;
  animation: fadeInUp 0.6s ease-out forwards;
}

@media (min-width: 768px) {
  .hero-content { padding: 4rem 1rem; }
}

.hero-title {
  font-size: 1.5rem;
  line-height: 1.2;
}

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

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

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

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.125rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background-color: rgba(211, 166, 121, 0.6);
  z-index: -1;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .hero-title .highlight::after { height: 0.75rem; }
}

.hero-subtitle {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

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

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.hero-buttons .btn {
  min-width: 200px;
  height: 3.5rem;
  padding: 0 2rem;
}

@media (max-width: 639px) {
  .hero-buttons .btn { width: 100%; }
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
  padding: 3rem 0;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .services-section { padding: 5rem 0; }
}

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

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .service-image { aspect-ratio: 3/4; }
}

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

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

.service-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

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

.service-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .btn {
  height: 3rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  padding: 3rem 0;
  background-color: var(--card);
}

@media (min-width: 768px) {
  .about-section { padding: 5rem 0; }
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.about-image-wrapper {
  position: relative;
  max-width: 24rem;
  margin: 0 auto;
  order: 2;
}

@media (min-width: 1024px) {
  .about-image-wrapper { order: 1; }
}

.about-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(211,166,121,0.3), rgba(200,149,108,0.2));
  border-radius: 1rem;
  transform: rotate(-3deg);
}

.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.about-content {
  order: 1;
}

@media (min-width: 1024px) {
  .about-content { order: 2; }
}

.about-title {
  font-size: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .about-title { font-size: 1.875rem; }
}

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

.about-text {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-text { font-size: 1rem; }
}

.about-text p {
  margin-bottom: 1rem;
}

.about-text strong {
  color: var(--foreground);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem 0 1.5rem;
}

@media (min-width: 768px) {
  .achievements-grid { gap: 1rem; padding: 1.5rem 0; }
}

.achievement {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--background);
  border-radius: 0.75rem;
}

.achievement-icon {
  padding: 0.5rem;
  background-color: rgba(200,149,108,0.1);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.achievement-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.achievement-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.achievement-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

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

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

.about-buttons .btn {
  height: 3rem;
  padding: 0 1.5rem;
}

@media (max-width: 639px) {
  .about-buttons .btn { width: 100%; }
}

/* ========================================
   Clinic Section
   ======================================== */
.clinic-section {
  padding: 3rem 0;
  background-color: var(--background);
}

@media (min-width: 768px) {
  .clinic-section { padding: 5rem 0; }
}

.clinic-carousel-wrapper {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.clinic-carousel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

@media (min-width: 768px) {
  .clinic-carousel { aspect-ratio: 16/9; }
}

.clinic-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.clinic-slide.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
  .carousel-btn { width: 3.5rem; height: 3.5rem; }
}

.carousel-btn:hover {
  background-color: rgba(255,255,255,1);
}

.carousel-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .carousel-btn svg { width: 1.75rem; height: 1.75rem; }
}

.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }

@media (min-width: 768px) {
  .carousel-prev { left: 1rem; }
  .carousel-next { right: 1rem; }
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  width: 2rem;
  background-color: var(--accent);
}

.carousel-dot:hover {
  background-color: rgba(255,255,255,0.8);
}

/* ========================================
   Location Section
   ======================================== */
.location-section {
  padding: 3rem 0;
  background-color: var(--card);
}

@media (min-width: 768px) {
  .location-section { padding: 5rem 0; }
}

.location-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.location-map-card {
  background-color: var(--background);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper {
  aspect-ratio: 16/9;
}

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

.location-info {
  padding: 1rem 1.5rem 1.5rem;
}

.location-address {
  display: flex;
  gap: 0.75rem;
}

.location-address .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.location-address h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
}

.location-address p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  line-height: 1.6;
}

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

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

.location-buttons .btn {
  height: 3rem;
  padding: 0 1.5rem;
}

@media (max-width: 639px) {
  .location-buttons .btn { width: 100%; }
}

.reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviews-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
}

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

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .reviews-list { gap: 1rem; }
}

.review-card {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--background);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .review-avatar { width: 3rem; height: 3rem; font-size: 1rem; }
}

.review-content {
  flex: 1;
  min-width: 0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.review-name {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .review-name { font-size: 1rem; }
}

.review-stars {
  display: flex;
}

.review-stars svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--accent);
}

@media (min-width: 768px) {
  .review-stars svg { width: 1rem; height: 1rem; }
}

.review-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  line-height: 1.6;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
}

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

.reviews-link .icon {
  width: 1rem;
  height: 1rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  position: relative;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary), rgba(93,50,28,0.9));
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 6rem 1.5rem; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: var(--accent);
  border-radius: 9999px;
  filter: blur(48px);
  transform: translate(-50%, -50%);
}

.cta-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: var(--secondary);
  border-radius: 9999px;
  filter: blur(48px);
  transform: translate(50%, 50%);
}

@media (min-width: 768px) {
  .cta-bg::before, .cta-bg::after { width: 24rem; height: 24rem; }
}

.cta-content {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.5rem;
  color: var(--primary-foreground);
  line-height: 1.2;
}

@media (min-width: 640px) {
  .cta-title { font-size: 1.875rem; }
}

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

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

.cta-subtitle {
  margin-top: 1rem;
  color: rgba(250,246,243,0.8);
  font-size: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

@media (min-width: 768px) {
  .cta-buttons { margin-top: 2.5rem; }
}

.cta-buttons .btn {
  height: 3.5rem;
}

@media (max-width: 639px) {
  .cta-buttons .btn { width: 100%; }
}

.cta-tagline {
  margin-top: 1.5rem;
  color: rgba(250,246,243,0.6);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .cta-tagline { margin-top: 2rem; }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .footer { padding: 3rem 0; }
}

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

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

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

.footer-brand h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-brand h3 { font-size: 1.25rem; margin-bottom: 1rem; }
}

.footer-brand p {
  color: rgba(250,246,243,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact h4,
.footer-location h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-contact h4,
  .footer-location h4 { margin-bottom: 1rem; }
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250,246,243,0.7);
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

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

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-address .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-address p {
  color: rgba(250,246,243,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-location {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-location { grid-column: auto; }
}

.footer-bottom {
  border-top: 1px solid rgba(250,246,243,0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

@media (min-width: 640px) {
  .footer-credits { text-align: left; }
}

.footer-credits p {
  color: rgba(250,246,243,0.5);
  font-size: 0.875rem;
}

.developed-by {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: rgba(250,246,243,0.4);
}

.developed-by a {
  color: rgba(250,246,243,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.developed-by a:hover {
  color: var(--accent);
}

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

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(250,246,243,0.1);
  border-radius: 9999px;
  transition: background-color 0.2s ease;
}

.social-btn:hover {
  background-color: rgba(200,149,108,0.2);
}

.social-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}
