/* GLOBAL STYLES */
:root {
  --primary-color: #d953e0;
  --secondary-color: #6647c4;
  --text-light: #ffffff;
  --text-dark: #333333;
  --gradient-start: #1d0938;
  --gradient-middle: #441367;
  --gradient-end: #2c1844;
  --card-bg: rgba(20, 10, 30, 0.5);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--gradient-start);
  overflow-x: hidden;
  font-size: 16px;
}

/* BACKGROUND GRADIENT */
.purple-gradient {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
  background-attachment: fixed;
}

.container {
  width: 92%;
  margin: 0 auto;
  padding: 1rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

/* HEADER STYLES - MOBILE FIRST */
header {
  padding: 0.8rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(29, 9, 56, 0.9);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo-header {
  max-width: 100px;
}

.logo-img {
  max-width: 100%;
  height: auto;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-light);
  transition: var(--transition);
}

.menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* NAVIGATION MENU */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--gradient-start);
  transition: var(--transition);
  padding: 5rem 1.5rem 1.5rem;
  z-index: 1000;
}

.main-nav.active {
  right: 0;
}

.main-nav ul {
  list-style: none;
}

.main-nav li {
  margin-bottom: 1.5rem;
}

.nav-link {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

.contact-nav {
  background-color: var(--primary-color);
  text-align: center;
  padding: 0.8rem;
  border-radius: 50px;
  margin-top: 1rem;
}

.contact-nav:hover {
  background-color: #c742ce;
  color: white;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 2rem;
}

.logo-hero {
  margin-bottom: 2rem;
}

.logo-main {
  max-width: 280px;
  width: 100%;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.btn-primary, .btn-secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* SECTION LABEL */
.section-label {
  text-align: center;
  margin: 2rem 0 1rem;
}

.section-label span {
  display: inline-block;
  padding: 0.3rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
}

/* ABOUT SECTION */
.abordagem {
  padding: 2rem 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-content {
  order: 2;
}

.about-visuals {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.about-logo, .about-image, .crystals-img {
  flex: 1 1 100%;
  margin-bottom: 1rem;
  text-align: center;
}

.about-logo-img, .meditation-img, .crystal-img {
  max-width: 200px;
  border-radius: 10px;
}

.energy-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* APPROACH CARDS */
.cards-abordagem {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.approach-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.approach-icon {
  width: 50px;
  height: 50px;
}

.approach-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.3rem;
}

/* SERVICES SECTION */
.servicos {
  padding: 2rem 0;
}

.section-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.service-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon-img {
  width: 50px;
  height: 50px;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.3rem;
}

.service-price {
  margin-top: 1.5rem;
  font-weight: 700;
}

.service-price span {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.service-price small {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* TESTIMONIALS SECTION */
.depoimentos {
  padding: 2rem 0;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
}

.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* CONTACT SECTION */
.contato {
  padding: 2rem 0;
  text-align: center;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #25D366;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 2rem;
  transition: var(--transition);
  width: 100%;
  max-width: 300px;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* FOOTER */
footer {
  padding: 2rem 0;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icon img {
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}

.social-icon:hover img {
  opacity: 0.8;
}

.footer-logo {
  margin-top: 1.5rem;
}

/* MEDIA QUERIES FOR RESPONSIVE DESIGN */
/* Tablet (768px and up) */
@media (min-width: 768px) {
  .container {
    width: 90%;
    max-width: 1100px;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  /* Navigation improvements */
  .menu-toggle {
    display: none;
  }
  
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
  }
  
  .main-nav ul {
    display: flex;
    gap: 1rem;
  }
  
  .main-nav li {
    margin-bottom: 0;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
  }
  
  .contact-nav {
    margin-top: 0;
  }
  
  /* Hero improvements */
  .logo-main {
    max-width: 350px;
  }
  
  .hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
  
  .btn-primary, .btn-secondary {
    width: auto;
    padding: 0.8rem 2rem;
  }
  
  /* About section grid */
  .about-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .about-content {
    flex: 1 1 100%;
    order: 1;
  }
  
  .about-visuals {
    flex: 1 1 100%;
    order: 2;
    justify-content: space-around;
  }
  
  .about-logo, .about-image, .crystals-img {
    flex: 0 1 30%;
  }
  
  /* Card layouts */
  .cards-abordagem,
  .service-cards,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
  .container {
    padding: 2rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  /* About section */
  .about-grid {
    margin-bottom: 4rem;
  }
  
  .about-content {
    flex: 0 1 50%;
    order: 2;
  }
  
  .about-visuals {
    flex: 0 1 45%;
    order: 1;
  }
  
  /* Card layouts */
  .cards-abordagem,
  .service-cards,
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .approach-card,
  .service-card,
  .testimonial-card {
    padding: 2rem;
  }
}
