/* Bibdental Static Site - Complete Styles (build: 2026-01-04) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Bibdental Turquoise Corporate Palette */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(200, 15%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(200, 15%, 15%);
  --primary: hsl(175, 65%, 45%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(200, 10%, 96%);
  --secondary-foreground: hsl(200, 15%, 15%);
  --muted: hsl(200, 10%, 94%);
  --muted-foreground: hsl(200, 10%, 45%);
  --accent: hsl(175, 45%, 92%);
  --accent-foreground: hsl(175, 65%, 35%);
  --border: hsl(200, 15%, 90%);
  --radius: 0.25rem;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --shadow-elegant: 0 4px 20px -4px hsla(200, 15%, 15%, 0.1);
  --shadow-card: 0 2px 10px -2px hsla(200, 15%, 15%, 0.08);
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 72rem;
  margin: 0 auto;
}

/* Section Padding */
.section-padding {
  padding: 5rem 1.5rem;
}

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

/* Typography */
.heading-display {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

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

@media (min-width: 1024px) {
  .heading-display {
    font-size: 3.75rem;
  }
}

.heading-section {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

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

.text-elegant {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: hsl(175, 65%, 40%);
  box-shadow: 0 10px 25px -5px hsla(175, 65%, 45%, 0.4);
}

.btn-outline {
  background-color: hsla(0, 0%, 100%, 0.1);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  color: var(--primary-foreground);
}

.btn-outline:hover {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
}

/* Cards */
.card-elegant {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid hsla(200, 15%, 90%, 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.card-elegant:hover {
  box-shadow: var(--shadow-elegant);
  border-color: hsla(175, 65%, 45%, 0.2);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.5s ease;
}

.header.scrolled {
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.1);
}

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

.header-logo img {
  height: 7rem;
  width: auto;
  transition: all 0.3s ease;
}

.header.scrolled .header-logo img {
  height: 5rem;
}

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

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

.header-nav a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--primary-foreground);
  transition: color 0.3s ease;
}

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

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
}

.lang-switch button {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: none;
  background: transparent;
  color: var(--primary-foreground);
  cursor: pointer;
  transition: all 0.3s ease;
}

.header.scrolled .lang-switch button {
  color: var(--foreground);
}

.lang-switch button.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.lang-switch span {
  color: hsla(0, 0%, 100%, 0.5);
}

.header.scrolled .lang-switch span {
  color: var(--muted-foreground);
}

.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
}

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

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

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  box-shadow: 0 4px 6px hsla(0, 0%, 0%, 0.1);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(0, 0%, 0%, 0.7), hsla(0, 0%, 0%, 0.5), hsla(0, 0%, 0%, 0.8));
}

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

.hero-logo {
  height: auto;
  width: auto;
  max-height: 6rem;
  max-width: 85vw;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  animation: slideUp 0.8s ease-out forwards;
}

@media (min-width: 480px) {
  .hero-logo {
    max-height: 8rem;
  }
}

@media (min-width: 768px) {
  .hero-logo {
    max-height: 10rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    max-height: 12rem;
  }
}

.hero h1 {
  color: var(--primary-foreground);
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease-out 0.1s forwards;
  opacity: 0;
}

.hero-separator {
  width: 6rem;
  height: 1px;
  background-color: hsla(0, 0%, 100%, 0.4);
  margin: 0 auto 1.5rem;
  animation: fadeIn 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.8);
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  animation: fadeIn 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

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

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 0.6s ease-out 0.8s forwards;
  opacity: 0;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(0, 0%, 100%, 0.4);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.75rem;
  background-color: hsla(0, 0%, 100%, 0.6);
  border-radius: 9999px;
  animation: bounce 1s infinite;
}

/* About Section */
.about {
  background-color: var(--background);
}

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

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

.about-image-container {
  position: relative;
  order: 2;
}

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

.about-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

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

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

.about-logo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
}

.about-logo-overlay img {
  height: 6rem;
  width: auto;
  filter: drop-shadow(0 25px 25px hsla(0, 0%, 0%, 0.15));
}

@media (min-width: 768px) {
  .about-logo-overlay img {
    height: 8rem;
  }
}

@media (min-width: 1024px) {
  .about-logo-overlay img {
    height: 10rem;
  }
}

