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

html, body {
  height: 100vh;
  width: 100vw;
  font-family: Arial, sans-serif;
}

#mainIndex {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#headerIndex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 0 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  height: 80px;
  flex-shrink: 0;
}

#h1Index {
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

#h1Index:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.botoesIndex {
  cursor: pointer;
  border: none;
  color: #fff;
  background: none;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.botoesIndex::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  transition: left 0.3s ease;
  z-index: -1;
}

.botoesIndex:hover {
  color: white;
  transform: translateY(-2px);
}

.botoesIndex:hover::before {
  left: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .botoesIndex {
  font-size: 24px;
  padding: 20px;
  margin: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 80%;
  text-align: center;
}

section {
  position: relative;
  display: flex;
  flex: 1;
  overflow: hidden;
}

.hero-image {
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px;
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.agendar-btn {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.agendar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  filter: brightness(1.1);
}

footer {
  background: #0a0a0a;
  color: white;
  padding: 30px 40px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-link:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  color: #ccc;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: #fff;
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateY(-2px);
}

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

.footer-copyright {
  font-size: 0.75rem;
  color: #666;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    flex-direction: column;
  }
  .hero-image {
    width: 100%;
    height: 70%;
  }
  .hero-content {
    width: 100%;
    height: 30%;
    padding: 20px;
  }
  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .agendar-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
    padding: 15px 20px;
  }
  .footer-brand {
    gap: 5px;
  }
  .footer-brand p {
    font-size: 0.8rem;
    margin: 5px 0;
  }
  .footer-logo {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  .footer-copyright {
    font-size: 0.7rem;
    margin-top: 5px;
  }
  .footer-section {
    gap: 5px;
  }
  .footer-title {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }
  .footer-link {
    font-size: 0.75rem;
    padding: 2px 0;
  }
  .social-links {
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
  }
  .social-link {
    font-size: 1rem;
    padding: 6px;
  }
  #headerIndex {
    padding: 0 20px;
    height: 60px;
  }
  #h1Index {
    font-size: 2rem;
  }
}

