/* ============================================== */
/* VARIÁVEIS, RESET E CONFIGURAÇÃO BÁSICA (LUXO: Azul Marinho e Ouro Rosé) */
/* ============================================== */
:root {
  --color-primary: #09e4b4; /* Azul Marinho Profundo (Confiança) */
  --color-secondary: #ca800a; /* Ouro Rosé / Bege Metálico (Destaque e Luxo) */
  --color-accent: #f5f5f5; /* Off-White (Fundo) */
  --color-dark: #0e0d0d;
  --color-light: #ffffff;
  --color-text-light: #003366;
  --font-heading: "Rowdies", sans-serif;
  --font-body: "Poppins", sans-serif;
  --transition-speed: 0.4s;
}

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

body {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-primary);
}

a {
  text-decoration: none;
}

/* Animações e Botões */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--color-light);
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
}

/* ============================================== */
/* Botões Principais de Ação (ATUALIZADO PARA EFEITO DE PATINHA) */
/* ============================================== */
.cta-button {
  padding: 12px 30px;
  border-radius: 4px;
  background-color: var(--color-secondary);
  color: var(--color-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-out;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-right: 45px; /* Espaço extra para a patinha */
}
.cta-button:hover {
  background-color: var(--color-primary);
  color: var(--color-light); /* Cor do texto muda no hover */
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.cta-button::after {
  /* Elemento para a patinha */
  content: "\f1b0"; /* Código do ícone de patinha (Font Awesome) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -20px; /* Começa fora do botão */
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  color: var(--color-light);
  font-size: 1.3rem;
  transition: all 0.4s ease-out;
  opacity: 0;
}
.cta-button:hover::after {
  right: 15px; /* Move a patinha para dentro do botão */
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}

.secondary-cta-button {
  padding: 12px 30px;
  border-radius: 4px;
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition: all 0.4s;
  margin-left: 15px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-right: 45px; /* Espaço extra para a patinha */
}
.secondary-cta-button:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  transform: translateY(-2px);
}
.secondary-cta-button::after {
  /* Elemento para a patinha */
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  color: var(--color-light);
  font-size: 1.3rem;
  transition: all 0.4s ease-out;
  opacity: 0;
}
.secondary-cta-button:hover::after {
  right: 15px;
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}

/* ============================================== */
/* CABEÇALHO E NAVEGAÇÃO */
/* ============================================== */
.main-header {
  background-color: var(--color-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 2rem;
  color: var(--color-primary);
}
.logo-span {
  color: var(--color-secondary);
}
.header-nav {
  display: flex;
  gap: 35px;
  margin-left: auto;
  margin-right: 40px;
}
.header-nav a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.4s;
}
.header-nav a:hover {
  color: var(--color-secondary);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* ============================================== */
/* SEÇÃO HERO */
/* ============================================== */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.hero-text-content {
  flex: 1;
  max-width: 600px;
}
.hero-text-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--color-secondary);
  padding-bottom: 10px;
  display: inline-block;
}
.hero-text-content p {
  font-size: 1.4rem;
  color: var(--color-dark);
  opacity: 0.85;
  max-width: 550px;
  margin-bottom: 50px;
}
.hero-image-container {
  flex: 1;
  text-align: right;
}
.hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--color-light);
  transition: transform 0.5s;
}
.hero-image:hover {
  transform: scale(1.02);
}

/* ============================================== */
/* SEÇÃO DE SERVIÇOS */
/* ============================================== */
.services-section {
  background-color: var(--color-light);
  padding: 100px 20px;
  text-align: center;
}
.section-title {
  font-size: 3.2rem;
  color: var(--color-primary);
  margin-bottom: 60px;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.service-card {
  background-color: var(--color-accent);
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s, box-shadow 0.4s;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--color-secondary);
}
.service-icon {
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.6rem;
  color: var(--color-primary);
}
.service-card p {
  color: var(--color-dark);
  opacity: 0.8;
}