.about-decorator {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  border: 2px solid hsla(175, 65%, 45%, 0.3);
  border-radius: var(--radius);
  z-index: -1;
}

.about-content {
  order: 1;
}

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

.about-content h2 {
  color: var(--foreground);
  margin-bottom: 2rem;
}

.about-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services {
  background-color: hsla(200, 10%, 96%, 0.3);
}

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

.services-header h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.services-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

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

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

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

.service-card {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid hsla(200, 15%, 90%, 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  box-shadow: var(--shadow-elegant);
  border-color: hsla(175, 65%, 45%, 0.2);
}

.service-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--foreground);
}

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

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

.service-card-content {
  padding: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

/* Why Bibdental Section */
.why-bibdental {
  background-color: hsl(200, 25%, 12%);
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .why-bibdental {
    padding: 7rem 1.5rem;
  }
}

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

.why-title {
  color: var(--primary);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.why-title .number {
  font-size: 3rem;
  font-weight: 900;
}

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

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

.why-logo {
  height: 6rem;
  width: auto;
  margin: 1.5rem auto;
}

@media (min-width: 768px) {
  .why-logo {
    height: 8rem;
  }
}

@media (min-width: 1024px) {
  .why-logo {
    height: 10rem;
  }
}

.why-separator {
  width: 4rem;
  height: 4px;
  background-color: var(--primary);
  margin: 1.5rem auto;
}

.why-subtitle {
  color: hsla(175, 65%, 45%, 0.8);
  font-size: 1.125rem;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.reason-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 0.3s ease;
}

.reason-card:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(175, 65%, 45%, 0.3);
}

.reason-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  border: 2px solid hsla(175, 65%, 45%, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
  border-color: var(--primary);
  background-color: hsla(175, 65%, 45%, 0.1);
}

.reason-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.reason-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .reason-card h3 {
    font-size: 1.25rem;
  }
}

.reason-card:hover h3 {
  color: var(--primary);
}

.reason-card p {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
  line-height: 1.6;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .reason-card p {
    font-size: 1rem;
  }
}

/* Process Section */
.process {
  background-color: var(--foreground);
  color: var(--primary-foreground);
}

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

.process-header h2 {
  margin-bottom: 1rem;
}

.process-header p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: left;
}

.process-step-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.process-step-number {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 25px -5px hsla(175, 65%, 45%, 0.4);
}

.process-step-icon {
  width: 5rem;
  height: 5rem;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
  border-color: var(--primary);
  background-color: hsla(175, 65%, 45%, 0.1);
}

.process-step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
  line-height: 1.6;
}

