/* ===== GLOBAL ===== */
:root {
  --primary: #0077E6;
  --primary-hover: #0055BB;
  --bg-dark: #0A0A0A;
  --bg-darker: #050505;
  --bg-gray: #111111;
  --bg-card: #161616;
  --text-muted: #9a9a9a;
  --white: #ffffff;
  --green: #33AF23;
  --border: rgba(255,255,255,0.08);
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  margin: 0;
}

h1, h2, h3, h4, h5, .logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

a { text-decoration: none; }

.text-primary { color: var(--primary) !important; }
.text-muted-custom { color: var(--text-muted); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 2px 30px rgba(0,119,230,0.15);
}

.navbar { padding: 14px 0; }

.navbar-logo {
  height: 54px;
  width: auto;
  border-radius: 6px;
}

.navbar-logo-big {
  height: 72px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.8);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover { color: var(--primary); }

.dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
}
.dropdown-item {
  color: rgba(255,255,255,0.8);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 14px;
}
.dropdown-item:hover { background: rgba(0,119,230,0.15); color: var(--primary); }

.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: invert(1); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 500px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 10px 28px;
  color: #fff;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-1px); }

.btn-outline-light {
  border-radius: 500px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.btn-primary-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  border-radius: 500px;
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 20px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-primary-outline:hover { background: var(--primary); color: #fff; }

.btn-whatsapp {
  background: var(--green);
  border-radius: 500px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover { background: #2a9a1c; color: #fff; transform: translateY(-1px); }

.btn-waze {
  background: #33CCFF;
  border-radius: 500px;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 10px 26px;
  border: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
}
.btn-waze:hover { background: #00b8e6; color: #000; transform: translateY(-1px); }

.map-box {
  width: 100%;
  max-width: 420px;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,119,230,0.2);
}

/* ===== TICKER ===== */
.ticker-wrap {
  position: relative;
  z-index: 999;
  background: linear-gradient(90deg, #003a99 0%, #0077E6 40%, #00AAFF 50%, #0077E6 60%, #003a99 100%);
  overflow: hidden;
  height: 56px;
  display: flex;
  align-items: center;
  margin-top: 92px;
  box-shadow: 0 4px 24px rgba(0,119,230,0.45);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255,255,255,0.35);
}

.ticker-dot {
  font-size: 1.1rem !important;
  letter-spacing: 0 !important;
  opacity: 0.7;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  background: #0a0a0a;
  padding-top: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1800&q=85') center/cover no-repeat;
  opacity: 0.22;
  filter: saturate(0.4);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 50%, rgba(0,119,230,0.35) 0%, transparent 65%),
    linear-gradient(to right, rgba(10,10,10,0.92) 30%, rgba(10,10,10,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-section .container { z-index: 2; }

.hero-tag {
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ===== SECTIONS ===== */
.section-dark { background: var(--bg-dark); }
.section-gray { background: var(--bg-gray); }

.section-tag {
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); }

.service-price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 14px 0 16px;
  letter-spacing: 1px;
}

.btn-service-cta {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 500px;
  padding: 10px 0;
  border: none;
  text-align: center;
  animation: pulse-blue 2s ease-in-out infinite;
  transition: background 0.2s, transform 0.15s;
}
.btn-service-cta:hover {
  background: var(--primary-hover);
  color: #fff;
  animation: none;
  transform: translateY(-2px);
}

@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,119,230,0.55); }
  50%       { box-shadow: 0 0 0 10px rgba(0,119,230,0); }
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== VALUES FLAGS ===== */
.values-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.value-flag {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 32px;
  min-width: 260px;
  flex: 1 1 240px;
  max-width: 320px;
  transition: transform 0.2s, border-color 0.2s;
}

.value-flag:hover {
  transform: translateY(-3px);
  border-left-color: var(--primary);
  border-color: var(--primary);
}

.value-flag-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.value-flag-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
}

/* ===== PLAN CARDS ===== */
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: border-color 0.2s;
}
.plan-card.plan-featured {
  border-color: var(--primary);
  background: #001428;
}

.plan-badge {
  display: inline-block;
  background: rgba(0,119,230,0.15);
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 500px;
  margin-bottom: 16px;
}

.plan-title {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.plan-list li {
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.plan-list li::before { content: '✓ '; color: var(--primary); font-weight: bold; }

/* ===== ABOUT STATS ===== */
.about-img-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* ===== REVIEWS ===== */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 500px;
  padding: 8px 20px;
}
.rating-score {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.rating-stars { color: #FFD700; }
.rating-count { color: var(--text-muted); font-size: 0.9rem; }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
}
.review-stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { color: var(--text-muted); font-style: italic; line-height: 1.7; }
.reviewer { color: var(--primary); font-family: 'Rajdhani', sans-serif; font-weight: 700; margin-top: 16px; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #060D1A 0%, #0A1830 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-sub { color: var(--text-muted); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
}
.footer-logo { font-size: 1.4rem; }
.footer-heading {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); transition: color 0.2s; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-links li:not(:has(a)) { color: var(--text-muted); font-size: 0.9rem; }
.footer-hr { border-color: var(--border); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--green);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(51,175,35,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(51,175,35,0.6); }

/* ===== STORIES ===== */
.stories-row {
  background: var(--bg-gray);
  padding: 16px 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.stories-row::-webkit-scrollbar { display: none; }

.stories-inner {
  display: flex;
  gap: 20px;
  padding: 0 5%;
  width: max-content;
  min-width: 100%;
  justify-content: center;
}

.story-bubble {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  flex-shrink: 0;
}

@property --story-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.story-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(
    from var(--story-angle),
    #0077E6,
    #00AAFF,
    #FFD000,
    #33AF23,
    #33AF23,
    #FFD000,
    #00AAFF,
    #0077E6
  );
  animation: story-ring-spin 2.5s linear infinite;
  transition: transform 0.2s;
}
.story-bubble:hover .story-ring { transform: scale(1.1); }

@keyframes story-ring-spin {
  from { --story-angle: 0deg; }
  to   { --story-angle: 360deg; }
}

.story-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--bg-gray);
  overflow: hidden;
  background: var(--bg-card);
}
.story-ring-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-bubble-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* Stories title */
.stories-section {
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border);
}