/* ============================================== */
/* NOVA SEÇÃO: BOUTIQUE PREMIUM (COM IMAGENS) */
/* ============================================== */
.boutique-section {
  background-color: var(--color-accent);
  padding: 100px 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-top: -40px;
  margin-bottom: 70px;
  opacity: 0.8;
}

.boutique-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background-color: var(--color-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid #eee;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.product-card:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  color: var(--color-light);
  font-size: 2.5rem;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.product-info p {
  color: var(--color-dark);
  margin-bottom: 15px;
  opacity: 0.8;
}

.cta-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cta-link:hover {
  color: var(--color-secondary);
  border-color: var(--color-primary);
}

.full-boutique-cta {
  margin-top: 20px;
}

/* ============================================== */
/* SEÇÃO DE TESTEMUNHOS */
/* ============================================== */
.testimonials-section {
  background-color: var(--color-primary);
  padding: 100px 20px;
  color: var(--color-light);
}
.testimonials-section .section-title {
  color: var(--color-light);
  border-bottom: 3px solid var(--color-secondary);
  display: inline-block;
  padding-bottom: 5px;
}
.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--color-secondary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
}
.testimonial-card p {
  color: var(--color-light);
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 15px;
}
.client-info {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}
.client-name {
  color: var(--color-secondary);
  font-weight: 700;
}
.rating-star {
  color: #ffc107;
}

/* ============================================== */
/* SEÇÃO DE AGENDAMENTO E FORMULÁRIO */
/* ============================================== */
.appointment-section {
  background-color: var(--color-accent);
  padding: 100px 20px;
  position: relative;
  color: var(--color-text-light);
}
.appointment-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}
.appointment-text {
  flex: 1;
}
.appointment-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}
.contact-highlight {
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 600;
}
.contact-highlight i {
  color: var(--color-secondary);
  margin-right: 10px;
}
.appointment-form {
  flex: 1;
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--color-secondary);
}
.appointment-form h3 {
  color: var(--color-primary);
  margin-bottom: 30px;
  text-align: center;
  font-size: 2rem;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  background-color: var(--color-light);
  color: var(--color-dark);
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 18px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-submit-button {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  background-color: var(--color-secondary);
  color: var(--color-dark);
  border-color: var(--color-secondary);
}
.form-submit-button:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  border-color: var(--color-primary);
}

.form-message {
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  background-color: #e6ffe6;
  color: #388e3c;
  display: none;
}

/* ============================================== */
/* RODAPÉ */
/* ============================================== */
.main-footer {
  background-color: var(--color-primary);
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 4px solid var(--color-secondary);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-icons a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  margin-left: 25px;
  transition: color 0.4s, transform 0.4s;
}
.social-icons a:hover {
  color: var(--color-secondary);
  transform: translateY(-2px);
}

/* ============================================== */
/* RESPONSIVIDADE */
/* ============================================== */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-nav.active {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-light);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
    display: flex;
  }
  .hero-text-content h2 {
    font-size: 3rem;
  }
  .appointment-container {
    flex-direction: column;
  }
  .appointment-text,
  .appointment-form {
    width: 100%;
  }
  .appointment-text h2 {
    text-align: center;
    padding-left: 0;
    border-left: none;
    border-bottom: 4px solid var(--color-secondary);
  }
  .section-subtitle {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
  .hero-text-content h2 {
    font-size: 2.5rem;
  }
  .hero-image-container {
    order: -1;
    margin-bottom: 30px;
  }
  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  /* Ajusta botões mobile para o efeito de patinha não quebrar */
  .cta-button,
  .secondary-cta-button {
    padding-right: 30px;
  }
  .cta-button::after,
  .secondary-cta-button::after {
    content: none; /* Desativa a patinha no mobile se não houver espaço */
  }
  .secondary-cta-button {
    margin-left: 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
  .social-icons a {
    margin: 0 10px;
  }
}