.process-compatibility {
  background-color: hsla(0, 0%, 100%, 0.05);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.process-compatibility-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.process-compatibility-header svg {
  color: var(--primary);
}

.process-compatibility-header span {
  font-weight: 500;
  font-size: 1.125rem;
}

.process-compatibility p {
  color: hsla(0, 0%, 100%, 0.6);
}

/* Scanner Brands */
.scanner-brands {
  background-color: hsla(200, 10%, 96%, 0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.5rem;
}

.scanner-brands-title {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.scanner-brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.scanner-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.scanner-brand span:first-child {
  color: var(--muted-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: color 0.3s ease;
}

.scanner-brand span:first-child:hover {
  color: var(--primary);
}

.scanner-brand span:last-child {
  color: hsla(200, 10%, 45%, 0.4);
}

/* Urgent Cases */
.urgent {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

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

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

.urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(0, 0%, 100%, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.urgent-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.urgent h2 {
  margin-bottom: 1rem;
}

.urgent-subtitle {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.urgent-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.urgent-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.urgent-feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background-color: hsla(0, 0%, 100%, 0.1);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.urgent-feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.urgent-feature h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.urgent-feature p {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.urgent-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.urgent-cta .btn {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.btn-urgent-call {
  background-color: var(--primary-foreground);
  color: var(--primary);
}

.btn-urgent-call:hover {
  background-color: hsla(0, 0%, 100%, 0.9);
}

.urgent-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.urgent-visual-bg {
  position: absolute;
  width: 16rem;
  height: 16rem;
  background-color: hsla(0, 0%, 100%, 0.1);
  border-radius: 9999px;
}

.urgent-visual-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.urgent-visual-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-foreground);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.25);
}

.urgent-visual-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.urgent-visual-box {
  background-color: hsla(0, 0%, 100%, 0.15);
  border: 2px solid hsla(0, 0%, 100%, 0.4);
  border-radius: 0.5rem;
  padding: 1.5rem 2.5rem;
}

.urgent-visual-box .time {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.urgent-visual-box p {
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: 0.5rem;
  color: hsla(0, 0%, 100%, 0.9);
}

/* Testimonials */
.testimonials {
  background-color: var(--background);
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .testimonials {
    padding: 4rem 1.5rem;
  }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.testimonials-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.testimonials-quote-icon {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  color: hsla(175, 65%, 45%, 0.2);
}

.testimonials-quote-icon svg {
  width: 3rem;
  height: 3rem;
}

.testimonial-card {
  background-color: hsla(200, 10%, 96%, 0.3);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--primary);
  color: var(--primary);
}

.testimonial-text {
  color: var(--foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

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

.testimonial-author {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-clinic {
  font-weight: 500;
  color: var(--primary);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px hsla(0, 0%, 0%, 0.1);
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  background-color: var(--secondary);
}

.testimonial-nav.prev {
  left: 0;
  transform: translateY(-50%) translateX(-1rem);
}

@media (min-width: 768px) {
  .testimonial-nav.prev {
    transform: translateY(-50%) translateX(-3rem);
  }
}

.testimonial-nav.next {
  right: 0;
  transform: translateY(-50%) translateX(1rem);
}

@media (min-width: 768px) {
  .testimonial-nav.next {
    transform: translateY(-50%) translateX(3rem);
  }
}

.testimonial-nav svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--foreground);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot:hover {
  background-color: var(--muted-foreground);
}

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

/* Case Submission */
.case-submission {
  background-color: var(--background);
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .case-submission {
    padding: 4rem 1.5rem;
  }
}

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

.case-submission-header h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.case-submission-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.case-submission-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.case-method {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid hsla(200, 15%, 90%, 0.5);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.case-method:hover {
  box-shadow: var(--shadow-elegant);
  border-color: hsla(175, 65%, 45%, 0.2);
  transform: translateY(-0.25rem);
}

.case-method-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.case-method:hover .case-method-icon {
  border-color: var(--primary);
  background-color: var(--accent);
}

.case-method-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.case-method h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.case-method p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.case-method a {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.case-method a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact {
  background-color: hsla(200, 10%, 96%, 0.3);
}

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

.contact-header h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.contact-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

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

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

.contact-form-container {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid hsla(200, 15%, 90%, 0.5);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: none;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 1.25rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-info-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-weight: 500;
  color: var(--foreground);
  white-space: pre-line;
  transition: color 0.3s ease;
}

a.contact-info-value:hover {
  color: var(--primary);
}

.contact-whatsapp {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #25D366;
  color: white;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.contact-whatsapp:hover {
  background-color: #22c55e;
}

.contact-whatsapp-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsla(0, 0%, 100%, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact-whatsapp-text {
  font-weight: 500;
  font-size: 1.125rem;
}

.contact-whatsapp-number {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--primary-foreground);
  padding: 3rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

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

.footer-logo img {
  height: 3rem;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-slogan {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
  font-style: italic;
}

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

@media (min-width: 768px) {
  .footer-contact {
    text-align: right;
  }
}

.footer-contact p {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}

.footer-contact .address {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.6);
  margin-top: 0.25rem;
}

.footer-contact .company {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.5);
  margin-top: 0.25rem;
}

.footer-contact .copyright {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.5);
  margin-top: 0.75rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.3);
  z-index: 40;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #22c55e;
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: white;
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Form Status Messages */
.form-status {
  margin-top: 1rem;
  padding: 0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
}

.form-status.success {
  padding: 1rem;
  background-color: hsl(142, 70%, 95%);
  color: hsl(142, 70%, 30%);
  border: 1px solid hsl(142, 70%, 80%);
}

.form-status.error {
  padding: 1rem;
  background-color: hsl(0, 70%, 95%);
  color: hsl(0, 70%, 35%);
  border: 1px solid hsl(0, 70%, 80%);
}

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