:root {
  /* Brand Colors */
  --brand-primary: #00a7b3;
  --brand-primary-dark: #004d5b;
  --brand-primary-light: #5eead4;
  
  /* Color System */
  --primary-50: #f0fdfa;
  --primary-100: #ccfbf1;
  --primary-200: #99f6e4;
  --primary-300: var(--brand-primary-light);
  --primary-400: #2dd4bf;
  --primary-500: var(--brand-primary);
  --primary-600: var(--brand-primary-dark);
  --primary-700: #0f766e;
  --primary-800: #115e59;
  --primary-900: #134e4a;
  
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;
}

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

}
 .lista-beneficios strong{
	color:#00a7b3;
}
.tratamento {
	color:rgba(0, 0, 0, 0.8);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--secondary-800);
  line-height: 1.5;
  min-width: 320px;
  min-height: 100vh;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--brand-primary-dark);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-primary-light);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-primary-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-nav {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  background: url('./img/capa.jpg') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding-top: 6rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button.primary {
  background-color: #1caf53;
  color: white;
}

.button.primary:hover {
  background-color: var(--brand-primary-dark);
  transform: scale(1.05);
}

.button.secondary {
  background-color: rgba(255, 255, 255, 0.4);
  color: white;
  backdrop-filter: blur(4px);
}

.button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: white;
  overflow: hidden;
}

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

.about-text {
  flex: 1;
}

.about h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary-800);
  margin-bottom: 2rem;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-description p {
  color: var(--secondary-600);
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
}

.image-blur {
  position: absolute;
  inset: 0;
  background-color: var(--primary-200);
  opacity: 0.2;
  border-radius: 1rem;
  transform: rotate(-6deg);
  filter: blur(64px);
}

.about-image img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--secondary-50);
}

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

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

.section-header p {
  color: var(--secondary-600);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--brand-primary-light), var(--brand-primary));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(17, 12, 46, 0.25) 0px 48px 100px 0px;
}

.service-card:hover::before {
  opacity: 1;
}

.service-image {
  height: 12rem;
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
  opacity: 0.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.15);
}

.service-content {
  padding: 1.75rem;
  position: relative;
  background: white;
  transition: transform 0.3s ease;
}

.service-card:hover .service-content {
  transform: translateY(-4px);
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-800);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--brand-primary);
}

.service-content p {
  color: var(--secondary-600);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-primary);
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-50);
  border-radius: 0.75rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-icon .map-icon,
.contact-icon .phone-icon,
.contact-icon .email-icon {
  transform: scale(1.2);
}

.contact-card:hover .contact-icon {
  background-color: var(--brand-primary-light);
  transform: scale(1.05);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-800);
  margin-bottom: 1rem;
}

.contact-card a,
.contact-card p {
  color: var(--secondary-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--brand-primary);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #25D366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -0.5rem;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.3;
  z-index: -1;
  animation: ripple 1.5s infinite;
}

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

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
  margin: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s ease;
}

/* Footer */
footer {
  background-color: var(--brand-primary-dark);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

footer p {
  opacity: 0.9;
}

/* Icons */
.map-icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%230d9488' d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.phone-icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230d9488' d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.email-icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230d9488' d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-50);
  border-radius: 0.75rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-icon .map-icon,
.contact-icon .phone-icon,
.contact-icon .email-icon {
  transform: scale(1.2);
}

.contact-card:hover .contact-icon {
  background-color: var(--brand-primary-light);
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mobile-nav.active {
    max-height: 200px;
    margin-top: 1rem;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
  }

  .mobile-nav .nav-link {
    display: block;
    padding: 0.75rem 0;
  }

  .about-content {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

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

  .button {
    width: 100%;
    justify-content: center;
  }

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

  .section-header h2 {
    font-size: 1.875rem;
  }
}