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

/* Estilo global para links */
a, a:hover, a:focus, a:active,
.therapy-card, .therapy-card *,
.therapy-card-link, .therapy-card-link *,
.therapy-content, .therapy-content *,
.therapy-title, .therapy-description {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: 0 !important;
  text-decoration-thickness: 0 !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

.header {
  background: linear-gradient(rgba(11, 68, 28, 0.9), rgba(2, 71, 11, 0.7)), 
              url('assets/images/reiki.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.header .main-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header .divider {
  width: 80px;
  height: 2px;
  background-color: white;
  margin: 0 auto 1rem;
  opacity: 0.8;
}

.header .subtitle {
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.header p {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e8f5f4 0%, #d4e8e6 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.about-image {
  text-align: center;
  align-self: start;
}

.profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #083834;
  box-shadow: 0 15px 35px rgba(8, 56, 52, 0.2);
  display: block;
  margin: 0 auto;
}

.about-text {
  color: #083834;
}

.personal-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 30px;
}

.personal-text p {
  margin-bottom: 8px;
}

.personal-info p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.personal-info strong {
  color: #083834;
  font-weight: 600;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-description h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #083834;
  margin-bottom: 20px;
  margin-top: 0;
}

.about-description h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #083834;
  margin-bottom: 15px;
  margin-top: 25px;
}

.therapies-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  color: #083834;
  margin-bottom: 60px;
}

.therapies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card a {
    text-decoration: none !important;
}

.card-title a {
    text-decoration: none !important;
}

.therapy-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  height: 100%;
}

/* Garantir que nenhum texto dentro do link tenha sublinhado */
.therapy-card-link * {
  text-decoration: none !important;
}

.therapy-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 20px;
  height: 100%;
}

.therapy-card-link:hover {
  transform: translateY(-10px);
  text-decoration: none;
}

.therapy-card-link:hover .therapy-card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Garantir que o link não tenha sublinhado */
.therapy-card-link, 
.therapy-card-link:hover, 
.therapy-card-link:focus, 
.therapy-card-link:active,
.therapy-card-link h3,
.therapy-card-link p,
.therapy-card-link .therapy-title,
.therapy-card-link .therapy-description,
.therapy-card a,
.therapy-card a:hover,
.therapy-card a:focus,
.therapy-card a:active,
.therapy-card h3 a,
.therapy-card .therapy-title a,
.therapy-card .therapy-content *,
.therapy-card .therapy-title,
.therapy-card .therapy-description {
  text-decoration: none !important;
  color: inherit !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Remover sublinhado de links dentro do conteúdo do card */
.therapy-card .therapy-content a,
.therapy-card .therapy-content a:hover,
.therapy-card .therapy-content a:focus,
.therapy-card .therapy-content a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.therapy-card {
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeUp 700ms ease-out both;
  animation-play-state: paused;
  opacity: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform, box-shadow;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.therapy-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Efeito hover removido do card para evitar conflitos com o efeito do link */

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

/* Staggered delays for cascade effect */
.therapies-grid .therapy-card:nth-child(1) { animation-delay: 0ms; }
.therapies-grid .therapy-card:nth-child(2) { animation-delay: 100ms; }
.therapies-grid .therapy-card:nth-child(3) { animation-delay: 200ms; }
.therapies-grid .therapy-card:nth-child(4) { animation-delay: 300ms; }
.therapies-grid .therapy-card:nth-child(5) { animation-delay: 400ms; }
.therapies-grid .therapy-card:nth-child(6) { animation-delay: 500ms; }
.therapies-grid .therapy-card:nth-child(7) { animation-delay: 600ms; }

.therapy-card.in-view {
  animation-play-state: running;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .therapy-card {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.therapy-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.therapy-content {
  padding: 25px;
}

.therapy-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #083834;
  margin-bottom: 15px;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.therapy-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.contact-section {
  padding: 80px 20px;
  background-color: white;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #083834;
  margin-bottom: 40px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #25D366;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #25D366;
}

@media (max-width: 768px) {
  /* Estilos para dispositivos móveis */
  .therapy-card-link {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Efeito de toque para dispositivos móveis */
  .therapy-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .therapy-card:active {
    transform: scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  }
  
  /* Garantir que os textos nos cards não fiquem sublinhados em dispositivos móveis */
  .therapy-card-link,
  .therapy-card-link *,
  .therapy-card,
  .therapy-card *,
  .therapy-title,
  .therapy-description,
  .therapy-content,
  .therapy-content * {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background-image: none !important;
  }

  .header .main-title {
    font-size: 3rem;
  }
  
  .header .subtitle {
    font-size: 1.9rem;
  }
  
  .header p {
    font-size: 1.1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .personal-info {
    flex-direction: column;
  }
  
  .profile-image {
    width: 250px;
    height: 250px;
  }
  
  .therapies-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title, .contact-title {
    font-size: 2rem;
  }

  .card a, 
    .card-title a {
        text-decoration: none !important;
    }
}

.footer {
  background-color: #083834;
  padding: 40px 20px;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-whatsapp:hover {
  color: #25D366;
  transform: translateY(-2px);
}

.footer-whatsapp span {
  color: #a8e6cf;
  font-weight: 500;
}

.footer-whatsapp-icon {
  width: 40px;
  height: 40px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
}

.footer-whatsapp:hover .footer-whatsapp-icon {
  background-color: white;
  color: #25D366;
  transform: scale(1.1);
}

.footer-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon:hover {
  transform: translateY(-3px);
  border-color: white;
}

.social-icon.facebook:hover {
  background-color: #1877f2;
  color: white;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-icon.tiktok:hover {
  background-color: #000000;
  color: white;
}

.social-icon.youtube:hover {
  background-color: #ff0000;
  color: white;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .footer-right {
    gap: 15px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
