:root {
  --color-primary: #3D4C35;
  --primary-color-rgb: 61, 76, 53;
  --color-secondary: #EFECE8;
  --color-accent: #61C0BF;
  --color-background: #FFFFFF;
  --color-text: #3D4C35;
  --color-button: #3D4C35;
  --color-button-hover: #2b3824;
  --color-footer: #3d4c35;
  --color-gold: #d7bc7a;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Montserrat Alternates', sans-serif;
  --font-size-base: 18px;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --transition-fast: all 0.3s ease;
  --transition-medium: all 0.5s ease;
  --transition-slow: all 0.8s ease;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-secondary);
  color: var(--color-text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section {
  padding: 60px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
  color: var(--color-primary);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-primary);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 10px auto 50px;
  color: #666;
}

/* Header & Navigation */
.header {
  background-color: var(--color-secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  padding: 8px 0;
  background-color: var(--color-secondary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.header.nav-hidden {
  transform: translateY(-110%);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.logo-container {
  position: relative;
  z-index: 2;
}

.logo-container img {
  height: 50px;
  transition: var(--transition-fast);
}

.scrolled .logo-container img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  padding: 5px 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 6px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  width: 100%;
  max-width: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(var(--primary-color-rgb), 0.8), rgba(var(--primary-color-rgb), 1.0));
}

.hero-content-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
  color: #fff;
  width: 100%;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 20px;
}

.profile-image {
  max-width: 85%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 5px solid rgba(255,255,255,0.3);
  margin: 0 auto;
  display: block;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .button {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 0.95rem;
  }

  .product-hero-section {
    padding-top: 80px;
  }

  .product-hero-content {
    flex-direction: column;
  }

  .product-hero-visual {
    margin-top: 40px;
  }
}

.button-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(61, 76, 53, 0.25);
}

.button-primary:hover {
  background-color: var(--color-button-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(61, 76, 53, 0.35);
}

.button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}

.button:hover::after {
  left: 100%;
}

.button-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.button-secondary:hover {
  background-color: #fff;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.button-accent {
  background-color: var(--color-accent);
  color: #fff;
}

.button-accent:hover {
  background-color: #4ba8a7;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.button-gold {
  background: linear-gradient(45deg, #d7bc7a, #e9d4a3);
  color: var(--color-primary);
}

.button-gold:hover {
  background: linear-gradient(45deg, #e9d4a3, #d7bc7a);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
}

/* Cards */
.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition-fast);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.card-title {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Features */
.features {
  background-color: #fff;
}

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

.feature-item {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.feature-item:hover .feature-icon {
  background-color: var(--color-primary);
  color: #fff;
  transform: rotateY(180deg);
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  transition: var(--transition-medium);
  width: 100%;
}

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

/* Tratamentos com Antes/Depois */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.treatment-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

.treatment-description {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
}

.treatment-card .before-after-container {
  width: 100%;
  max-width: 100%;
  margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }
  
  .treatment-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Novos estilos para seção de tratamentos modernos */
.treatments-container {
  position: relative;
  padding: 10px 5px 40px;
  overflow: hidden;
}

/* Tratamentos */
.treatments-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px auto;
  padding: 0 20px;
  position: relative;
  max-width: 1200px;
}

/* Dots para navegação em mobile */
.mobile-dots {
  display: none; /* Ocultado por padrão */
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(61, 76, 53, 0.3);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #1f4d39; /* Verde escuro do site */
  transform: scale(1.3);
}

/* Seção de Depoimentos */
.testimonials-section {
  background-color: #f8f7f5;
  padding: 60px 0;
  width: 100%;
  overflow-x: hidden;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-size: 2rem;
  position: relative;
}

.testimonials-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 15px auto 0;
}

.testimonials-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 25px;
  justify-content: center;
  scroll-padding-left: 0;
}

.testimonial-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 25px;
  text-align: center;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 15px;
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--color-primary);
  margin-bottom: 5px;
}

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

.testimonial-author {
  text-align: center;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  color: var(--color-primary);
}

.testimonial-status {
  font-size: 0.8rem;
  color: #777;
  margin: 2px 0 0;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: var(--color-gold);
  margin-top: 5px;
  font-size: 0.9rem;
}

