/* ============================================
   RESET E BASES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   VARIÁVEIS DE COR (Dark Premium)
   ============================================ */
:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #000000;
  --bg-card: #1a1a1a;
  --bg-hover: #252525;
  --accent-gold: #d4af7a;
  --accent-gold-light: #e8c599;
  --accent-gold-dark: #b8906a;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --text-light: #808080;
  --border-color: #333333;
  --border-light: #404040;
  --success-color: #25d366;
}

/* ============================================
   CONTAINER E LAYOUT
   ============================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

section {
  position: relative;
  overflow: hidden;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.section-title.white-title {
  color: var(--text-primary);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

strong {
  font-weight: 600;
  color: var(--accent-gold);
}

/* ============================================
   NAVEGAÇÃO (Navbar Fixa)
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  flex-shrink: 0;
}

.logo {
  height: 50px;
  width: auto;
  opacity: 0.95;
  transition: transform 0.3s ease;
}

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

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-gold);
}

/* Menu Toggle Mobile */
.menu-toggle-input {
  display: none;
}

.menu-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle-label span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(212, 175, 122, 0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.title-line {
  display: block;
  color: white;
  font-weight: 400;
  font-size: 0.8em;
  margin-bottom: 0.5rem;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.2em;
  padding: 10px 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--accent-gold);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1.2s ease-out;
}

.btn {
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: #000;
  box-shadow: 0 10px 30px rgba(212, 175, 122, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 122, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: #000;
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ============================================
   SOBRE SECTION
   ============================================ */
#sobre {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  padding: 6rem 0;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.sobre-image {
  position: relative;
}

.fade-in-image {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(212, 175, 122, 0.15);
  transition: transform 0.3s ease;
}

.fade-in-image:hover {
  transform: scale(1.02);
}

/* ============================================
   VALORES SECTION
   ============================================ */
#valores {
  background: var(--bg-darker);
  padding: 6rem 0;
}

.valores-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.valores-text h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.valores-list h3 {
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  list-style: none;
}

.value-item {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-left: 3px solid var(--border-light);
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.value-item:hover {
  border-left-color: var(--accent-gold);
  background: var(--bg-hover);
  transform: translateX(5px);
}

.value-item.highlight {
  background: rgba(212, 175, 122, 0.1);
  border-left-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ============================================
   SERVIÇOS SECTION
   ============================================ */
#servicos {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  padding: 6rem 0;
}

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

.service-card {
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.1) 0%, transparent 100%);
  transition: left 0.3s ease;
  z-index: 1;
}

.service-card:hover::before {
  left: 100%;
}

.service-card.featured {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.05) 0%, var(--bg-darker) 100%);
  transform: scale(1.02);
}

.service-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 122, 0.15);
  transform: translateY(-10px);
}

.service-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.icon-plus {
  font-size: 3rem;
  color: var(--accent-gold);
  font-weight: 300;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  position: relative;
  z-index: 2;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--bg-hover);
  color: var(--text-secondary);
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-badge.premium {
  background: rgba(212, 175, 122, 0.2);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */
#diferenciais {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  padding: 6rem 0;
}

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

.diferencial-card {
  background: rgba(212, 175, 122, 0.05);
  border: 1px solid rgba(212, 175, 122, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.diferencial-card:hover {
  background: rgba(212, 175, 122, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 122, 0.1);
}

.diferencial-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.diferencial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--accent-gold);
}

.diferencial-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   TESTEMUNHOS SECTION
   ============================================ */
#testemunhos {
  background: var(--bg-darker);
  padding: 6rem 0;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-gold);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(212, 175, 122, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.author-info h4 {
  margin: 0;
  color: var(--accent-gold);
  font-size: 1rem;
}

.author-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ============================================
   EQUIPE SECTION
   ============================================ */
#equipe {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  padding: 6rem 0;
}

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

.membro {
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.membro:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 122, 0.1);
  transform: translateY(-5px);
}

