/* ==========================================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
:root {
  --primary: #e83e8c; /* Rosa feminino */
  --secondary: #5a287d; /* Roxo complementar */
  --accent: #ff9e6d; /* Pêssego para detalhes */
  --light: #fdf5f7; /* Rosa claro para backgrounds */
  --dark: #2d1832; /* Roxo escuro para contraste */
}

/* ==========================================================================
   2. RESET E ESTILOS BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

/* ==========================================================================
   3. LAYOUT E CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

/* ==========================================================================
   4. COMPONENTES - CABEÇALHO
   ========================================================================== */
header {
  background-color: var(--dark);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo {
  max-width: 160px;
  height: auto;
  margin-right: 20px;
}

.header-timer {
  color: white;
  font-size: 1.1rem;
  margin-left: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-timer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--accent);
}

.header-timer-counter {
  display: flex;
  gap: 8px;
}

.header-timer-box {
  background-color: var(--primary);
  color: white;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  min-width: 32px;
  text-align: center;
}

/* ==========================================================================
   5. COMPONENTES - HERO BANNER
   ========================================================================== */
.hero-section {
  position: relative;
  height: 1000px;
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide-item {
  width: 100%;
  height: 100%;
  background-position: center 30%;
  background-size: cover;
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-item {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 24, 50, 0.85) 0%, rgba(232, 62, 140, 0.75) 100%);
  z-index: 2;
}

.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  opacity: 0.15;
  border-radius: 50%;
}

.hero-decoration-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: -150px;
  right: -150px;
  animation: float-slow 15s infinite alternate ease-in-out;
}

.hero-decoration-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary), transparent);
  bottom: -100px;
  left: -100px;
  animation: float-slow 12s infinite alternate-reverse ease-in-out;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-content {
  width: 90%;
  max-width: 900px;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  line-height: 1.6;
}

.badge-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
 /* margin-top: 80px;*/
  gap: 15px;
}

/* Contador do Hero */
.hero-counter-wrapper {
  margin: 0px auto;
  max-width: 450px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-counter-title {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: 1px;
}

.hero-counter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-value {
  background-color: var(--primary);
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.counter-label {
  margin-top: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.counter-separator {
  font-size: 2rem;
  margin: 0 8px;
  font-weight: 700;
  padding-bottom: 15px;
}

.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.trust-badge i {
  margin-right: 8px;
  color: var(--accent);
}

/* ==========================================================================
   6. COMPONENTES - CARROSSEL DE EXERCÍCIOS
   ========================================================================== */
.exercises-carousel {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
}

.swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: white;
  height: 400px;
}

.swiper-slide:hover {
  transform: translateY(-10px);
}

.exercise-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.exercise-content {
  padding: 20px;
}

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

/* ==========================================================================
   7. COMPONENTES - BENEFÍCIOS
   ========================================================================== */
.benefits {
  background-color: white;
}

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

.benefit-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

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

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--secondary);
}

/* ==========================================================================
   8. COMPONENTES - RECURSOS PRINCIPAIS
   ========================================================================== */
.main-features {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 0;
}

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

.feature-box {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.feature-box:hover {
  transform: translateY(-15px);
}

.feature-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}

.feature-box i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-box h3 {
  font-size: 1.8rem;
  margin: 15px 0;
  color: var(--secondary);
}

.feature-box p {
  color: #666;
  margin-bottom: 20px;
}

.feature-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #ee2956;
  color: white;
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(22deg);
  width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}

/* ==========================================================================
   9. COMPONENTES - ANTES E DEPOIS
   ========================================================================== */