.testimonial-content {
  padding: 5px 0;
  font-style: italic;
  line-height: 1.5;
  color: #555;
  font-size: 0.95rem;
  position: relative;
}

.testimonial-content p {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-content:before,
.testimonial-content:after {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 0;
  display: inline-block;
  vertical-align: 6px;
  margin-right: 5px;
}

.testimonial-content:after {
  content: '\201D';
  margin-right: 0;
  margin-left: 5px;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(61, 76, 53, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 4px;
}

.dot.active {
  background-color: #1f4d39; /* Verde escuro do site */
  transform: scale(1.3);
}

@media (max-width: 767px) {
  /* Os estilos abaixo são substituídos pela declaração mais completa logo em seguida */
  
  .treatments-cards-container,
  .testimonials-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-padding: 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    padding-left: 5vw; /* 10% da largura da tela de cada lado */
    padding-right: 5vw; /* 10% da largura da tela de cada lado */
    margin: 30px -20px 20px -35px;
    gap: 20px;
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none; /* Para IE/Edge */
    scroll-behavior: smooth;
    box-sizing: content-box;
    width: calc(100% + 40px);
    position: relative;
  }
  
  /* Elemento fantasma para permitir o scroll completo do último card */
  .treatments-cards-container::after,
  .testimonials-container::after {
    content: '';
    flex: 0 0 15vw;
    min-width: 15vw;
    height: 1px;
    display: block;
    padding-right: 10vw;
  }
  
  .treatments-cards-container::-webkit-scrollbar,
  .testimonials-container::-webkit-scrollbar {
    display: none; /* Para Chrome/Safari */
  }
  
  .treatment-modern-card,
  .testimonial-card {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    margin-bottom: 0;
    width: 80vw;
    min-width: 280px;
    max-width: 500px;
    box-sizing: border-box;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .treatment-modern-card:first-child,
  .testimonial-card:first-child {
    margin-left: 10vw;
  }
  
  .testimonial-card {
    text-align: center;
    padding: 25px;
  }
  
  .treatment-modern-card {
    padding: 25px;
  }
  

  
  .mobile-dots,
  .testimonial-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
  }
}

.treatment-modern-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.treatment-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.treatment-modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.treatment-modern-card:hover::before {
  transform: scaleX(1);
}

.treatment-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.treatment-modern-card:hover .treatment-icon {
  transform: scale(1.1);
}

.treatment-icon i {
  font-size: 28px;
  color: white;
}

.treatment-modern-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color-dark);
  margin: 0 0 15px;
}

.treatment-modern-line {
  width: 40px;
  height: 3px;
  background: var(--color-gold);
  margin: 0 auto 20px;
}

.treatment-modern-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 25px;
  flex-grow: 1;
}

.treatment-modern-button {
  display: inline-block;
  padding: 10px 24px;
  background: var(--color-primary);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.treatment-modern-button:hover {
  transform: translateY(-3px);
  background: var(--color-gold);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .treatments-modern-grid {
    grid-template-columns: 1fr;
  }
  
  .treatment-modern-card {
    max-width: 100%;
  }
}

/* Removendo os estilos duplicados */

/* Estilos da página de vendas Slim Shape */
.product-hero {
  position: relative;
  padding: 80px 0 180px;
  background-color: var(--color-primary-dark);
  overflow: visible;
}

/* Elementos decorativos para tornar o design mais premium */
.design-element-wave {
  position: absolute;
  width: 150px;
  height: 150px;
  background: url('../assets/wave-pattern.svg') center/contain no-repeat;
  opacity: 0.05;
  z-index: 1;
}

/* Tag exclusivo com melhor legibilidade */
.product-exclusive-tag {
  display: inline-block;
  background-color: var(--color-gold);
  color: #000;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-weight: 800; /* Extra bold para melhor visibilidade */
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25); /* Sombra mais pronunciada */
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.design-element-wave.top-right {
  top: 50px;
  right: 50px;
  transform: rotate(15deg);
}

.design-element-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 3px);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: 1;
}

.design-element-dots.bottom-left {
  bottom: 80px;
  left: 50px;
}

