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

:root {
  --primary: #0b1d35;
  --primary-light: #132d50;
  --gold: #c8a55a;
  --gold-light: #f5df9e;
  --gold-dark: #9a7830;
  --gold-gradient: linear-gradient(135deg, #f7df94 0%, #c8a55a 50%, #9a792d 100%);
  --gold-glow: 0 0 25px rgba(200, 165, 90, 0.35);
  --text: #f8f6f0;
  --text-muted: #94a3b8;
  --bg-dark: #040912;
  --bg-section: #081220;
  --glass: rgba(11, 26, 47, 0.65);
  --glass-border: rgba(200, 165, 90, 0.2);
  --radius: 18px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:90px; }
body { font-family:'Inter',sans-serif; background:var(--bg-dark); color:var(--text); line-height:1.7; overflow-x:hidden; }
h1,h2,h3,h4 { font-family:'Playfair Display',serif; font-weight:700; line-height:1.2; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:20px 0; transition:var(--transition); }
.navbar.scrolled { background:rgba(4,9,18,0.92); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); padding:12px 0; border-bottom:1px solid var(--glass-border); box-shadow:0 10px 30px rgba(0,0,0,0.5); }
.navbar .container { display:flex; align-items:center; justify-content:space-between; }
.nav-logo { display:inline-flex; align-items:center; transition:var(--transition); }
.nav-logo img { height:130px; width:auto; max-width:100%; object-fit:contain; transition:all 0.4s ease; filter:drop-shadow(0 0 15px rgba(200,165,90,0.6)) brightness(1.2); transform:scale(1.3); transform-origin:left center; }
.navbar.scrolled .nav-logo img { height:80px; transform:scale(1.1); filter:drop-shadow(0 0 10px rgba(200,165,90,0.4)) brightness(1.1); }
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a { font-size:0.9rem; font-weight:500; color:var(--text-muted); transition:var(--transition); position:relative; letter-spacing:0.5px; }
.nav-links a::after { content:''; position:absolute; bottom:-6px; left:0; width:0; height:2px; background:var(--gold-gradient); transition:var(--transition); border-radius:2px; }
.nav-links a:hover, .nav-links a.active { color:var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { padding:12px 28px; border:1px solid var(--gold); color:var(--gold-light); font-size:0.85rem; font-weight:600; border-radius:8px; transition:var(--transition); text-transform:uppercase; letter-spacing:1px; background:rgba(200,165,90,0.05); }
.nav-cta:hover { background:var(--gold-gradient); color:var(--bg-dark); border-color:transparent; box-shadow:var(--gold-glow); transform:translateY(-2px); }

/* Hamburger menu */
.menu-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.menu-toggle span { width:26px; height:2px; background:var(--gold); transition:var(--transition); border-radius:2px; transform-origin:center; }
.menu-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity:0; }
.menu-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero { min-height:100vh; display:flex; align-items:center; position:relative; overflow:hidden; padding:140px 0 80px; }
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; filter:brightness(0.7); }
.hero-bg::after { content:''; position:absolute; inset:0; background:radial-gradient(circle at 70% 30%, rgba(200,165,90,0.12) 0%, transparent 60%), linear-gradient(135deg, rgba(4,9,18,0.96) 0%, rgba(8,18,32,0.9) 50%, rgba(13,27,46,0.85) 100%); }
.hero::before { content:''; position:absolute; top:-50%; right:-30%; width:800px; height:800px; z-index:1; background:radial-gradient(circle, rgba(200,165,90,0.06) 0%, transparent 70%); animation:float 8s ease-in-out infinite; pointer-events:none; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-40px) rotate(5deg);} }
.hero-content { position:relative; z-index:2; max-width:780px; }
.hero-badge { display:inline-flex; align-items:center; gap:10px; padding:10px 22px; border:1px solid var(--glass-border); border-radius:50px; font-size:0.82rem; color:var(--gold-light); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:28px; background:rgba(11,26,47,0.7); backdrop-filter:blur(12px); box-shadow:0 4px 20px rgba(0,0,0,0.3); }
.hero-badge .dot { width:8px; height:8px; border-radius:50%; background:var(--gold); box-shadow:0 0 10px var(--gold); animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1);} 50%{opacity:0.4; transform:scale(1.2);} }
.hero h1 { font-size:clamp(2.6rem,5.5vw,4.5rem); margin-bottom:24px; color:var(--text); text-shadow:0 4px 20px rgba(0,0,0,0.5); }
.hero h1 .highlight { background:var(--gold-gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; font-style:italic; }
.hero p { font-size:1.15rem; color:var(--text-muted); max-width:620px; margin-bottom:40px; line-height:1.8; }
.hero-buttons { display:flex; gap:20px; flex-wrap:wrap; }
.btn-primary { position:relative; padding:16px 40px; background:var(--gold-gradient); color:var(--bg-dark); font-weight:700; font-size:0.92rem; border:none; border-radius:10px; cursor:pointer; transition:var(--transition); text-transform:uppercase; letter-spacing:1px; overflow:hidden; box-shadow:0 6px 25px rgba(200,165,90,0.25); }
.btn-primary::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition:0.6s; }
.btn-primary:hover::after { left:100%; }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 12px 35px rgba(200,165,90,0.4); }
.btn-outline { padding:16px 38px; border:1px solid rgba(255,255,255,0.2); color:var(--text); font-weight:600; font-size:0.92rem; background:rgba(255,255,255,0.03); border-radius:10px; cursor:pointer; transition:var(--transition); letter-spacing:0.5px; backdrop-filter:blur(10px); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold-light); background:rgba(200,165,90,0.1); transform:translateY(-3px); }

