:root {
  --primary-color: #ff69b4;
  --secondary-color: #ffb6c1;
  --accent-color: #ff1493;
  --text-color: #333;
  --light-bg: #fff0f5;
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #ff69b4, #ffb6c1);
  --gradient-2: linear-gradient(45deg, #ff1493, #ff69b4);
  --shadow: 0 10px 30px rgba(255, 20, 147, 0.15);
  --border-radius: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
  width: 100%;
}

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

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

ul {
  list-style: none;
}

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

/* Hero Section */
.hero {
  background: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/mulher-dirigindo-kVz5ciMjq97PltVJcW4tPjq4quI7wP.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.85), rgba(255, 105, 180, 0.75), rgba(255, 182, 193, 0.65));
  z-index: 1;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
  object-fit: contain;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  font-style: italic;
  opacity: 0.95;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--gradient-2);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Sobre Section */
.sobre {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.sobre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--gradient-1);
  opacity: 0.1;
}

.sobre h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
}

.sobre h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 3px;
}

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

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 105, 180, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.card h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Benefícios Section - Redesenhado para melhor conversão */
.beneficios {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.beneficios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--gradient-1);
  opacity: 0.1;
}

.beneficios h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  position: relative;
  font-weight: 700;
}

.beneficios-subtitle {
  text-align: center;
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 4rem;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.beneficio-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 105, 180, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.beneficio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
}

/* Ajuste para centralizar os emojis nos benefícios */
.beneficio-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  text-align: center;
  transition: var(--transition);
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.1);
  background: var(--gradient-1);
  color: var(--white);
}

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

.beneficio-content h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.beneficio-content p {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.8;
}

.beneficio-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.beneficio-list li {
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.beneficio-list li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
}

.beneficios-cta {
  text-align: center;
  margin-top: 3rem;
  background: rgba(255, 105, 180, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 105, 180, 0.1);
}

.beneficios-cta p {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Diferenciais Section - Modificado para 3 colunas */
.diferenciais {
  padding: 100px 0;
  background: var(--gradient-1);
  position: relative;
}

.diferenciais h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.diferencial-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.diferencial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Ajuste para centralizar os emojis nos diferenciais */
.diferencial-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

.diferencial-item h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Contato Section */
.contato {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.contato h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  position: relative;
}

.contato h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 3px;
}

.contato-subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

/* Preço Container */
.preco-container {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(255, 182, 193, 0.1));
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preco-original {
  text-decoration: line-through;
  color: #666;
  font-size: 1.3rem;
  opacity: 0.8;
}

.preco-atual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preco-atual span:first-child {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.parcelamento {
  font-size: 1.3rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-container::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Depoimentos Section */
.depoimentos {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
}

.depoimentos h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
}

.depoimentos h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 3px;
}

.depoimentos-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.depoimentos-track {
  display: flex;
  transition: transform 0.5s ease;
}

.depoimento-item {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: 0;
}

.depoimento-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
}

.depoimento-video {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.depoimento-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.depoimento-info {
  padding: 1.5rem;
}

.depoimento-info h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.depoimento-info p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  font-size: 1.1rem;
}

.depoimento-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.slider-prev,
.slider-next {
  background: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-size: 1.2rem;
  color: var(--accent-color);
  transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--accent-color);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary-color);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* Sobre Édio Section */
.sobre-edio {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.sobre-edio h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
}

.sobre-edio h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 3px;
}

.sobre-edio-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-edio-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.sobre-edio-destaques {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.destaque-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 15px;
  transition: var(--transition);
}

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

.destaque-item .numero {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.destaque-item .texto {
  font-size: 1rem;
  color: var(--text-color);
}

.sobre-edio-imagem {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.sobre-edio-imagem img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.faq h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
}

.faq h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 3px;
}

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

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 20, 147, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-bg);
  user-select: none;
}

.faq-question h3 {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--white);
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

/* Oferta Especial */
.oferta-especial {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(255, 105, 180, 0.1);
}