.before-after {
  background: linear-gradient(to right, #f5f5f5, #e9e9e9);
  padding: 100px 0;
}

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

.transformation-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.transformation-images {
  display: flex;
  height: 300px;
}

.transformation-before,
.transformation-after {
  flex: 1;
  position: relative;
}

.transformation-before img,
.transformation-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.before-label {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}

.after-label {
  background-color: rgba(255, 77, 77, 0.8);
  color: white;
}

.transformation-details {
  padding: 20px;
  text-align: center;
}

.transformation-details h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.transformation-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ==========================================================================
   10. COMPONENTES - DEPOIMENTOS
   ========================================================================== */
.testimonials {
  background-color: var(--light);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  position: relative;
  transition: transform 0.3s ease;
}

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

.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: -20px;
  left: 10px;
  color: rgba(255, 77, 77, 0.1);
  font-family: serif;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

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

/* ==========================================================================
   11. COMPONENTES - RECURSOS E CARACTERÍSTICAS
   ========================================================================== */
.features {
  background-color: white;
}

.features-list {
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: #f5f5f5;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transform: translateX(10px);
}

.feature-icon {
  background-color: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

/* ==========================================================================
   12. COMPONENTES - GARANTIA
   ========================================================================== */
.guarantee {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  border: 2px dashed var(--primary);
  padding: 40px;
  border-radius: 10px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.guarantee-box:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
          45deg,
          rgba(255, 77, 77, 0.03),
          rgba(255, 77, 77, 0.03) 10px,
          rgba(255, 255, 255, 0.03) 10px,
          rgba(255, 255, 255, 0.03) 20px
  );
  z-index: 0;
  animation: moveBackground 20s linear infinite;
}

.guarantee-box-content {
  position: relative;
  z-index: 1;
}

.guarantee-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.guarantee-seal {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  animation: rotate 20s linear infinite;
}

/* ==========================================================================
   13. COMPONENTES - FAQ
   ========================================================================== */
.faq {
  background-color: white;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px;
  background-color: var(--light);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e9ecef;
}

.faq-question::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
}

.faq-question.active::after {
  content: '\f068';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background-color: white;
}

.faq-answer.show {
  padding: 20px;
  max-height: 500px;
}

/* ==========================================================================
   14. COMPONENTES - CALL TO ACTION E PREÇOS
   ========================================================================== */
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1607962837359-5e7e89f86776?q=80&w=1470&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255,77,77,0.3) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.price-box {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.price-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.discount-wrap {
  display: inline-block;
  position: relative;
  padding: 5px 15px;
  margin-top: 10px;
  background-color: #ff3366;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  transform: rotate(-5deg);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(255, 51, 102, 0.5);
}

.original-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.original-price::after {
  content: '';
  position: absolute;
  width: 110%;
  height: 2px;
  background-color: var(--primary);
  top: 50%;
  left: -5%;
  transform: rotate(-10deg);
}

.current-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.countdown {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.timer-box {
  background-color: var(--dark);
  padding: 15px;
  min-width: 80px;
  border-radius: 5px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.timer-box span {
  font-size: 2rem;
}

.timer-box small {
  display: block;
  font-size: 0.8rem;
  color: #ccc;
}

/* ==========================================================================
   15. COMPONENTES - BÔNUS
   ========================================================================== */
.bonus {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.bonus:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.bonus h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.bonus ul {
  list-style-type: none;
  padding-left: 10px;
}

.bonus li {
  padding: 8px 0;
  position: relative;
  padding-left: 30px;
}

.bonus li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* ==========================================================================
   16. COMPONENTES - FOOTER
   ========================================================================== */
footer {
  background-color: var(--dark);
  color: white;
  padding: 40px 0;
  text-align: center;
}

/* ==========================================================================
   17. COMPONENTES - BOTÃO FLUTUANTE
   ========================================================================== */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  animation: float 2s infinite alternate;
}

/* ==========================================================================
   18. ELEMENTOS DE INTERFACE - BOTÕES
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #ff3333;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
}

.btn-accent:hover {
  background-color: #ffdd33;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff4a6b 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(232, 62, 140, 0.5);
  margin: 10px auto;
}

.btn-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(232, 62, 140, 0.7);
}

.btn-hero span {
  margin-right: 10px;
}

/* ==========================================================================
   19. ELEMENTOS DE INTERFACE - BADGES
   ========================================================================== */
.feminine-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 158, 109, 0.4);
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff3366 20%, #ff5e62 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.1rem;
  animation: pulse-strong 1.5s infinite;
  box-shadow: 0 5px 20px rgba(255, 51, 102, 0.5);
}

/* ==========================================================================
   20. ANIMAÇÕES
   ========================================================================== */
@keyframes pulse {
  0% { transform: scale(1); }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes pulse-strong {
  0% { transform: scale(1); box-shadow: 0 5px 20px rgba(255, 51, 102, 0.5); }
  70% { transform: scale(1.05); box-shadow: 0 5px 25px rgba(255, 51, 102, 0.7); }
  100% { transform: scale(1); box-shadow: 0 5px 20px rgba(255, 51, 102, 0.5); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

@keyframes float-slow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

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

/* ==========================================================================
   21. UTILITÁRIOS
   ========================================================================== */
.pulse {
  animation: pulse 2s infinite;
}

.feminine-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

/* Estilo para a seção de vídeo */
.video-section {
  background-color: var(--light);
  padding: 60px 0;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.transformation-single-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  position: relative;
}

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

/* Ajuste para manter o mesmo efeito hover */
.transformation-card:hover .transformation-single-image {
  transform: translateY(-5px);
}