.hero-stats { display:flex; gap:56px; margin-top:64px; padding-top:44px; border-top:1px solid rgba(200,165,90,0.15); }
.hero-stats .stat { transition:var(--transition); }
.hero-stats .stat:hover { transform:translateY(-4px); }
.hero-stats .stat h3 { font-size:2.5rem; background:var(--gold-gradient); -webkit-background-clip:text; -webkit-text-fill-color:transparent; filter:drop-shadow(0 2px 8px rgba(200,165,90,0.2)); }
.hero-stats .stat p { font-size:0.82rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; margin-top:6px; font-weight:500; }

/* ============================================
   SECTIONS GLOBAL
   ============================================ */
section { padding:100px 0; position:relative; }
.section-header { text-align:center; margin-bottom:60px; }
.section-label { font-size:0.82rem; text-transform:uppercase; letter-spacing:3.5px; color:var(--gold); margin-bottom:14px; display:block; font-weight:700; }
.section-title { font-size:clamp(2rem,4vw,2.8rem); margin-bottom:16px; color:var(--text); }
.section-subtitle { color:var(--text-muted); max-width:600px; margin:0 auto; font-size:1rem; line-height:1.7; }

/* ============================================
   ICON BOXES
   ============================================ */
.icon-box { width:48px; height:48px; border-radius:12px; background:linear-gradient(135deg, rgba(200,165,90,0.15) 0%, rgba(11,26,47,0.8) 100%); border:1px solid var(--glass-border); display:flex; align-items:center; justify-content:center; margin-bottom:14px; flex-shrink:0; transition:var(--transition); box-shadow:0 4px 15px rgba(0,0,0,0.2); }
.icon-box svg, .card-icon svg, .contact-icon svg { width:22px; height:22px; stroke:var(--gold-light); stroke-width:1.9; transition:var(--transition); filter:drop-shadow(0 0 5px rgba(200,165,90,0.4)); }
.about-feature:hover .icon-box, .contact-item:hover .contact-icon { background:var(--gold-gradient); border-color:transparent; box-shadow:var(--gold-glow); transform:translateY(-3px) scale(1.08); }
.about-feature:hover .icon-box svg, .contact-item:hover .contact-icon svg { stroke:var(--bg-dark); filter:none; }

/* ============================================
   ABOUT
   ============================================ */
