:root {
  --primary-color: #ffffff;
  --secondary-color: #00d4ff;
  --dark-bg: #0a0e27;
  --card-bg: #151932;
  --text-light: #ffffff; /* branco total agora */
  --gradient-1: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light) !important;
  overflow-x: hidden;
}

/* ========================================
   TIPOGRAFIA - 100% BRANCO
   ======================================== */
p,
li,
span,
.small,
.lead,
.footer p,
.footer-bottom,
.section-title p,
.hero-subtitle,
.feature-card p,
.pricing-period,
.pricing-features li,
.service-content p,
.testimonial-card p,
.client-logo span,
.client-logo p,
.footer-links a,
.stat-label,
.pricing-header h3,
.service-content h4,
.footer-bottom p {
  color: var(--text-light) !important;
}

/* Ícones também brancos */
i,
.bi {
  color: var(--text-light) !important;
}

/* Títulos sempre brancos */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-light) !important;
  opacity: 1 !important;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar-brand img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link:hover:after {
  width: 80%;
}
.btn-primary-custom {
  background: var(--gradient-1);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: url('../images/home-bg.jpg') no-repeat center center;
  vertical-align: middle;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}
.hero-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* ⬅ opacidade da imagem */
  z-index: 0;
  top: 0;
  left: 0;
}
.hero-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-image { position: relative; z-index: 2; }
.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 102, 255, 0.4));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  background: var(--card-bg);
  padding: 1.5rem 0;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}
.stat-item { text-align: center; padding: 1rem; }
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section { padding: 100px 0; background: var(--dark-bg); }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-light) !important;
}
.section-title .underline {
  width: 100px;
  height: 4px;
  background: var(--gradient-1);
  margin: 0 auto;
  border-radius: 2px;
}
.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}
.feature-card:hover::before { opacity: 0.05; }
.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}
.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: var(--text-light) !important;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}
.pricing-card {
  background: var(--card-bg);
  border-radius: 25px;
  padding: 3rem 2rem;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 70px rgba(0, 102, 255, 0.3);
}
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border-color: var(--primary-color);
  transform: scale(1.05);
}
.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-1);
  color: white;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-header h3 {
  color: var(--text-light) !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  color: var(--text-light) !important;
}
.pricing-features li i {
  color: var(--text-light) !important;
  margin-right: 0.8rem;
  font-size: 1.2rem;
}
.btn-pricing {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.btn-pricing:hover {
  background: var(--gradient-1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}
.pricing-card.featured .btn-pricing {
  background: var(--gradient-1);
  color: white;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section { padding: 100px 0; background: var(--dark-bg); }
.service-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}
.service-image {
  height: 200px;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}
.service-content { padding: 2rem; }
.service-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light) !important;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section { padding: 100px 0; background: var(--card-bg); }
.testimonial-card {
  background: var(--dark-bg);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}
.stars { color: #fbbf24; font-size: 1.5rem; margin-bottom: 1rem; }
.google-badge {
  display: inline-block;
  background: white;
  padding: 1rem 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}
.google-badge img { max-height: 150px; }

/* ========================================
   CLIENTS SECTION
   ======================================== */
.clients-section { padding: 100px 0; background: var(--dark-bg); }
.client-logo {
  background: white;
  border-radius: 15px;
  padding: 0.1rem;
  height: 150px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.client-logo:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--card-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo img { height: 80px; margin-bottom: 1rem; }
.footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light) !important;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  color: var(--text-light) !important;
}
.footer-links a:hover { color: var(--primary-color); }
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-light);
  margin-right: 0.8rem;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--gradient-1);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-light) !important;
}

/* ========================================
   FLOATING BUTTON
   ======================================== */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.floating-btn:hover { transform: scale(1.05); }
.floating-btn img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .stat-number { font-size: 2rem; }
  .section-title h2 { font-size: 2rem; }
  .pricing-card.featured { transform: scale(1); }
  .floating-btn img { max-width: 150px; }
}

/* Corrigir texto cinza no botão CONTRATAR AGORA */
.btn-pricing {
    color: var(--text-light) !important; /* força branco no estado normal */
}

/* E garantir que o botão destacado também fique branco */
.pricing-card.featured .btn-pricing {
    color: var(--text-light) !important;
}

/* Remover sublinhado dos links do footer */
.footer-links a {
    text-decoration: none !important;
}
