/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #374151;
  overflow-x: hidden;
}

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

/* Animações */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

@keyframes bounceGentle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes bounceSlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounceX {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@keyframes pulseSlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

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

@keyframes gradientText {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Classes de Animação */
.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-slide-in-up {
  animation: slideInUp 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-bounce-gentle {
  animation: bounceGentle 2s ease-in-out infinite;
}

.animate-bounce-slow {
  animation: bounceSlow 4s ease-in-out infinite;
}

.bounce-x {
  animation: bounceX 1s ease-in-out infinite;
}

.bounce {
  animation: bounce 1s ease-in-out infinite;
}

.pulse {
  animation: pulseSlow 2s ease-in-out infinite;
}

.pulse-gentle {
  animation: pulseGentle 2s ease-in-out infinite;
}

.animate-count-up {
  animation: countUp 1s ease-out forwards;
}

.gradient-text {
  background: linear-gradient(-45deg, #ec4899, #f97316, #ec4899, #f97316);
  background-size: 400% 400%;
  animation: gradientText 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #ec4899;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.1) rotate(12deg);
}

.logo-icon i {
  animation: bounceGentle 2s ease-in-out infinite;
}

.logo-name {
  font-weight: bold;
  color: #111827;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ec4899;
  transform: scale(1.1) translateY(-2px);
}

.cta-desktop {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #374151;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
  display: block;
  animation: slideInUp 0.3s ease-out;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ec4899;
  transform: translateX(0.5rem);
}

.mobile-cta {
  margin-top: 1rem;
}

/* Botões */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background: #be185d;
  color: white;
}

.btn-primary:hover {
  background: #db2777;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.btn-outline {
  background: transparent;
  color: #ca1d74;
  border: 2px solid #ccbfc6;
}

.btn-outline:hover {
  background: #fdf2f8;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 100%);
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(236, 72, 153, 0.1), transparent);
  animation: pulseSlow 6s ease-in-out infinite;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: center;
}

.badge {
  display: inline-block;
  background: #fce7f3;
  color: #be185d;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #111827;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.image-container {
  position: relative;
  max-width: 400px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

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

.image-bg {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 100%;
  height: 100%;
  background: #fce7f3;
  border-radius: 1rem;
  z-index: -1;
  animation: pulseSlow 4s ease-in-out infinite;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.floating-1 {
  
  animation: bounceSlow 4s ease-in-out infinite;
}

.floating-2 {
  
  animation: bounceSlow 4s ease-in-out infinite;
  animation-delay: 1s;
}

/* Sobre Section */
.sobre {
  padding: 5rem 0;
  background: white;
}

.sobre-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.sobre-image {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.sobre-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

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

.cref-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #ec4899;
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
  text-align: center;
}

.cref-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.cref-number {
  font-size: 0.875rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature i {
  color: #ec4899;
  font-size: 1.25rem;
}

.certifications {
  margin-bottom: 2rem;
}

.certifications h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge-cert {
  background: #fce7f3;
  color: #be185d;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #fbcfe8;
}

/* Serviços Section */
.servicos {
  padding: 5rem 0;
  background: #fdf2f8;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  text-align: center;
}

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

.service-icon {
  width: 4rem;
  height: 4rem;
  background: #fce7f3;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #ec4899;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #fbcfe8;
  animation: bounceGentle 1s ease-in-out;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.service-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ec4899;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.service-features i {
  color: #ec4899;
  font-size: 1rem;
}

/* Metodologia Section */
.metodologia {
  padding: 5rem 0;
  background: white;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: #ec4899;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  animation: bounceGentle 1s ease-in-out;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.step-description {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Depoimentos Section */
.depoimentos {
  padding: 5rem 0;
  background: #fdf2f8;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.testimonial-age {
  color: #6b7280;
}

.testimonial-result {
  background: #fce7f3;
  color: #be185d;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: inline-block;
}

/* Antes e Depois Styles */
.before-after-container {
  margin: 1.5rem 0;
}

.before-after-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.before-image,
.after-image {
  position: relative;
  text-align: center;
}

.before-image img,
.after-image img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.before-image img:hover,
.after-image img:hover {
  transform: scale(1.05);
}

.image-label {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ec4899;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.transformation-arrow {
  color: #ec4899;
  font-size: 2rem;
  animation: bounceX 2s ease-in-out infinite;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: #374151;
  font-style: italic;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.nav-btn {
  background: #ec4899;
  color: white;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #db2777;
  transform: scale(1.1);
}

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

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ec4899;
  transform: scale(1.25);
}

.dot:hover {
  transform: scale(1.25);
}

/* Blog Section */
.blog {
  padding: 5rem 0;
  background: white;
}

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

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}

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

.blog-image {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #ec4899;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: #ec4899;
}

.blog-excerpt {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter {
  text-align: center;
  background: #fdf2f8;
  padding: 3rem;
  border-radius: 1rem;
  max-width: 600px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.newsletter:hover {
  transform: scale(1.02);
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.newsletter-description {
  color: #6b7280;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input {
  padding: 0.75rem 1rem;
  border: 2px solid #fbcfe8;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: #ec4899;
  transform: scale(1.02);
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  background: #374151;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ec4899;
  color: white;
  transform: scale(1.1);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ec4899;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #9ca3af;
}

.contact-item i {
  color: #ec4899;
  width: 1.25rem;
}

.cref-info {
  background: #1f2937;
  padding: 1rem;
  border-radius: 0.5rem;
}

.cref-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cref-subtitle {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ec4899;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background: #128c7e;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: ping 2s infinite;
  opacity: 0.2;
}

.pulse-ring-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: ping 2s infinite;
  animation-delay: 0.5s;
  opacity: 0.3;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #111827;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 1rem;
  border: 4px solid transparent;
  border-top-color: #111827;
}

.whatsapp-button:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .before-after-images {
    flex-wrap: nowrap;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .cta-desktop {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-text {
    text-align: left;
  }

  .hero-title {
    font-size: 3.5rem;
  }

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

  .methodology-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 50px) {
  .before-after-images {
    gap: 1rem;
  }

  .before-image img,
  .after-image img {
    width: 120px;
    height: 160px;
  }

  .transformation-arrow {
    font-size: 1.5rem;
  }

  .testimonial-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Prevenção de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
