/* ============================================
   DIAS CONTABILIDADE — Landing Page Styles
   Primary: #0e315e | Secondary: #daac58
   Optimized for conversion (CRO)
   ============================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0e315e;
  --primary-light: #143d72;
  --primary-dark: #091f3d;
  --primary-900: #050f1e;
  --gold: #daac58;
  --gold-light: #e6c47d;
  --gold-dark: #c49640;
  --gold-glow: rgba(218, 172, 88, 0.25);
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #eef1f6;
  --gray-200: #dce1ea;
  --gray-300: #b8c1d0;
  --gray-400: #8892a5;
  --gray-500: #636e83;
  --gray-600: #4a5468;
  --text: #1a2332;
  --text-muted: #5c6a7e;
  --green: #25D366;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;
  --shadow-sm: 0 1px 3px rgba(14, 49, 94, 0.06);
  --shadow-md: 0 4px 16px rgba(14, 49, 94, 0.08);
  --shadow-lg: 0 8px 32px rgba(14, 49, 94, 0.12);
  --shadow-xl: 0 16px 48px rgba(14, 49, 94, 0.16);
  --shadow-gold: 0 4px 24px rgba(218, 172, 88, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(218, 172, 88, 0.45);
}

.btn-gold:active {
  transform: translateY(0);
}

.gold-text {
  color: var(--gold);
}

/* === URGENCY BANNER === */
.urgency-banner {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  color: var(--white);
  padding: 12px 0;
  position: relative;
  z-index: 1001;
  animation: fadeInDown 0.5s ease both;
}

.urgency-banner.hidden {
  display: none;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.urgency-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.urgency-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.urgency-text strong {
  font-weight: 700;
}

.urgency-text a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
}

.urgency-text a:hover {
  opacity: 0.9;
}

.urgency-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition);
}

.urgency-close:hover {
  color: var(--white);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

/* Push content below urgency banner */
body:has(.urgency-banner:not(.hidden)) .hero {
  padding-top: 130px;
}

body:has(.urgency-banner:not(.hidden)) .navbar {
  top: 44px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(14, 49, 94, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  transition: var(--transition);
}

.navbar.scrolled .navbar-logo img {
  height: 40px;
  width: 40px;
}

.navbar-links {
  display: flex;
  gap: 32px;
}

.navbar-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 1px;
}

.navbar-links a:hover {
  color: var(--white);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  font-size: 13px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, var(--primary-900) 0%, var(--primary) 40%, var(--primary-light) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -100px;
  right: -150px;
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: var(--gold-light);
  bottom: 10%;
  left: -100px;
  animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: #4a7ab5;
  top: 40%;
  left: 50%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218, 172, 88, 0.12);
  border: 1px solid rgba(218, 172, 88, 0.2);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  animation: fadeInUp 0.6s ease 0.3s both;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-cta-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  padding-left: 4px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

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

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-photo-card {
  position: relative;
  width: min(360px, 100%);
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
}

.hero-photo-frame {
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-photo-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 6px 2px;
}

.hero-photo-caption strong {
  color: var(--white);
  font-size: 0.95rem;
}

.hero-photo-caption span {
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  text-align: right;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  padding-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-scroll-indicator svg {
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
  position: relative;
  z-index: 5;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
}

.trust-bar-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.trust-bar-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.trust-bar-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* === SERVICES === */
.services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(218, 172, 88, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(14, 49, 94, 0.08), rgba(14, 49, 94, 0.03));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.service-cta-text {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  transition: var(--transition);
}

.service-card:hover .service-cta-text {
  color: var(--primary);
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-glow);
}

.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(218, 172, 88, 0.12), rgba(218, 172, 88, 0.04));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-word {
  display: block;
  min-height: 48px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.7rem);
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--primary);
}

.about-highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.highlight-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(160deg, var(--primary-900), var(--primary));
}

.testimonials .section-tag {
  color: var(--gold-light);
}

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

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218, 172, 88, 0.12);
  border: 1px solid rgba(218, 172, 88, 0.25);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.google-badge svg {
  color: var(--gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-dark);
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-author span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* === FAQ SECTION === */
.faq-section {
  background: var(--gray-50);
}

.faq-grid {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(218, 172, 88, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: var(--transition);
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: rgba(218, 172, 88, 0.04);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--primary);
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.faq-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--white);
  padding: 80px 0;
}

.cta-box {
  position: relative;
  background: linear-gradient(160deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(218, 172, 88, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  filter: drop-shadow(0 4px 20px rgba(218, 172, 88, 0.3));
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

.cta-guarantee {
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer {
  background: var(--primary-900);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  transition: var(--transition);
}

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

.footer-link svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
}

.footer-address {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-address svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 4px;
}

.footer-address small {
  display: block;
  margin-top: 4px;
  opacity: 0.6;
  font-size: 0.82rem;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

/* === FLOATING WHATSAPP + TOOLTIP === */
.floating-whatsapp-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-tooltip {
  background: var(--white);
  color: var(--primary-dark);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeInTooltip 0.5s ease 3s both;
  position: relative;
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  border: 6px solid transparent;
  border-top-color: var(--white);
}

.floating-tooltip.hidden {
  display: none;
}

.tooltip-close {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: var(--transition);
}

.tooltip-close:hover {
  color: var(--text);
}

@keyframes fadeInTooltip {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.floating-whatsapp {
  width: 60px;
  height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  color: white;
  animation: fadeInUp 0.6s ease 1s both;
  flex-shrink: 0;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: wppPulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes wppPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
}

/* === SCROLL ANIMATIONS === */
.service-card,
.stat-card,
.testimonial-card,
.about-content,
.cta-box,
.faq-grid,
.trust-bar-inner {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible,
.stat-card.visible,
.testimonial-card.visible,
.about-content.visible,
.cta-box.visible,
.faq-grid.visible,
.trust-bar-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }
.service-card:nth-child(6) { transition-delay: 0.5s; }

.stat-card:nth-child(1) { transition-delay: 0s; }
.stat-card:nth-child(2) { transition-delay: 0.1s; }
.stat-card:nth-child(3) { transition-delay: 0.2s; }
.stat-card:nth-child(4) { transition-delay: 0.3s; }

.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-photo-card {
    width: 280px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: 2;
  }

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-highlights {
    align-items: center;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(14, 49, 94, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-visual {
    display: flex;
    margin-top: 8px;
  }

  .hero-photo-card {
    width: min(280px, 82vw);
  }

  .hero-photo-caption {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .hero-photo-caption span {
    text-align: center;
  }

  .hero-badge {
    font-size: 12px;
  }

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

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .cta-box {
    padding: 48px 28px;
  }

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

  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .urgency-text {
    font-size: 0.82rem;
  }

  .floating-whatsapp-wrapper {
    bottom: 20px;
    right: 20px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .floating-tooltip {
    display: none;
  }
}

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

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

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

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .trust-item {
    justify-content: center;
    text-align: center;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-bar-item {
    justify-content: center;
    text-align: center;
  }

  .faq-item summary {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }

  .urgency-inner {
    font-size: 0.78rem;
    gap: 8px;
  }
}