.member-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.membro:hover .member-image {
  transform: scale(1.05);
}

.membro-info {
  padding: 2rem;
}

.membro-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.membro-cargo {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.membro-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   AGENDAMENTO SECTION
   ============================================ */
#agendamento {
  background: linear-gradient(135deg, rgba(212, 175, 122, 0.1) 0%, var(--bg-dark) 100%);
  padding: 6rem 0;
  text-align: center;
}

.agendamento-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.agendamento-text {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.agendamento-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.agendamento-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================
   CONTATO SECTION
   ============================================ */
#contato {
  background: var(--bg-darker);
  padding: 6rem 0;
}

.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--accent-gold);
}

.info-item p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-item a {
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--accent-gold-light);
}

.contato-map {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 60px rgba(212, 175, 122, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-darker);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

.footer-tagline {
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-links h4,
.footer-social h4 {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-links a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.social-links img {
  width: 20px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.social-links a:hover img {
  filter: grayscale(0%);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-dev-creds {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.footer-dev-creds a {
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

.footer-dev-creds a:hover {
  color: var(--accent-gold-light);
}

/* ============================================
   FLOATING WHATSAPP (NOVO)
   ============================================ */
#whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 15px;
}

.wf-btn {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 122, 0.3);
  cursor: pointer;
}

.wf-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 45px rgba(212, 175, 122, 0.5);
  background: var(--accent-gold-light);
}

.wf-btn:active {
  transform: scale(0.95);
}

.wf-btn svg {
  width: 28px;
  height: 28px;
  color: #000;
  fill: #000;
}

.wf-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 122, 0.3);
  animation: pulse-animation 1.5s ease-in-out infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.wf-tooltip {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--bg-card);
  color: var(--accent-gold);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--border-color);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#whatsapp-float:hover .wf-tooltip {
  opacity: 1;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

/* Scroll Animation Classes */
.slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.6s ease-out forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

/* Stagger Animation */
.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.6s; }

.diferencial-grid .diferencial-card:nth-child(1) { animation-delay: 0.1s; }
.diferencial-grid .diferencial-card:nth-child(2) { animation-delay: 0.2s; }
.diferencial-grid .diferencial-card:nth-child(3) { animation-delay: 0.3s; }
.diferencial-grid .diferencial-card:nth-child(4) { animation-delay: 0.4s; }
.diferencial-grid .diferencial-card:nth-child(5) { animation-delay: 0.5s; }
.diferencial-grid .diferencial-card:nth-child(6) { animation-delay: 0.6s; }

.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.diferencial-grid .diferencial-card {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease-out forwards;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
  .section-container {
    padding: 0 4%;
  }

  /* Menu Mobile */
  .menu-toggle-label {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    z-index: 999;
  }

  .menu-toggle-input:checked ~ .menu-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .menu-toggle-input:checked ~ .menu-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle-input:checked ~ .menu-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .menu-toggle-input:checked ~ .navbar-menu {
    max-height: 500px;
  }

  .navbar-menu li {
    border-bottom: 1px solid var(--border-color);
  }

  .navbar-menu li a {
    display: block;
    padding: 1rem 5%;
  }

  /* Hero */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    gap: 1rem;
  }

  .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  /* Seções */
  .sobre-content,
  .valores-content,
  .contato-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Equipe */
  .membros-equipe {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .section-subtitle {
    margin-bottom: 2rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* WhatsApp Button */
  #whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .wf-btn {
    width: 50px;
    height: 50px;
  }

  .wf-btn svg {
    width: 24px;
    height: 24px;
  }

  .wf-pulse {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 3%;
  }

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

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

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid,
  .diferencial-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-icon {
    height: 80px;
  }

  .navbar-menu {
    top: 60px;
  }

  .logo {
    height: 40px;
  }

  .contato-map {
    height: 300px;
  }

  p {
    font-size: 0.95rem;
  }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.hidden {
  display: none !important;
}
