* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.926);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #dc2626;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #dc2626;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #dc2626;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 2100;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 114vh; /* Diminui a altura do banner */ /* Adjust for fixed header */
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.03)),
    url("/img/banner.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Alinha o conteúdo à esquerda horizontalmente */
  text-align: left; /* Alinha o texto à esquerda */
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  /* Opcional: afasta do lado esquerdo */
  margin-left: 5vw;
  text-align: left; /* Alinha o texto à esquerda */
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #e5e5e5;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #dc2626, #b91c1c);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

/* Results Section */
.results {
  padding: 5rem 0;
  background: #111;
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
}

.section-title span {
  color: #dc2626;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.result-card {
  background: #1f1f1f;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-10px);
}

.result-images {
  display: flex;
  height: 250px;
}

.before-after {
  flex: 1;
  position: relative;
}

.before,
.after {
  /* display: none; */ /* Remova ou comente esta linha */
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.result-info {
  padding: 1.5rem;
  text-align: center;
}

.result-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #dc2626;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: white;
}

.services .section-title {
  color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #dc2626;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: #111;
  color: white;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: 20px;
}

.testimonial {
  background: #1f1f1f;
  padding: 3rem;
  text-align: center;
  border-radius: 20px;
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #dc2626;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #666;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #dc2626;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #dc2626;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: #dc2626;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    height: 100vh; /* Banner mais baixo no mobile */
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.03)),
      url("/img/bannermobali.png") no-repeat center center;
    min-height: 120px;
    margin-top: 60px;
    background-position: center top;
    background-size: cover;
    padding-top: 0;
    padding-bottom: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 2rem;
    margin-left: 0;
    margin-top: 135px;
    max-width: 95vw;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .results-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-content {
    padding: 0 0rem;
  }

  .testimonial {
    padding: 2rem 1rem;
  }
}

.hero-content {
  padding: 0 0rem;
}

.testimonial {
  padding: 2rem 1rem;
}

.mobile-menu-links {
  position: absolute;
  top: 45px;
  right: 0;
  background: rgba(0, 0, 0, 0.386);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 5rem;
  padding: 2rem;
  z-index: 2000;
  min-width: 180px;
  align-items: flex-start;
}

.mobile-menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.2s;
  padding: 0.5rem 0;
  width: 100%;
  text-align: left;
}

.mobile-menu-links a:hover {
  color: #dc2626;
}

@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
  .nav-menu {
    display: none;
  }
}