.about { background:var(--bg-section); border-top:1px solid rgba(255,255,255,0.03); border-bottom:1px solid rgba(255,255,255,0.03); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about-content .about-text { color:var(--text-muted); margin-bottom:20px; font-size:0.98rem; line-height:1.8; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:32px; }
.about-feature { padding:20px; background:var(--glass); border:1px solid var(--glass-border); border-radius:14px; transition:var(--transition); backdrop-filter:blur(10px); }
.about-feature:hover { transform:translateY(-5px); border-color:var(--gold); background:rgba(19,45,80,0.5); box-shadow:0 10px 30px rgba(0,0,0,0.3); }
.about-feature h4 { font-size:0.95rem; margin-bottom:4px; color:var(--text); }
.about-feature p { font-size:0.82rem; color:var(--text-muted); }
.about-image { position:relative; height:480px; border-radius:var(--radius); overflow:hidden; border:1px solid var(--glass-border); box-shadow:0 20px 50px rgba(0,0,0,0.5); }
.about-image img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s ease; }
.about-image:hover img { transform:scale(1.04); }
.about-image .overlay-text { position:absolute; bottom:24px; left:24px; right:24px; padding:22px; background:rgba(4,9,18,0.92); border-radius:12px; backdrop-filter:blur(16px); border:1px solid var(--glass-border); box-shadow:0 10px 30px rgba(0,0,0,0.5); }
.about-image .overlay-text h4 { font-size:1.1rem; color:var(--gold-light); margin-bottom:4px; }
.about-image .overlay-text p { font-size:0.85rem; color:var(--text-muted); }

/* ============================================
   PRACTICE AREAS
   ============================================ */
.practice { background:var(--bg-dark); }
.practice-grid-focus { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.practice-card { padding:36px 28px; background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius); transition:var(--transition); position:relative; overflow:hidden; backdrop-filter:blur(12px); }
.practice-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold-gradient); transform:scaleX(0); transition:var(--transition); transform-origin:left; }
.practice-card:hover { transform:translateY(-8px); border-color:var(--gold); background:rgba(19,45,80,0.4); box-shadow:0 20px 40px rgba(0,0,0,0.4), var(--gold-glow); }
.practice-card:hover::before { transform:scaleX(1); }
.practice-card .card-badge { display:inline-block; font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--bg-dark); background:var(--gold-gradient); padding:4px 12px; border-radius:20px; margin-bottom:14px; box-shadow:0 2px 10px rgba(200,165,90,0.3); }
.practice-card .card-icon { width:56px; height:56px; border-radius:14px; background:linear-gradient(135deg, rgba(200,165,90,0.15) 0%, rgba(11,26,47,0.9) 100%); border:1px solid var(--glass-border); display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:var(--transition); }
.practice-card .card-icon svg { width:26px; height:26px; stroke:var(--gold-light); stroke-width:1.9; }
.practice-card:hover .card-icon { background:var(--gold-gradient); border-color:transparent; box-shadow:var(--gold-glow); transform:scale(1.1) rotate(3deg); }
.practice-card:hover .card-icon svg { stroke:var(--bg-dark); }
.practice-card h3 { font-size:1.25rem; margin-bottom:12px; color:var(--text); }
.practice-card p { font-size:0.88rem; color:var(--text-muted); line-height:1.7; }
.practice-card .card-arrow { margin-top:20px; color:var(--gold-light); font-size:0.85rem; font-weight:600; display:flex; align-items:center; gap:8px; transition:var(--transition); }
.practice-card:hover .card-arrow { transform:translateX(6px); color:var(--gold); }

/* ============================================
   TEAM
   ============================================ */
.team { background:var(--bg-section); border-top:1px solid rgba(255,255,255,0.03); }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.team-card { text-align:center; padding:36px 24px; background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius); transition:var(--transition); backdrop-filter:blur(12px); position:relative; overflow:hidden; }
.team-card:hover { transform:translateY(-8px); border-color:var(--gold); box-shadow:0 20px 40px rgba(0,0,0,0.4); }
.team-avatar { width:130px; height:130px; border-radius:50%; margin:0 auto 20px; overflow:hidden; border:3px solid var(--glass-border); transition:var(--transition); position:relative; box-shadow:0 8px 25px rgba(0,0,0,0.3); }
.team-avatar img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.team-card:hover .team-avatar img { transform:scale(1.1); }
.team-card:hover .team-avatar { border-color:var(--gold); box-shadow:0 0 35px rgba(200,165,90,0.4); }
.team-card h3 { font-size:1.2rem; margin-bottom:4px; color:var(--text); }
.team-card .role { color:var(--gold); font-size:0.82rem; font-weight:600; margin-bottom:12px; letter-spacing:0.5px; }
.team-card p { font-size:0.82rem; color:var(--text-muted); line-height:1.6; }