.oferta-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.oferta-tag {
  display: inline-block;
  background: var(--gradient-2);
  color: var(--white);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.oferta-header h3 {
  color: var(--accent-color);
  font-size: 2rem;
  margin: 0;
}

.oferta-conteudo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.oferta-itens {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-right: 0;
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
  padding-bottom: 2rem;
}

.oferta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.oferta-item .check {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.preco-bonus {
  margin-top: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  background: var(--white);
  border-radius: 50px;
  display: inline-block;
}

.garantia {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.garantia img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  object-fit: contain;
}

.garantia p {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Ajuste para centralizar o botão no mobile */
.oferta-especial .cta-button {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--gradient-2);
  color: var(--white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo-img {
  width: 120px;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-disclaimer {
  font-size: 0.7rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.footer-disclaimer p {
  margin-bottom: 0.5rem;
}

.footer .pagamento {
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 1rem;
  opacity: 0.9;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.whatsapp-button span {
  font-size: 0.95rem;
  line-height: 1;
}

/* Notificações de Compra */
.notificacoes-container {
  position: fixed;
  left: 20px;
  bottom: 100px;
  z-index: 99999;
  width: 300px;
  pointer-events: none;
}

.notificacao-item {
  background: rgba(255, 255, 255, 0.98);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: auto;
  position: relative;
  display: block;
  border: 1px solid rgba(255, 105, 180, 0.2);
}

.notificacao-item.show {
  transform: translateX(0);
  opacity: 1;
}

.notificacao-content {
  position: relative;
  padding-left: 10px;
}

.notificacao-content p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.notificacao-content::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 3px;
}

.som-alerta {
  font-size: 12px !important;
  color: var(--white);
  margin: 0.2rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(5px);
  animation: pulse 2s infinite;
  line-height: 1.2;
}

/* Garantia Badge */
.garantia-badge {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--white);
  padding: 0.8rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}

.garantia-badge img {
  width: 40px;
  height: auto;
}

.garantia-badge p {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
  white-space: nowrap;
}

/* Animações */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

/* Media Queries */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 3rem;
  }

  .sobre-edio-content {
    grid-template-columns: 1fr 1fr;
  }

  .oferta-conteudo {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .oferta-itens {
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 105, 180, 0.1);
    border-bottom: none;
    padding-bottom: 0;
  }

  .oferta-especial .cta-button {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }

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

  .hero h2 {
    font-size: 1.3rem;
  }

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

  .hero-content {
    padding: 1.5rem;
  }

  .hero-logo {
    width: 120px;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .sobre h2,
  .beneficios h2,
  .sobre-edio h2,
  .diferenciais h2,
  .depoimentos h2,
  .contato h2,
  .faq h2 {
    font-size: 2rem;
  }

  .card,
  .beneficio-card {
    padding: 1.5rem;
  }

  .oferta-especial {
    padding: 1.5rem;
  }

  .oferta-header h3 {
    font-size: 1.5rem;
  }

  .preco-atual span:first-child {
    font-size: 2.5rem;
  }

  .parcelamento {
    font-size: 1rem;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
  }

  .garantia-badge {
    bottom: 80px;
    right: 20px;
  }

  .notificacoes-container {
    width: 250px;
    left: 10px;
    bottom: 80px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .beneficio-icon {
    font-size: 3rem;
    padding: 1.2rem;
    width: 80px;
    height: 80px;
    line-height: 55px;
  }

  /* Desativar apenas a animação da foto do Édio no mobile */
  .sobre-edio-imagem[data-aos-mobile="false"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Ajustes para a seção de depoimentos no mobile */
  .depoimentos-track {
    width: 100%;
    flex-wrap: nowrap;
  }

  .depoimento-item {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 1.2rem;
  }

  .sobre-edio-destaques {
    grid-template-columns: repeat(2, 1fr);
  }

  .destaque-item {
    padding: 1rem;
  }

  .destaque-item .numero {
    font-size: 1.8rem;
  }

  .oferta-item {
    font-size: 0.9rem;
  }

  .garantia-badge {
    display: none;
  }

  .beneficio-icon {
    font-size: 2.5rem;
    padding: 1rem;
    width: 70px;
    height: 70px;
    line-height: 50px;
  }
}

/* Media queries para responsividade */
@media (max-width: 767px) {
  /* Desativar apenas a animação da foto do Édio no mobile */
  .sobre-edio-imagem[data-aos-mobile="false"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .beneficio-card {
    padding: 1.5rem;
  }

  .beneficio-content h3 {
    font-size: 1.3rem;
  }

  .beneficios-cta {
    padding: 1.5rem;
  }

  .beneficios-cta p {
    font-size: 1.1rem;
  }

  .cta-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }

  .depoimento-item {
    padding: 0;
  }

  .depoimento-info h3 {
    font-size: 1.3rem;
  }

  .depoimento-info p {
    font-size: 1rem;
  }
}

/* Remover regras conflitantes para o slider no mobile */
@media (max-width: 767px) {
  .depoimentos-track {
    width: 100% !important; /* Sobrescrever qualquer largura definida pelo JS */
    flex-wrap: nowrap;
  }

  .depoimento-item {
    flex: 0 0 100% !important; /* Sobrescrever qualquer largura definida pelo JS */
    width: 100% !important;
    min-width: 100% !important;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .hero p,
  .som-alerta {
    color: #000000;
    text-shadow: none;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
}