.stories-heading {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 18px 5% 0;
  margin: 0;
  text-transform: uppercase;
}

/* MODAL */
.story-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.story-modal.active {
  opacity: 1;
  pointer-events: all;
}

.story-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 90vh;
  max-height: 800px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

/* Progress bars */
.story-progress {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  gap: 5px;
}
.sp-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}
.sp-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
}

/* Story header */
.story-header {
  position: absolute;
  top: 28px;
  left: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.story-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.story-header-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.story-header-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Close */
.story-close {
  position: absolute;
  top: 28px;
  right: 14px;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.story-close:hover { background: rgba(0,0,0,0.8); }

/* Image */
.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text overlay */
.story-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.story-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 500px;
  margin-bottom: 8px;
}
.story-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.story-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Arrows */
.story-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(0,119,230,0.5);
}
.story-arrow:hover { background: var(--primary-hover); transform: translateY(-50%) scale(1.1); }
.story-arrow-prev { left: 12px; }
.story-arrow-next { right: 12px; }

@media (max-width: 480px) {
  .story-container { max-width: 100%; height: 100vh; max-height: 100vh; border-radius: 0; }
  .story-modal { align-items: flex-start; }
}

/* ===== PAGE HERO (subpáginas) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0a0a0a, #001428);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-item, .breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-separator { color: var(--border); }

/* ===== CONTATO ===== */
.contact-form .form-control,
.contact-form .form-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--bg-card);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(0,119,230,0.15);
}
.contact-form .form-control::placeholder { color: var(--text-muted); }
.contact-form label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 6px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-text strong { display: block; color: var(--white); font-family: 'Rajdhani', sans-serif; }
.contact-info-text span { color: var(--text-muted); font-size: 0.95rem; }

/* ===== DEPOIMENTOS / PHONE MOCKUP ===== */
.dep-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: linear-gradient(145deg, #1e1e1e, #121212);
  border: 2px solid #2a2a2a;
  border-radius: 44px;
  padding: 18px 12px;
  position: relative;
  box-shadow:
    0 0 0 1px #0a0a0a,
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 90px;
  width: 3px;
  height: 36px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 46px 0 #2a2a2a;
}
.phone-mockup::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 110px;
  width: 3px;
  height: 56px;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
}

.phone-screen {
  background: #0d0d0d;
  border-radius: 32px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 100px;
  height: 22px;
  background: #1e1e1e;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  flex-shrink: 0;
}

.phone-header-bar {
  padding: 12px 16px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.ph-logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 1px;
}
.ph-logo span { color: var(--primary); }
.ph-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,119,230,0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

.phone-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.ts-card {
  position: absolute;
  inset: 0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.ts-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ts-stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.ts-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.83rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

.ts-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ts-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.ts-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
}
.ts-badge {
  font-size: 0.72rem;
  color: var(--primary);
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}

.phone-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 10px 0 14px;
  flex-shrink: 0;
}
.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, width 0.3s;
}
.phone-dot.active {
  background: var(--primary);
  width: 18px;
  border-radius: 3px;
}

.dep-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 16px 0 28px;
}

.dep-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dep-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.dep-feature-icon {
  width: 38px;
  height: 38px;
  background: rgba(0,119,230,0.1);
  border: 1px solid rgba(0,119,230,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ===== AVALIAÇÕES GOOGLE CARROSSEL ===== */
.reviews-carousel-section {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.reviews-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  padding: 8px 0 12px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 38s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.grev-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  width: 310px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.grev-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.grev-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.grev-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.grev-info {
  flex: 1;
  min-width: 0;
}

.grev-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 2px;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grev-stars {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

.grev-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.grev-g {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.grev-quote {
  font-size: 3.5rem;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  margin-top: -4px;
  flex-shrink: 0;
  user-select: none;
}

.grev-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .stats-row { gap: 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .phone-mockup { width: 220px; height: 450px; }
  .grev-card { width: 270px; padding: 18px 18px; }
}