/* Brand social links */
.team-card .social-links { display:flex; justify-content:center; gap:12px; margin-top:18px; }
.team-card .social-links a { width:40px; height:40px; border-radius:50%; border:1px solid var(--glass-border); background:rgba(200,165,90,0.1); display:flex; align-items:center; justify-content:center; transition:var(--transition); box-shadow:0 4px 12px rgba(0,0,0,0.2); }
.team-card .social-links a svg { width:18px; height:18px; stroke:var(--gold-light); stroke-width:2; transition:var(--transition); display:block; }

/* Instagram hover */
.team-card .social-links a.social-link-instagram:hover {
  background:linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color:transparent;
  box-shadow:0 6px 20px rgba(220,39,67,0.4);
  transform:translateY(-4px) scale(1.1);
}
.team-card .social-links a.social-link-instagram:hover svg { stroke:#ffffff; }

/* LinkedIn hover */
.team-card .social-links a.social-link-linkedin:hover {
  background:linear-gradient(135deg, #0077b5 0%, #005582 100%);
  border-color:transparent;
  box-shadow:0 6px 20px rgba(0,119,181,0.4);
  transform:translateY(-4px) scale(1.1);
}
.team-card .social-links a.social-link-linkedin:hover svg { stroke:#ffffff; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background:var(--bg-dark); }
.testimonial-slider { position:relative; overflow:hidden; }
.testimonial-track { display:flex; transition:transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-item { min-width:100%; padding:0 40px; }
.testimonial-card { max-width:760px; margin:0 auto; text-align:center; padding:44px 36px; background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius); backdrop-filter:blur(12px); box-shadow:0 15px 40px rgba(0,0,0,0.3); }
.testimonial-card .quote { font-size:3rem; color:var(--gold); opacity:0.5; line-height:1; margin-bottom:12px; font-family:'Playfair Display',serif; }
.testimonial-card blockquote { font-family:'Playfair Display',serif; font-size:1.15rem; font-style:italic; color:var(--text); margin-bottom:24px; line-height:1.8; }
.testimonial-card .author { font-weight:700; color:var(--gold-light); font-size:1rem; }
.testimonial-card .author span { display:block; font-weight:400; color:var(--text-muted); font-size:0.82rem; margin-top:4px; font-family:'Inter',sans-serif; }
.slider-controls { display:flex; justify-content:center; gap:14px; margin-top:28px; }
.slider-btn { width:44px; height:44px; border-radius:50%; border:1px solid var(--glass-border); background:var(--glass); color:var(--text); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:var(--transition); font-size:1.1rem; backdrop-filter:blur(10px); }
.slider-btn:hover { border-color:var(--gold); color:var(--gold-light); background:rgba(200,165,90,0.1); transform:scale(1.1); }
.slider-dots { display:flex; align-items:center; gap:8px; }
.slider-dots .dot { width:8px; height:8px; border-radius:50%; background:var(--text-muted); opacity:0.3; cursor:pointer; transition:var(--transition); border:none; }
.slider-dots .dot.active { opacity:1; background:var(--gold-gradient); width:24px; border-radius:5px; box-shadow:0 0 10px rgba(200,165,90,0.4); }

/* ============================================
   CONTACT — COMPACT
   ============================================ */
.contact { background:var(--bg-section); border-top:1px solid rgba(255,255,255,0.03); padding:80px 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:40px; align-items:start; }
.contact-info h3 { font-size:1.6rem; margin-bottom:12px; color:var(--text); }
.contact-info > p { color:var(--text-muted); margin-bottom:28px; font-size:0.92rem; }
.contact-item { display:flex; gap:14px; margin-bottom:20px; align-items:flex-start; }
.contact-icon { width:42px; height:42px; border-radius:10px; background:linear-gradient(135deg, rgba(200,165,90,0.15) 0%, rgba(11,26,47,0.9) 100%); border:1px solid var(--glass-border); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--transition); }
.contact-icon svg { width:20px; height:20px; stroke:var(--gold-light); stroke-width:1.9; }
.contact-item h4 { font-size:0.9rem; margin-bottom:2px; color:var(--text); }
.contact-item p { color:var(--text-muted); font-size:0.85rem; line-height:1.5; }
.contact-form { padding:32px; background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius); backdrop-filter:blur(12px); box-shadow:0 15px 40px rgba(0,0,0,0.3); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:0.78rem; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-bottom:6px; font-weight:600; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:12px 16px; background:rgba(4,9,18,0.6); border:1px solid var(--glass-border); border-radius:8px; color:var(--text); font-family:'Inter',sans-serif; font-size:0.88rem; transition:var(--transition); outline:none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(200,165,90,0.15); background:rgba(11,26,47,0.8); }
.form-group textarea { min-height:100px; resize:vertical; }
.form-group select option { background:var(--bg-dark); color:var(--text); }
.btn-submit { width:100%; padding:14px; background:var(--gold-gradient); color:var(--bg-dark); font-weight:700; font-size:0.88rem; border:none; border-radius:8px; cursor:pointer; transition:var(--transition); text-transform:uppercase; letter-spacing:1.5px; box-shadow:0 6px 25px rgba(200,165,90,0.25); }
.btn-submit:hover { transform:translateY(-2px); box-shadow:0 12px 35px rgba(200,165,90,0.4); }

/* ============================================
   FOOTER — COMPACT
   ============================================ */
.footer { background:var(--bg-dark); padding:48px 0 20px; border-top:1px solid rgba(255,255,255,0.06); }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:32px; margin-bottom:32px; }
.footer-brand .nav-logo { margin-bottom:16px; display:inline-block; }
.footer-brand .nav-logo img { height:80px; filter:drop-shadow(0 0 10px rgba(200,165,90,0.5)) brightness(1.15); transform:scale(1); transform-origin:left center; }
.footer-brand p { color:var(--text-muted); font-size:0.82rem; max-width:280px; line-height:1.6; }
.footer h4 { font-size:0.88rem; margin-bottom:14px; color:var(--gold-light); font-weight:700; letter-spacing:0.5px; text-transform:uppercase; }
.footer ul { list-style:none; }
.footer ul li { margin-bottom:8px; }
.footer ul a { color:var(--text-muted); font-size:0.82rem; transition:var(--transition); }
.footer ul a:hover { color:var(--gold-light); padding-left:4px; }
.footer-bottom { padding-top:20px; border-top:1px solid rgba(255,255,255,0.06); display:flex; justify-content:space-between; align-items:center; font-size:0.78rem; color:var(--text-muted); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity:0; transform:translateY(35px); transition:opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.15s; }
.reveal-delay-2 { transition-delay:0.3s; }
.reveal-delay-3 { transition-delay:0.45s; }
.reveal-delay-4 { transition-delay:0.6s; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float { position:fixed; bottom:28px; right:28px; z-index:999; width:60px; height:60px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 25px rgba(37,211,102,0.45); transition:var(--transition); animation:bounce-in 0.6s ease 1s both; }
.whatsapp-float:hover { transform:scale(1.12); box-shadow:0 8px 35px rgba(37,211,102,0.6); }
.whatsapp-float::after { content:'Fale conosco'; position:absolute; right:72px; top:50%; transform:translateY(-50%); background:var(--bg-dark); color:var(--text); padding:8px 16px; border-radius:8px; font-size:0.78rem; white-space:nowrap; opacity:0; transition:var(--transition); pointer-events:none; border:1px solid var(--glass-border); box-shadow:0 8px 25px rgba(0,0,0,0.4); }
.whatsapp-float:hover::after { opacity:1; }
@keyframes bounce-in { 0%{transform:scale(0);opacity:0;} 60%{transform:scale(1.15);} 100%{transform:scale(1);opacity:1;} }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top { position:fixed; bottom:28px; left:28px; z-index:999; width:46px; height:46px; border-radius:50%; background:var(--glass); border:1px solid var(--glass-border); color:var(--gold-light); font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:var(--transition); opacity:0; pointer-events:none; backdrop-filter:blur(12px); box-shadow:0 6px 20px rgba(0,0,0,0.3); }
.back-to-top.visible { opacity:1; pointer-events:auto; }
.back-to-top:hover { background:var(--gold-gradient); color:var(--bg-dark); border-color:transparent; box-shadow:var(--gold-glow); transform:translateY(-3px); }

/* ============================================
   LGPD CHECKBOX
   ============================================ */
.lgpd-group { margin-top:8px; margin-bottom:18px; }
.checkbox-container { display:flex; align-items:flex-start; gap:10px; cursor:pointer; font-size:0.82rem; color:var(--text-muted); line-height:1.5; user-select:none; }
.checkbox-container input { position:absolute; opacity:0; cursor:pointer; height:0; width:0; }
.checkmark { width:20px; height:20px; border:1px solid var(--glass-border); border-radius:5px; background:rgba(4,9,18,0.6); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--transition); margin-top:2px; }
.checkbox-container:hover input ~ .checkmark { border-color:var(--gold); }
.checkbox-container input:checked ~ .checkmark { background:var(--gold-gradient); border-color:transparent; }
.checkmark:after { content:""; display:none; width:5px; height:10px; border:solid var(--bg-dark); border-width:0 2px 2px 0; transform:rotate(45deg); margin-bottom:2px; }
.checkbox-container input:checked ~ .checkmark:after { display:block; }
.lgpd-link { color:var(--gold-light); text-decoration:underline; transition:var(--transition); }
.lgpd-link:hover { color:var(--gold); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner { position:fixed; bottom:-160px; left:0; right:0; z-index:10000; background:rgba(4,9,18,0.95); backdrop-filter:blur(20px); border-top:1px solid var(--glass-border); padding:18px 24px; display:flex; align-items:center; justify-content:space-between; gap:20px; transition:bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow:0 -10px 40px rgba(0,0,0,0.5); }
.cookie-banner.show { bottom:0; }
.cookie-content p { color:var(--text-muted); font-size:0.85rem; margin:0; line-height:1.5; }
.cookie-content a { color:var(--gold-light); text-decoration:underline; }
.btn-cookie { padding:12px 24px; background:var(--gold-gradient); color:var(--bg-dark); border:none; border-radius:6px; font-weight:700; cursor:pointer; transition:var(--transition); white-space:nowrap; font-size:0.82rem; text-transform:uppercase; letter-spacing:0.5px; }
.btn-cookie:hover { transform:translateY(-2px); box-shadow:var(--gold-glow); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:1024px) {
  .practice-grid-focus { grid-template-columns:repeat(3,1fr); gap:16px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .contact-grid { grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:900px) {
  .practice-grid-focus { grid-template-columns:1fr; max-width:500px; margin:0 auto; }
  .team-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .contact-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  section { padding:70px 0; }
  .nav-links, .nav-cta { display:none; }
  .menu-toggle { display:flex; }
  .nav-links.active { display:flex; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:rgba(4,9,18,0.98); padding:24px; gap:18px; backdrop-filter:blur(24px); border-bottom:1px solid var(--glass-border); }
  .nav-logo img { height:80px; transform:scale(1); }
  .navbar.scrolled .nav-logo img { height:60px; }
  .hero { padding:120px 0 60px; }
  .hero h1 { font-size:2rem; }
  .hero p { font-size:1rem; }
  .hero-stats { flex-direction:column; gap:20px; margin-top:40px; padding-top:28px; }
  .hero-stats .stat h3 { font-size:2rem; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { padding:14px 28px; font-size:0.85rem; width:100%; text-align:center; justify-content:center; }
  .about-grid { grid-template-columns:1fr; gap:36px; }
  .about-features { grid-template-columns:1fr; }
  .about-image { height:280px; }
  .practice-card { padding:28px 22px; }
  .team-card { padding:28px 20px; }
  .team-avatar { width:110px; height:110px; }
  .section-header { margin-bottom:40px; }
  .contact { padding:60px 0; }
  .contact-form { padding:24px; }
  .form-row { grid-template-columns:1fr; }
  .footer { padding:36px 0 16px; }
  .footer-grid { grid-template-columns:1fr; gap:24px; }
  .footer-brand .nav-logo img { height:60px; }
  .testimonial-item { padding:0 12px; }
  .testimonial-card { padding:32px 24px; }
  .testimonial-card blockquote { font-size:1rem; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .cookie-banner { flex-direction:column; align-items:flex-start; gap:14px; padding:14px 18px; }
  .btn-cookie { width:100%; text-align:center; }
}