@media (min-width: 768px) {
  .product-hero {
    padding: 100px 0 120px;
    overflow: hidden;
  }
  
  .product-visual-card {
    max-width: none;
  }
}

.product-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
  z-index: -1;
}

.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 76, 53, 0.9) 0%, rgba(61, 76, 53, 0.8) 100%);
  z-index: 0;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .product-hero-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }

  .product-hero-text {
    flex: 1;
    padding-right: 30px;
    margin-bottom: 0;
  }

  .product-hero-visual {
    margin-bottom: 0;
    width: 45%;
  }
}

.product-hero-text {
  flex: 1;
  padding: 0 20px;
  margin-bottom: 40px;
}

.product-badge {
  display: inline-block;
  background-color: var(--color-gold);
  color: #000;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .product-hero-title {
    font-size: 3.5rem;
  }
  
  .product-highlight-item {
    margin-right: 20px;
  }
}

.product-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-highlights {
  margin-bottom: 30px;
}

.product-highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 15px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.product-highlight-item i {
  color: var(--color-gold);
  margin-right: 15px;
  font-size: 20px;
  flex-shrink: 0;
}

.product-highlight-item span {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}

.product-hero-cta {
  margin-top: 30px;
}

.product-hero-cta .button {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .product-hero-cta .button {
    width: auto;
    margin-right: 20px;
  }
}

.button-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.product-hero-guarantee {
  display: flex;
  align-items: center;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.product-hero-guarantee i {
  color: var(--color-gold);
  margin-right: 10px;
}

/* Section headers */
.section-header {
  margin-bottom: 50px;
}

.section-header.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.section-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-icon i {
  font-size: 28px;
  color: white;
}

.section-title {
  margin-bottom: 15px;
}

.highlight-text {
  color: var(--color-gold);
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--color-gold);
  margin: 15px auto 25px;
}

.section-description {
  font-size: 1rem;
  max-width: 90%;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #666;
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1.1rem;
    max-width: 80%;
  }
}

/* Problem Solution Section */
.bg-pattern {
  background-color: #f8f7f5;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233d4c35' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.problem-solution-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0;
  gap: 20px;
}

.problem-box, .solution-box {
  width: 100%;
  max-width: 450px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-box {
  border-top: 4px solid #e74c3c;
}

.solution-box {
  border-top: 4px solid #2ecc71;
}

.problem-header, .solution-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.problem-header i {
  color: #e74c3c;
  font-size: 1.8rem;
  margin-right: 15px;
  filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.2));
}

.solution-header i {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-right: 15px;
  filter: drop-shadow(0 2px 4px rgba(46, 204, 113, 0.2));
}

.problem-header h3, .solution-header h3 {
  font-size: 1.4rem;
  margin: 0;
}

.vs-circle {
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

@media (min-width: 768px) {
  .vs-circle {
    margin: 0;
  }
}

.problem-list, .solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li, .solution-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.problem-list li::before {
  content: "\f057";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e74c3c;
  position: absolute;
  left: 0;
  top: 2px;
}

.solution-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 2px;
}

.action-wrapper {
  margin: 30px 0 20px;
  text-align: center;
}

.action-wrapper.centered {
  text-align: center;
}

/* Product Showcase */
.product-showcase {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

.product-image-wrapper {
  flex: 1;
  position: relative;
  min-width: 300px;
  max-width: 400px;
  margin: 0 auto;
}

.product-main-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
}

.product-badge-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product-details {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.product-details-title {
  font-size: 1.6rem;
  color: var(--text-color-dark);
  margin-bottom: 20px;
}

.product-details-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-color);
}

.product-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .product-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.product-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  text-align: center;
  padding: 25px 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  height: 100%;
}

@media (min-width: 992px) {
  .product-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .feature-text {
    margin-top: 15px;
  }
}

.feature-icon {
  width: 65px;
  height: 65px;
  background-color: rgba(var(--primary-color-rgb), 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px 0;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(61, 76, 53, 0.12);
  border: 1px solid rgba(61, 76, 53, 0.08);
}

.feature-icon i {
  font-size: 28px;
  color: var(--color-primary);
}

.feature-text h4 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: var(--text-color-dark);
}

