/* Clínica Cevida - Estilos CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

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

:root {
  --primary: #2d9596;
  --primary-dark: #247778;
  --primary-light: #e8f5f5;
  --foreground: #1f1f21;
  --background: #ffffff;
  --secondary: #f7f7f8;
  --muted: #868689;
  --card: #ffffff;
  --border: #ededee;
  --whatsapp: #25D366;
  --warm-orange: #f59e0b;
  --shadow-soft: 0 4px 20px rgba(31, 47, 51, 0.08);
  --shadow-card: 0 8px 30px rgba(31, 47, 51, 0.1);
  --shadow-elevated: 0 12px 40px rgba(31, 47, 51, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logo-text span:last-child {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav {
  display: none;
}

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

.nav a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  background-size: cover;
  background-position: top center;
}

@media (min-width: 768px) {
  .hero {
    background-position: center 20%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31, 31, 33, 0.9), rgba(31, 31, 33, 0.7), rgba(31, 31, 33, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease-out 0.1s both;
}

.hero-logo img {
  width: 8rem;
  height: 8rem;
  opacity: 0.95;
}

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

.hero-logo p {
  color: var(--primary-light);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease-out 0.3s both;
}

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

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

.hero h1 span {
  color: var(--primary-light);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeIn 0.6s ease-out 0.4s both;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.6s ease-out 0.5s both;
}

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

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: scale(1.05);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeIn 0.6s ease-out 0.6s both;
}

.hero-stat h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-light);
}

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

.hero-stat p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

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

.scroll-indicator div {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.scroll-indicator span {
  width: 6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  margin-top: 8px;
  animation: pulse 2s infinite;
}

/* Section Styles */
.section {
  padding: 4rem 1rem;
}

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

.section-secondary {
  background: var(--secondary);
}

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

.section-header span {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.service-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
}

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

.service-card:hover .service-icon svg {
  color: white;
}

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

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

.service-benefits {
  list-style: none;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(31, 31, 33, 0.8);
  margin-bottom: 0.5rem;
}

.service-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Professionals Grid */
.professionals-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.professional-card {
  background: var(--secondary);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.professional-category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.professional-category-icon {
  width: 40px;
  height: 40px;
  background: rgba(45, 149, 150, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.professional-category-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.professional-category h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.professional-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
  display: block;
}

.professional-avatar:hover {
  box-shadow: 0 0 0 4px rgba(45, 149, 150, 0.3);
}

.professional-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.professional-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.professional-info .role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
}

.professional-info .specialty {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.professional-info .description {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* How It Works */
.steps-grid {
  display: grid;
  gap: 2rem;
}

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

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

.step {
  text-align: center;
  position: relative;
}

.step-icon {
  width: 96px;
  height: 96px;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  box-shadow: var(--shadow-elevated);
}

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

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

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

.step p {
  color: var(--muted);
  line-height: 1.6;
}

/* Info Box */
.info-box {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-card);
}

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

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

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

.info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.info-box > div > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(31, 31, 33, 0.8);
  margin-bottom: 0.75rem;
}

.info-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.experience-box {
  background: var(--primary-light);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.experience-box h4 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.experience-box p:first-of-type {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.experience-box p:last-of-type {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Gallery */
.gallery-carousel {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.gallery-slide {
  flex-shrink: 0;
  width: 280px;
}

@media (min-width: 768px) {
  .gallery-slide {
    width: 350px;
  }
}

@media (min-width: 1024px) {
  .gallery-slide {
    width: 400px;
  }
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s ease;
}

.gallery-slide img:hover {
  transform: scale(1.05);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--card);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav:hover {
  background: var(--primary);
  color: white;
}

.gallery-nav.prev {
  left: 0;
}

.gallery-nav.next {
  right: 0;
}

.gallery-nav svg {
  width: 24px;
  height: 24px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

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

.testimonial-card {
  background: var(--secondary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(45, 149, 150, 0.2);
}

.testimonial-quote svg {
  width: 40px;
  height: 40px;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--warm-orange);
  color: var(--warm-orange);
}

.testimonial-content {
  color: rgba(31, 31, 33, 0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-weight: 700;
  color: var(--foreground);
}

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

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
}

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

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--primary);
}

.contact-item:hover .contact-icon svg {
  color: white;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 149, 150, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.contact-item h4 {
  font-weight: 500;
  color: var(--foreground);
}

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

.whatsapp-box {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  margin-top: 2rem;
}

.whatsapp-box h4 {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.whatsapp-box p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.whatsapp-box .btn-whatsapp {
  width: 100%;
  justify-content: center;
}

/* Form */
.contact-form {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 149, 150, 0.2);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-group .error {
  border-color: #dc2626;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.btn-submit {
  width: 100%;
  margin-top: 1.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(45, 149, 150, 0.3);
}

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

.btn-submit svg {
  width: 20px;
  height: 20px;
}

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

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

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

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

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

.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

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

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

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

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

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

/* Success Message */
.success-message {
  text-align: center;
  padding: 4rem 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(45, 149, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

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

.success-message h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.success-message button {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}
