/* ================================================
   RECEBA SMS - Clean Layout
   ================================================ */

/* Navbar */
.rs-navbar {
  background: var(--primary);
  padding: 0.75rem 0;
  box-shadow: none;
  transition: all 0.3s ease;
}
.rs-navbar.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.rs-navbar .navbar-toggler-icon {
  filter: brightness(10);
}
.rs-logo {
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
}

/* Hero */
.rs-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.min-vh-80 { min-height: 70vh; }

.rs-badge-pill {
  display: inline-block;
  background: rgba(7, 75, 139, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(7, 75, 139, 0.15);
}

.rs-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.rs-highlight {
  color: var(--primary);
  position: relative;
}
.rs-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(7, 75, 139, 0.12);
  border-radius: 4px;
  z-index: -1;
}

.rs-hero-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 500px;
}

/* Primary button */
.rs-btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.rs-btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7, 75, 139, 0.3);
}

.rs-btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 600;
  padding: 0.5rem 2rem;
  background: transparent;
  transition: all 0.2s ease;
}
.rs-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Trust row */
.rs-trust-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.rs-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.9rem;
}
.rs-trust-item i {
  color: var(--primary);
  font-size: 1rem;
}

/* Phone mockup */
.rs-hero-visual {
  display: flex;
  justify-content: center;
}
.rs-phone-mockup {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
  width: 340px;
  overflow: hidden;
  animation: floatUp 3s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.rs-phone-header {
  background: #f1f5f9;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
}
.rs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}
.rs-phone-body {
  padding: 8px;
}
.rs-sms-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 4px;
  transition: background 0.2s;
}
.rs-sms-item:hover {
  background: #f8fafc;
}
.rs-sms-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rs-sms-content {
  flex: 1;
  min-width: 0;
}
.rs-sms-content strong {
  display: block;
  font-size: 0.9rem;
  color: #1e293b;
}
.rs-sms-content small {
  color: #64748b;
  font-size: 0.8rem;
}
.rs-code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.rs-sms-time {
  color: #94a3b8;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.rs-sms-pending {
  opacity: 0.6;
}

/* Stats */
.rs-stats {
  background: var(--primary);
  padding: 2.5rem 0;
  color: #fff;
}
.rs-stats h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}
.rs-stats p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Sections */
.rs-section {
  padding: 5rem 0;
}
.rs-section-light {
  background: #f8fafc;
}
.rs-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
}
.rs-section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Steps */
.rs-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.2s ease;
}
.rs-step-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(7, 75, 139, 0.08);
}
.rs-step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(7, 75, 139, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.rs-step-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1e293b;
}
.rs-step-card p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Service cards */
.rs-service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rs-service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(7, 75, 139, 0.1);
  transform: translateY(-2px);
}
.rs-service-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.rs-service-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e293b;
}

/* Check list */
.rs-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rs-check-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 1rem;
}
.rs-check-list i {
  color: #22C55E;
  font-size: 1.1rem;
}

/* Price card */
.rs-price-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}
.rs-price-header {
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 2rem;
}
.rs-price-header h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.rs-price-header p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}
.rs-price-body {
  padding: 1.5rem 2rem;
}
.rs-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  color: #334155;
}
.rs-price-row:last-child {
  border-bottom: none;
}
.rs-price-value {
  font-weight: 600;
  color: var(--primary);
}
.rs-price-row-muted {
  color: #94a3b8;
}
.rs-price-row-muted .rs-price-value {
  color: #94a3b8;
  font-weight: 400;
}

/* CTA */
.rs-cta {
  background: var(--primary);
  padding: 4rem 0;
  color: #fff;
}
.rs-cta h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.rs-cta p {
  opacity: 0.85;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .rs-hero {
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .rs-hero-title {
    font-size: 2.2rem;
  }
  .rs-hero-subtitle {
    font-size: 1rem;
  }
  .rs-trust-row {
    gap: 1rem;
  }
  .rs-section-title {
    font-size: 1.7rem;
  }
  .rs-stats h3 {
    font-size: 1.5rem;
  }
}

/* Navbar always visible */
.rs-navbar .nav-link { opacity: 0.85; }
.rs-navbar.scrolled .nav-link { opacity: 1; }