.feature-text p {
  margin: 0;
  color: var(--text-color);
}

.product-highlight-box {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.product-highlight-box i {
  font-size: 24px;
  color: var(--color-gold);
  margin-right: 15px;
}

.product-highlight-box p {
  margin: 0;
  font-weight: 600;
  color: var(--text-color-dark);
}

.product-cta {
  margin-top: 30px;
}

.stock-warning {
  display: flex;
  align-items: center;
  margin-top: 15px;
  color: #e74c3c;
}

.stock-warning i {
  margin-right: 10px;
}

/* Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Estilo para os containers de cards (carrossel) */
.benefits-cards-container, .stories-cards-container, .detox-benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-bottom: 1rem;
}

.benefit-card, .story-card, .detox-benefit-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Linha decorativa nos cards */
.benefit-line, .story-line {
  height: 2px;
  width: 50px;
  background-color: var(--primary-color);
  margin: 12px auto;
}

/* Navegação dos carrosséis */
.benefits-navigation, .stories-navigation, .detox-navigation {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.benefits-navigation .dot, .stories-navigation .dot, .detox-navigation .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.benefits-navigation .dot.active, .stories-navigation .dot.active, .detox-navigation .dot.active {
  background-color: #1f4d39; /* Verde escuro do site */
  transform: scale(1.3);
}

.benefits-section {
  background-color: #fff;
}

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

.benefit-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 5px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit-card::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(215, 188, 122, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-icon {
  width: 75px;
  height: 75px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(61, 76, 53, 0.25);
  position: relative;
  z-index: 1;
}

.benefit-icon i {
  font-size: 28px;
  color: white;
}

.benefit-title {
  font-size: 1.2rem;
  color: var(--text-color-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.benefit-note {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-color-dark);
  text-align: center;
}

.benefits-testimonial {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: rgba(var(--primary-color-rgb), 0.05);
  border-radius: 15px;
  position: relative;
}

.testimonial-quote {
  position: relative;
  padding-left: 40px;
}

.testimonial-quote i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: var(--color-gold);
}

.testimonial-quote p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  display: block;
  text-align: right;
  font-weight: 600;
  color: var(--text-color-dark);
}

/* Composição Section */
.composition-section {
  background-color: #f8f7f5;
}

.composition-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0;
}

.composition-image {
  flex: 1;
  position: relative;
  min-width: 300px;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ingredients-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
}

/* Novo selo Certificado ANVISA com design moderno e impactante */
.composition-seal {
  position: absolute;
  top: 20px;
  right: -10px;
  background: rgba(46, 58, 41, 0.95);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: visible;
  z-index: 5;
  border-left: 5px solid var(--color-gold);
  transform: rotate(0deg);
  max-width: 220px;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.composition-seal i {
  color: var(--color-gold);
  font-size: 2.2rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  align-self: center;
}

.seal-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.seal-text span:first-child {
  font-size: 0.9rem;
  margin-bottom: 3px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.seal-text span:last-child {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-gold);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ingredients-list {
  flex: 1;
  min-width: 300px;
  max-width: 650px;
}

.ingredients-intro {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.ingredient-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.ingredient-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ingredient-icon::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  width: 2px;
  height: calc(100% + 30px);
  background-color: rgba(var(--primary-color-rgb), 0.1);
  transform: translateX(-50%);
  z-index: 0;
}

.ingredient-item:last-child .ingredient-icon::after {
  display: none;
}

.ingredient-icon i {
  font-size: 20px;
  color: var(--color-primary);
}

.ingredient-details {
  flex: 1;
}

.ingredient-name {
  font-size: 1.15rem;
  color: var(--text-color-dark);
  margin: 0 0 10px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-tag {
  display: inline-block;
  background-color: var(--color-gold);
  color: #000;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  position: relative;
  top: -2px;
}

.ingredient-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.composition-guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.guarantee-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.guarantee-item i {
  color: var(--color-primary);
  margin-right: 8px;
}

.guarantee-item span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color-dark);
}

/* Galeria de imagens */
.gallery-section {
  background-color: #f8f7f5;
  padding: 80px 0;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  margin: 40px 0;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1 / 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: brightness(0.95);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

.gallery-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

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

/* Thumbnails de produto */
.product-image-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.product-thumb:hover {
  border-color: var(--color-gold);
}

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

/* Section specialist image */
.section-image-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.section-expert-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
}

.expert-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--color-gold);
  color: #000;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Testimonia Float */
