@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #0d0d0e;
  --bg-card: #151517;
  --text: #F3F4F6;
  --text-muted: #9CA3AF;
  --gold: #D4AF37;
  --border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

img { -webkit-user-drag: none; pointer-events: none; max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Floating WA REAL ICON */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; width: 66px; height: 66px;
  background: #25D366; color: #fff; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  box-shadow: 0 10px 25px rgba(37,211,102,0.35); z-index: 999; 
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-float:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 15px 35px rgba(37,211,102,0.5); }
.wa-float svg { width: 36px; height: 36px; fill: currentColor; }

/* Header */
.header { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1.5rem 0; transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s; }
.header.scrolled { background: rgba(13,13,14,0.95); backdrop-filter: blur(16px); padding: 1rem 0; border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; color: #fff; font-weight: 600; letter-spacing: 0.5px; }
.logo span { color: var(--gold); }

.nav-menu { display: flex; gap: 2.5rem; align-items: center; }
.nav-link { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; transition: color 0.3s; }
.nav-link:hover { color: var(--gold); }
.nav-btn { background: var(--text); color: var(--bg); padding: 0.7rem 1.8rem; border-radius: 4px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; transition: transform 0.3s, background 0.3s; }
.nav-btn:hover { background: var(--gold); color: #000; }
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 0.5rem; }

/* Utilities */
.container { max-width: 1300px; margin: 0 auto; padding: 6rem 1rem; }
.section-header { margin-bottom: 4rem; max-width: 800px; }
.section-header.center { margin: 0 auto 4rem; text-align: center; }
.section-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; line-height: 1.15; margin-bottom: 1rem; color: #fff;}
.section-title em { color: var(--gold); font-style: italic; }
.section-subtitle { font-size: 0.85rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.8rem; display: block; }
.text-lg { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* BUTTONS */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 1rem;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); padding: 1rem 2.5rem;
  border-radius: 4px; font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 1px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color 0.4s var(--ease);
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold); transition: left 0.4s var(--ease); z-index: -1;
}
.btn-gold:hover { color: #000; }
.btn-gold:hover::before { left: 0; }
.btn-gold svg { transition: transform 0.4s var(--ease); }
.btn-gold:hover i { transform: translateX(5px); }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 1rem;
  background: #000; color: #fff; padding: 1.25rem 3rem; border-radius: 4px; border: none;
  font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1.5px;
  transition: transform 0.4s var(--ease), background 0.4s; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-3px); }
.btn-dark svg { transition: transform 0.4s; }
.btn-dark:hover i { transform: translateX(5px); }

.btn-text { color: var(--text-muted); text-transform: uppercase; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; transition: color 0.3s; display: flex; align-items: center; gap: 8px;}
.btn-text:hover { color: #fff; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 5rem; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1400px; width: 100%; padding: 0 2rem; margin: 0 auto; align-items: center; }
.hero-text h1 { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.05; margin-bottom: 2rem; font-weight: 400; letter-spacing: -1px; }
.hero-text p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2.5rem; max-width: 500px;}
.hero-actions { display: flex; align-items: center; gap: 2rem; }

.hero-img-box { position: relative; border-radius: 12px; }
.hero-img-box img { width: 100%; height: auto; border-radius: 8px; filter: contrast(1.1) brightness(0.95); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.img-badge { position: absolute; bottom: -20px; left: -20px; background: var(--bg-card); border: 1px solid var(--border); padding: 1.5rem; border-radius: 8px; display: flex; flex-direction: column; gap: 4px; box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.img-badge strong { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); font-weight: 600;}
.img-badge span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

/* Brands Band */
.brands-band { background: var(--gold); padding: 1.5rem 0; text-align: center; }
.brands-band p { margin: 0; color: #000; font-weight: 600; font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase;}

/* Serviços Cards Elaborados */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--bg-card); padding: 3.5rem 2.5rem; border-radius: 12px;
  border: 1px solid var(--border); transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 70%);
  opacity: 0; transition: opacity 0.5s var(--ease); z-index: -1;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.4); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent); border: 1px solid rgba(212,175,55,0.2);
  width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; color: var(--gold);
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-icon svg { width: 30px; height: 30px; }

.service-card h3 { font-size: 1.6rem; color: #fff; margin-bottom: 1.25rem; font-family: var(--font-heading); }
.service-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.card-line { width: 40px; height: 2px; background: var(--border); margin-top: 2rem; transition: width 0.5s var(--ease), background 0.5s var(--ease); }
.service-card:hover .card-line { width: 100%; background: var(--gold); }


/* Process / Metodologia Section */
.process-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.process-step { border-left: 1px solid var(--border); padding-left: 2rem; position: relative;}
.process-step::before { content:''; position:absolute; top:0; left:-1px; width:2px; height:0%; background:var(--gold); transition: height 0.6s var(--ease); }
.process-step:hover::before { height: 100%; }
.step-num { font-size: 4rem; color: rgba(255,255,255,0.05); font-family: var(--font-heading); margin: 0 0 -1rem; line-height: 1;}
.process-step h3 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.process-step p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin:0;}

/* Contact Final CTA */
.contact-wrap { padding: 8rem 2rem; }
.contact-box { background: var(--gold); border-radius: 16px; padding: 6rem 4rem; text-align: center; }
.contact-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); color: #000; line-height: 1.1; margin-bottom: 1.5rem; }
.contact-desc { font-size: 1.2rem; color: #222; max-width: 600px; margin: 0 auto 3rem; line-height: 1.6;}

/* Footer */
.footer { padding: 4rem 0rem 2rem; background: var(--bg); }
.footer-info { display: flex; justify-content: space-between; margin-bottom: 4rem; flex-wrap: wrap; gap: 3rem; }
.footer-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.footer-info-item svg { color: var(--gold); width: 24px; height: 24px; }
.footer-info-item div { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-info-item span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600;}
.footer-info-item strong, .footer-info-item a { font-size: 1.1rem; color: #fff; font-weight: 500; transition: color 0.3s; }
.footer-info-item a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.footer-socials a { color: var(--text-muted); transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }

/* Mobile Menu */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 2rem;}
  .hero-text p { margin: 0 auto 2.5rem; }
  .img-badge { left: 50%; transform: translateX(-50%); }
  .hero-actions { justify-content: center; flex-direction: column; }
  
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 2rem; }
  .process-step::before { top: -1px; left: 0; width: 0%; height: 2px; }
  .process-step:hover::before { width: 100%; height: 2px; }
  
  .contact-box { padding: 4rem 2rem; }
  
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(13,13,14,0.98); backdrop-filter: blur(10px); flex-direction: column; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity 0.4s; z-index: -1; }
  .nav-menu.active { opacity: 1; pointer-events: auto; }
  .nav-link { font-size: 1.5rem; color: #fff; }
  .footer-info { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Inner Pages Hero */
.inner-hero { min-height: 45vh; display: flex; align-items: flex-end; justify-content: center; text-align: center; padding-bottom: 4rem; position: relative; }
.inner-hero-content { position: relative; z-index: 2; }
.inner-page-title { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; margin-bottom: 1rem; color: #fff;}
.inner-page-desc { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

            @media (max-width: 768px) {
        .inner-page-title { font-size: 2.5rem !important; }
      }