:root {
  --primary-color: #6b4c8c;
  --secondary-color: #48b5c4;
  --background-color: #e6f7f9;
  --accent-color: #ff69b4;
  --text-color: #333;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.lotus-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, var(--secondary-color) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, var(--primary-color) 0%, transparent 60%);
  opacity: 0.1;
  z-index: -1;
}

header {
  background-color: white;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.menu-toggle {
  display: none;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9));
}

.hero-content h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

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

.btn:hover {
  transform: translateY(-2px);
}

.about {
  padding: 6rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.achievements {
  list-style: none;
  margin-top: 2rem;
}

.achievements li {
  margin: 1rem 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat .number {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: bold;
  display: block;
}

.services {
  padding: 6rem 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.features li {
  margin: 0.8rem 0;
}

.testimonials {
  background: white;
  padding: 6rem 0;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonial {
  flex: 0 0 100%;
  padding: 2rem;
  text-align: center;
  animation: slide 15s infinite;
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

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

@keyframes slide {
  0%, 33% { transform: translateX(0); }
  34%, 66% { transform: translateX(-100%); }
  67%, 100% { transform: translateX(-200%); }
}

footer {
  background: white;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 4rem 2rem;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 101;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
  }

  .hero {
    min-height: 60vh;
    padding: 2rem 1rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto;
  }

  .about {
    padding: 4rem 1.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
  }

  .about h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
  }

  .about-text {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  .achievements {
    margin: 0;
    padding-left: 1.5rem;
  }

  .achievements li {
    position: relative;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
  }

  .achievements li::before {
    content: "💆🏻‍♀️";
    position: absolute;
    left: -1.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .stat {
    padding: 1rem;
    border-bottom: 2px solid var(--background-color);
    transition: transform 0.3s ease;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat:hover {
    transform: translateX(10px);
  }

  .stat .number {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }

  .stat .label {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
  }

  .services {
    padding: 3rem 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 1rem;
  }

  .service-card {
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
  }

  .service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
  }

  .service-card .features {
    text-align: left;
    padding-left: 1rem;
  }

  .service-card .features li {
    position: relative;
    padding-left: 1.5rem;
  }

  .service-card .features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
  }

  .service-card .price {
    text-align: right;
    color: var(--primary-color);
    font-weight: bold;
    font-style: italic;
  }

  .testimonials {
    padding: 3rem 0;
  }

  .testimonial {
    padding: 1rem;
  }

  .testimonial p {
    font-size: 1rem;
  }
}

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

  .nav-links {
    display: flex !important;
    position: static;
    padding: 0;
    background: none;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.75rem;
  }

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

  .achievements {
    text-align: left;
    margin-left: 2rem;
  }

  footer {
    padding: 1rem;
  }

  .disclaimer {
    font-size: 0.8rem;
  }
}

.btnReservar {
  text-decoration: none;
  color: white;
}