header {
       margin-top: 0px; /* Adjust this value as needed */
   }

/* Change button size for frequency selection */
   .frequency-button {
       padding: 30px 30px; /* Adjust this value as needed */
       font-size: 16px;    /* Adjust font size if necessary */
   }
/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 200ms;
}

.site-header.scrolled {
  background: hsla(var(--background), 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: hsl(var(--foreground));
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(var(--foreground), 0.7);
  transition: color 200ms;
}

.main-nav a:hover {
  color: hsl(var(--foreground));
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: hsl(var(--foreground));
}

.mobile-menu {
  display: none;
  background: hsla(var(--background), 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid hsl(var(--border));
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  padding: 1rem 0;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(var(--foreground), 0.7);
  border-radius: 0.5rem;
  transition: all 200ms;
}

.mobile-menu a:hover {
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 6rem;
}

.hero-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsla(var(--foreground), 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 36rem;
  background: hsla(var(--background), 0.95);
  backdrop-filter: blur(4px);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.hero-content .btn-primary {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 2.5rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 6rem 0;
  scroll-margin-top: 6rem;
}

.services-intro h2 {
  font-size: 1.875rem;
  max-width: 48rem;
}

.services-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
}

.service-card .emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.service-card a {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color 200ms;
}

.service-card a:hover {
  color: hsl(var(--primary));
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-intro h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 6rem 0;
  scroll-margin-top: 6rem;
}

.contact-intro h2 {
  font-size: 1.875rem;
}

.contact-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.contact-info,
.contact-form-wrapper {
  padding: 2rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.contact-info p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.contact-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.contact-details a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--foreground));
  transition: color 200ms;
}

.contact-details a:hover {
  color: hsl(var(--primary));
}

.contact-details span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.contact-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  background: hsl(var(--secondary));
  border: 1px solid transparent;
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.contact-form textarea {
  resize: none;
  min-height: 100px;
}

.contact-form button {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 200ms;
}

.contact-form button:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.contact-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-message {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.form-message.success {
  color: #16a34a;
}

.form-message.error {
  color: hsl(var(--destructive));
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-intro h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: hsl(var(--foreground));
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms;
}

.footer-contact a:hover {
  color: hsl(var(--primary));
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms;
}

.footer-social a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 200ms;
}

.whatsapp-button:hover {
  transform: scale(1.05);
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 6rem 0;
}

section h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  section h2 {
    font-size: 2.5rem;
  }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
  background: hsl(var(--secondary));
  padding: 6rem 0;
  scroll-margin-top: 6rem;
}

.steps-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
  scroll-margin-top: 6rem;
}

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

.about-content h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: hsl(var(--foreground));
}

.about-content p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.features-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.features-list .check-icon {
  margin-top: 0.125rem;
  color: hsl(var(--primary));
}

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

.about-image img {
  max-height: 500px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: hsl(var(--secondary));
  padding: 6rem 0;
  scroll-margin-top: 6rem;
}

.faq-grid {
  display: grid;
  gap: 2.5rem;
}

.faq-intro h2 {
  font-size: 1.875rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  padding: 0 1.5rem;
}

.faq-item summary {
  padding: 1.25rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 200ms;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .faq-intro h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr 3fr;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 6rem 0;
  scroll-margin-top: 6rem;
}

.testimonials-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-card .quote {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: hsl(var(--primary));
  line-height: 1;
}

.testimonial-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.author-title {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

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

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 1.5rem 0;
}

.cta-banner {
  background: hsl(var(--foreground));
  border-radius: 1rem;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: hsl(var(--background));
}

.cta-banner p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: hsla(var(--background), 0.6);
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--background));
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 200ms;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .cta-banner {
    padding: 4rem;
  }
}

@media (min-width: 768px) {
  .cta-banner h2 {
    font-size: 2.5rem;
  }
}

/* ===== BOOKING PAGE ===== */
.booking-page {
  min-height: 80vh;
}

.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  max-width: 120px;
}

.progress-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: hsl(var(--secondary));
  color: hsl(var(--muted-foreground));
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  transition: all 200ms;
}

.progress-label {
  font-size: 0.625rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

.progress-line {
  height: 2px;
  flex: 1;
  background: hsl(var(--secondary));
  margin-top: -1rem;
  transition: background 200ms;
}

.service-grid,
.frequency-grid,
.addons-grid {
  display: grid;
  gap: 1rem;
}

.service-option,
.frequency-option,
.addon-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 200ms;
}

.selection-card.selected {
  background: hsl(var(--accent));
  box-shadow: var(--shadow-focus);
}

.error-message {
  color: hsl(var(--destructive));
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.btn-back:hover {
  background: hsl(var(--secondary));
}

/* Melhorar largura dos botÃµes do booking */
.booking-step .btn-primary,
.booking-step .btn-next,
#submit-booking {
  min-width: 160px;
  padding: 0.875rem 2rem !important;
  font-size: 0.875rem;
  font-weight: 600;
}

.booking-step .btn-back {
  min-width: 120px;
  padding: 0.875rem 1.5rem;
}

/* Melhorar espaÃ§amento dos botÃµes */
.booking-step > div:last-child {
  margin-top: 1.5rem;
}

/* Responsive booking page */
@media (max-width: 768px) {
  .progress-step {
    max-width: 80px;
  }

  .progress-label {
    font-size: 0.55rem;
  }

  .progress-circle {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.625rem;
  }

  /* BotÃµes full width em mobile */
  .booking-step .btn-primary,
  .booking-step .btn-next,
  .booking-step .btn-back,
  #submit-booking {
    width: 100%;
    min-width: auto;
  }

  .booking-step > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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