/* Estilos para o novo endorsement da especialista */
.specialist-endorsement {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  width: 100%;
  position: relative;
  border-left: 4px solid var(--color-gold);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.specialist-endorsement:hover {
  transform: translateY(-5px);
}

.specialist-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--color-gold);
}

.specialist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist-quote {
  flex: 1;
}

.specialist-quote p {
  font-style: italic;
  font-size: 16px;
  color: var(--color-primary-dark);
  margin-bottom: 5px;
  font-weight: 500;
}

.specialist-name {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 14px;
}

.specialist-title {
  display: block;
  font-size: 12px;
  color: var(--color-text);
  margin-top: 2px;
}

/* Responsividade para o novo layout */
@media (max-width: 991px) {
  .product-visual-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .testimonial-float {
    bottom: 20px;
    left: -30px;
    transform: none;
    max-width: 250px;
    width: auto;
  }
}

.testimonial-float-image {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 12px;
}

.testimonial-float-content {
  font-size: 0.9rem;
  font-style: italic;
  color: #333;
  line-height: 1.3;
  font-weight: 500;
}

.testimonial-float-content span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 3px;
}

/* Hero partners */
.hero-partners {
  padding: 20px 0 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.partner-logo-item i {
  color: var(--color-gold);
  margin-right: 8px;
  font-size: 1.1rem;
}

.partner-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.8);
}

/* Responsividade */
@media (max-width: 992px) {
  .product-hero {
    height: auto;
    padding: 100px 0;
  }
  
  .product-hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .product-highlight-item {
    justify-content: center;
  }
  
  .product-hero-guarantee {
    justify-content: center;
  }
  
  .vs-circle {
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  /* Correção de overflow horizontal */
  html, body, div, section, header, footer, main {
    max-width: 100vw;
    overflow-x: clip;
  }
  
  main, section, .container, .row, .col {
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Ajustes específicos para o produto */
  .product-hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .product-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .product-hero-content {
    padding: 20px 0;
    width: 100%;
    flex-direction: column;
  }
  
  .product-hero-text, .product-hero-image {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }
  
  .product-hero-image img {
    margin: 0 auto;
  }
  
  .product-highlights {
    margin-bottom: 15px;
    width: 100%;
  }
  
  .product-highlight-item {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 25px;
  }
  
  .product-highlight-item i {
    font-size: 16px;
  }
  
  .product-hero-cta {
    margin-top: 15px;
    width: 100%;
  }
  
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .testimonial-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0;
  }
  
  /* Mobile carousel para benefícios */
  .benefits-cards-container, .stories-cards-container, .detox-benefits-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 10px 0;
    margin: 0 -20px;
    padding: 0 20px;
  }
  
  .benefit-card, .story-card, .detox-benefit-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin-right: 15px;
  }
  
  .benefits-navigation, .stories-navigation, .detox-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .problem-solution-wrapper {
    flex-direction: column;
    margin-top: 15px;
    width: 100%;
  }
  
  .problem-box, .solution-box {
    padding: 20px 15px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .composition-image {
    margin-bottom: 30px;
    max-width: 100%;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
  
  .section {
    padding: 40px 0;
    width: 100%;
  }
  
  /* Corrigindo possíveis elementos problemáticos */
  table, iframe, video {
    max-width: 100%;
  }
}

/* Altura maior do mapa no mobile */
.map-container {
  min-height: 250px;
}
.map-container iframe {
  min-height: 250px;
}
@media (max-width: 600px) {
  .map-container,
  .map-container iframe {
    min-height: 300px;
  }
}

@media (min-width: 992px) {
  .contact-content {
    display: flex;
    align-items: stretch;
  }
  .contact-details, .map-container {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
  }
  .map-container {
    display: flex;
    flex-direction: column;
    min-height: 500px;
  }
  .map-container iframe {
    flex: 1 1 0;
    width: 100%;
    min-height: 350px;
    height: 100%;
    display: block;
  }
}

/* Depoimentos Slim Shape */
.testimonials-section {
  background-color: #fff;
  overflow: hidden;
}

.testimonials-container {
  padding: 40px 0;
  position: relative;
}

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

.testimonials-section .container,
#tratamentos .container {
  overflow-x: visible;
  padding: 0;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 35px;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
  border-top: 4px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(215, 188, 122, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-image {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 18px;
  border: 3px solid rgba(var(--primary-color-rgb), 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

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

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: var(--text-color-dark);
  font-weight: 600;
}

.testimonial-result {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.testimonial-rating {
  color: var(--color-gold);
  font-size: 0.9rem;
}

.professional-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 5px;
}

.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-quote-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: var(--color-gold);
  opacity: 0.4;
}

.testimonial-text {
  padding-left: 30px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
}

.testimonial-before-after {
  margin: 20px 0;
  background-color: rgba(var(--primary-color-rgb), 0.05);
  padding: 15px;
  border-radius: 10px;
}

.before-after-label {
  text-align: center;
  font-weight: 600;
  color: var(--text-color-dark);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.before-after-images {
  display: flex;
  gap: 10px;
}

.before-image, .after-image {
  flex: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 150px;
}

.before-image {
  border: 2px solid #e74c3c;
}

.after-image {
  border: 2px solid var(--color-primary);
}

.testimonial-verified {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 5px;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.testimonial-verified i {
  margin-right: 8px;
}

.testimonial-verified.professional {
  background-color: rgba(var(--primary-color-rgb), 0.15);
}

.swiper-button-next, .swiper-button-prev {
  color: var(--color-primary);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.testimonials-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  background-color: rgba(var(--primary-color-rgb), 0.05);
  padding: 30px;
  border-radius: 15px;
  max-width: 900px;
  margin: 40px auto;
}

.summary-item {
  text-align: center;
  min-width: 120px;
}

.summary-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

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

/* CTA Section */
.cta-section {
  background-color: #f8f7f5;
  padding: 80px 0;
}

.cta-background {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233d4c35' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  border-radius: 20px;
}

.cta-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content {
  padding: 40px;
}

.cta-header {
  text-align: center;
  margin-bottom: 40px;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-color-dark);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.cta-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.cta-image-column {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  margin: 0 auto;
}

.product-image-large {
  position: relative;
  text-align: center;
}

.product-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.product-image-large:hover .product-img {
  transform: translateY(-10px) rotate(2deg);
}

.product-badges {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.product-badge-round {
  width: 70px;
  height: 70px;
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transform: rotate(15deg);
  line-height: 1.2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-badge-authentic {
  background-color: var(--color-gold);
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-badge-authentic i {
  margin-right: 5px;
}

.cta-offer-column {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.price-box {
  background-color: rgba(var(--primary-color-rgb), 0.05);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.old-price {
  color: var(--text-color);
  text-decoration: line-through;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.current-price {
  color: var(--text-color-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.price-highlight {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.installments {
  font-size: 1rem;
  color: var(--text-color);
}

.cta-benefits {
  margin: 25px 0;
}

.cta-benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cta-benefit-item i {
  color: var(--color-primary);
  margin-right: 10px;
  font-size: 1rem;
  margin-top: 3px;
}

.cta-benefit-item span {
  flex: 1;
  font-size: 1rem;
  color: var(--text-color);
}

.cta-buttons {
  margin: 30px 0;
}

.cta-button {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.primary-cta {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #000;
  box-shadow: 0 6px 15px rgba(var(--gold-color-rgb), 0.4);
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(var(--gold-color-rgb), 0.5);
}

.primary-cta i {
  margin-left: 8px;
}

.stock-status {
  text-align: center;
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stock-status i {
  margin-right: 8px;
}

.payment-security {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-color);
}

.security-item i {
  margin-right: 5px;
  color: var(--color-primary);
}

.cta-footer {
  margin-top: 40px;
}

.guarantee-box {
  display: flex;
  align-items: center;
  background-color: rgba(var(--primary-color-rgb), 0.05);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.guarantee-icon i {
  font-size: 30px;
  color: white;
}

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--text-color-dark);
}

.guarantee-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-color);
}

.cta-extra-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

.info-item {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 0.9rem;
}

.info-item i {
  margin-right: 8px;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .testimonial-before-after-images {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-content {
    padding: 30px 20px;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee-icon {
    margin: 0 0 15px;
  }
  
  .cta-extra-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

/* Testimonials */
.testimonials {
  background-color: var(--color-secondary);
  position: relative;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  text-align: center;
  padding: 30px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  position: absolute;
  color: rgba(61, 76, 53, 0.1);
  font-family: Georgia, serif;
}

.testimonial-text::before {
  top: -20px;
  left: -15px;
}

.testimonial-text::after {
  bottom: -40px;
  right: -15px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--color-primary);
}

.testimonial-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
.footer {
  background-color: var(--color-footer);
  color: var(--color-secondary);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-gold);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-gold);
  transform: translateY(-5px);
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    left: auto;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-secondary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: var(--transition-fast);
    z-index: 1;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .button {
    width: 100%;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.appear {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.appear {
  opacity: 1;
  transform: translateX(0);
}

/* Course-specific styles */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.course-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: #fff;
  transition: var(--transition-fast);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-details {
  padding: 25px;
}

.course-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.course-description {
  margin-bottom: 20px;
  color: #666;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.course-price {
  font-weight: bold;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.price-tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Botão fixo de compra - Mobile First */
.fixed-buy-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: transparent;
  padding: 10px;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}

.fixed-buy-button .button {
  width: 90%;
  max-width: 450px;
  padding: 15px;
  font-weight: bold;
  font-size: 0.95rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: var(--color-gold);
}

@media (min-width: 768px) {
  .fixed-buy-button {
    bottom: 20px;
    right: 20px;
    left: auto;
    width: auto;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }
  
  .fixed-buy-button .button {
    width: auto;
    padding: 12px 25px;
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-button-hover);
  transform: translateY(-5px);
}

/* Loading animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(61, 76, 53, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-primary);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: var(--transition-fast);
}

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

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.service-image {
  height: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-title {
  color: #fff;
  margin-bottom: 10px;
}

.service-description {
  color: rgba(255, 255, 255, 0.8);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-fast);
  opacity: 0;
}

.service-card:hover .service-description {
  max-height: 100px;
  margin-bottom: 15px;
  opacity: 1;
}

.service-button {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-primary);
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-fast);
}

.service-card:hover .service-button {
  opacity: 1;
  transform: translateY(0);
}

.service-button:hover {
  background-color: #fff;
}

/* Before/After comparison - implementação totalmente nova */
.before-after-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  margin: 20px auto 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.treatment-card .before-after-container {
  height: 400px; /* Altura reduzida para os cards de tratamento */
  max-width: 100%; /* Ajustar largura para o card */
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.before-image {
  z-index: 1;
  clip-path: inset(0 50% 0 0); /* Inicialmente mostra metade esquerda */
}

.after-image {
  z-index: 2;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%; /* Posição inicial no meio */
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* Z-index extremamente alto para garantir visibilidade */
  cursor: ew-resize;
}

/* Linha vertical (opcional) */
.slider-button::before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.before-label,
.after-label {
  position: absolute;
  top: 20px;
  color: #fff;
  background-color: rgba(61, 76, 53, 0.85);
  padding: 7px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.before-label {
  left: 15px;
}

.after-label {
  right: 15px;
}

/* Otimização para mobile */
@media (max-width: 768px) {
  .before-after-container {
    height: 350px;
  }
  
  .slider-button {
    width: 36px;
    height: 36px;
  }
  
  .before-label,
  .after-label {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}

@media (min-width: 768px) {
  .testimonial-navigation {
    display: none;
  }
}

@media (min-width: 768px) {
  .testimonial-dots {
    display: none;
  }
}

.quick-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  padding: 25px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.quick-benefit-item i {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.quick-benefit-item span {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.quick-benefit-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.quick-benefit-item:hover i {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
