:root{
  --bg:#06111f;
  --bg2:#0a1b2f;
  --card:#10243a;
  --card2:#0d2035;
  --line:#1e3a56;
  --text:#ffffff;
  --muted:#9eb4c9;
  --cyan:#00c8ff;
  --cyan2:#007fbd;
  --green:#25d366;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

button,input,textarea{font-family:inherit}

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

:root {
  /* Site specific theme variables */
  --site-bg: #ffffff;
  --site-bg-light: #f7f9f6;
  --site-hero-bg: linear-gradient(135deg, #e5ffd6 0%, #ffffff 100%);
  --site-text: #1a2f1c;
  --site-muted: #607562;
  --site-green: #32e000;
  --site-green-dark: #229900;
  --site-pink: #f33a6f;
  --site-pink-hover: #e0285d;
  --site-dark-bg: #0c180e;
  --site-card-bg: #ffffff;
  --site-border: #e0eae2;
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 15px 24px;
  font-weight: 900;
  cursor: pointer;
  color: #00111c;
  background: linear-gradient(135deg, var(--cyan), #87edff);
  box-shadow: 0 18px 45px rgba(0, 200, 255, .20);
  transition: .2s;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-small {
  padding: 12px 18px;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--cyan);
  box-shadow: none;
}

.btn-danger {
  background: linear-gradient(135deg, #f33a6f, #ff7597);
  color: #fff;
  box-shadow: 0 10px 25px rgba(243, 58, 111, .20);
}

.btn-danger:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}


/* Site Wrapper Scoped Styles */
.site-wrapper {
  background: var(--site-bg);
  color: var(--site-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-wrapper h1, 
.site-wrapper h2, 
.site-wrapper h3, 
.site-wrapper h4 {
  color: var(--site-text);
  margin-top: 0;
  font-weight: 800;
}

.site-wrapper .header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  background: var(--site-dark-bg);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-wrapper .logo-text {
  font-size: 32px;
  font-weight: 900;
  color: var(--site-green);
  letter-spacing: -1.5px;
  text-transform: lowercase;
}

.site-wrapper .logo-image {
  height: 32px;
  width: auto;
  display: block;
}

.site-wrapper .logo-image-footer {
  height: 36px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.site-wrapper .header .nav {
  display: flex;
  gap: 25px;
}

.site-wrapper .header .nav a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-wrapper .header .nav a:hover {
  color: var(--site-green);
}

.site-wrapper .btn-customer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--site-green);
  color: #000;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 99px;
  border: none;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.site-wrapper .btn-customer:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.site-wrapper .hero {
  background: linear-gradient(135deg, #e5ffd6 0%, #ffffff 100%);
  padding: 60px 5% 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.site-wrapper .hero-bg-shape-1 {
  position: absolute;
  top: -150px;
  right: -50px;
  width: 320px;
  height: 650px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(50, 224, 0, 0.45) 0%, rgba(50, 224, 0, 0.15) 100%);
  transform: rotate(-40deg);
  z-index: 1;
  pointer-events: none;
}

.site-wrapper .hero-bg-shape-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50% 50% 50% 0;
  background: rgba(50, 224, 0, 0.35);
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
}

.site-wrapper .hero-main-content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 2;
  position: relative;
}

.site-wrapper .hero-text-content {
  flex: none;
  max-width: 550px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-wrapper .hero h1 {
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--site-text);
  margin: 0;
  font-weight: 900;
  text-align: center;
}

.site-wrapper .indent-green {
  color: var(--site-green);
  display: block;
  padding-left: 0;
  text-align: center;
}

.site-wrapper .hero-illustration {
  flex: none;
  max-width: min(100%, 300px);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 20px auto 0;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.site-wrapper .hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-wrapper .cep-search-section {
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  position: relative;
}

.site-wrapper .cep-search-section .cep-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--site-text);
  text-align: center;
}

.site-wrapper .cep-search-section .cep-form {
  width: 100%;
}

.site-wrapper .cep-search-section .cep-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--site-green);
  border-radius: 99px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.site-wrapper .cep-search-section .cep-input-group input {
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--site-text);
  font-weight: 700;
  width: 42%;
  outline: none;
}

.site-wrapper .cep-search-section .cep-input-group input::placeholder {
  color: #88998a;
  font-weight: 600;
}

.site-wrapper .cep-search-section .input-divider {
  width: 1px;
  height: 24px;
  background: var(--site-border);
  margin: 0 12px;
}

.site-wrapper .cep-search-section .cep-submit-btn {
  background: var(--site-pink);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.site-wrapper .cep-search-section .cep-submit-btn:hover {
  background: var(--site-pink-hover);
  transform: scale(1.05);
}

.site-wrapper .cep-search-section .cep-help-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  color: var(--site-text);
  text-decoration: underline;
  font-weight: 800;
}

.site-wrapper .plans-section {
  background: var(--site-bg);
  padding: 60px 5%;
}

.site-wrapper .section-title-center {
  font-size: 26px;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 800;
}

.site-wrapper .plans-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.site-wrapper .plans-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  padding: 15px 5px;
  width: 100%;
}

.site-wrapper .plans-carousel::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.site-wrapper .plan-card {
  flex: 0 0 85%; /* Shows 85% of card, leaving next card partially visible */
  scroll-snap-align: center;
  background: var(--site-card-bg);
  border-radius: 28px;
  border: 1px solid var(--site-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.site-wrapper .plan-card-image-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.site-wrapper .plan-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-wrapper .plan-card-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--site-card-bg);
  border-radius: 30px 30px 0 0;
}

.site-wrapper .plan-card-content {
  padding: 0 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.site-wrapper .plan-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--site-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.site-wrapper .plan-speed {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--site-text);
}

.site-wrapper .plan-price-wrap {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.site-wrapper .plan-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--site-text);
}

.site-wrapper .plan-period {
  font-size: 16px;
  font-weight: 600;
  color: var(--site-muted);
}

.site-wrapper .plan-discount {
  font-size: 14px;
  font-weight: 700;
  color: var(--site-muted);
  margin-top: 4px;
}

.site-wrapper .plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.site-wrapper .feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.site-wrapper .feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.site-wrapper .feature-icon.green {
  background: rgba(50, 224, 0, 0.12);
  color: var(--site-green-dark);
}

.site-wrapper .feature-icon.red {
  background: rgba(224, 30, 0, 0.1);
  color: #ff3366;
}

.site-wrapper .feature-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.site-wrapper .feature-text strong {
  font-weight: 800;
  color: var(--site-text);
}

.site-wrapper .feature-text.red-highlight strong {
  color: #ff3366;
}

.site-wrapper .feature-text span {
  font-size: 12px;
  color: var(--site-muted);
  margin-top: 2px;
}

.site-wrapper .plan-description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--site-muted);
  margin: 0 0 20px;
  font-weight: 600;
}

.site-wrapper .btn-plan-select {
  background: var(--site-green);
  color: #000;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 15px;
  font-weight: 800;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(50, 224, 0, 0.15);
}

.site-wrapper .btn-plan-select:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.site-wrapper .plan-terms {
  text-align: center;
  font-size: 13px;
  color: var(--site-muted);
  text-decoration: underline;
  font-weight: 600;
}

.site-wrapper .plan-terms:hover {
  color: var(--site-text);
}

.site-wrapper .plan-card.active {
  border-color: var(--site-green);
  box-shadow: 0 15px 35px rgba(50, 224, 0, 0.08);
}

.site-wrapper .carousel-nav-btn {
  background: #ffffff;
  border: 1px solid var(--site-border);
  color: var(--site-text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.site-wrapper .carousel-nav-btn:hover {
  background: var(--site-bg-light);
  transform: scale(1.05);
}

.site-wrapper .carousel-nav-btn.prev {
  left: 5px;
}

.site-wrapper .carousel-nav-btn.next {
  right: 5px;
}

.site-wrapper .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.site-wrapper .carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--site-border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.site-wrapper .carousel-dots .dot.active {
  background: var(--site-text);
  width: 18px;
  border-radius: 4px;
}

.site-wrapper .benefits-section {
  background: var(--site-bg-light);
  padding: 60px 5%;
}

.site-wrapper .benefits-carousel-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
}

.site-wrapper .benefits-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.site-wrapper .benefits-carousel {
  display: flex;
  gap: 20px;
  padding: 10px 5px;
}

.site-wrapper .benefit-card {
  flex: 0 0 80%;
  background: #ffffff;
  border: 1px solid var(--site-border);
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-wrapper .benefit-icon {
  color: var(--site-text);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.site-wrapper .benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  color: var(--site-text);
}

.site-wrapper .benefit-card p {
  font-size: 14px;
  color: var(--site-muted);
  line-height: 1.5;
  margin: 0;
  font-weight: 600;
}

.site-wrapper .benefits-action-wrap {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.site-wrapper .btn-outline {
  background: transparent;
  border: 1px solid var(--site-text);
  color: var(--site-text);
  padding: 15px 25px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 450px;
}

.site-wrapper .btn-outline:hover {
  background: var(--site-text);
  color: #fff;
}

.site-wrapper .service-section {
  background: var(--site-bg);
  padding: 60px 5%;
}

.site-wrapper .service-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.site-wrapper .service-btn-new {
  background: var(--site-bg-light);
  border: 1px solid var(--site-border);
  border-radius: 20px;
  padding: 24px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.site-wrapper .service-btn-new:hover {
  transform: translateY(-3px);
  border-color: var(--site-green);
  box-shadow: 0 10px 20px rgba(50, 224, 0, 0.05);
}

.site-wrapper .service-icon-new {
  font-size: 30px;
  margin-bottom: 12px;
}

.site-wrapper .service-btn-new b {
  font-size: 16px;
  font-weight: 800;
  color: var(--site-text);
}

.site-wrapper .service-btn-new small {
  font-size: 12px;
  color: var(--site-muted);
  margin-top: 6px;
  font-weight: 600;
}

.site-wrapper .footer-new {
  background: var(--site-dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 5% 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-wrapper .footer-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.site-wrapper .footer-brand-column {
  max-width: 320px;
}

.site-wrapper .footer-brand-column p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 15px;
}

.site-wrapper .footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-wrapper .footer-links-column h4,
.site-wrapper .footer-legal-column h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
}

.site-wrapper .footer-links-column a {
  font-size: 14px;
  transition: color 0.2s ease;
  font-weight: 600;
}

.site-wrapper .footer-links-column a:hover {
  color: var(--site-green);
}

.site-wrapper .footer-legal-column p {
  font-size: 14px;
  line-height: 1.5;
}

.site-wrapper .mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  padding: 16px 20px;
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.site-wrapper .btn-sticky-pink {
  background: var(--site-pink);
  color: #fff;
  border: none;
  padding: 10px 0;
  width: 100%;
  border-radius: 99px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(243, 58, 111, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.site-wrapper .btn-sticky-pink span {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-wrapper .btn-sticky-pink strong {
  font-size: 15px;
  font-weight: 900;
}

.site-wrapper .btn-sticky-pink:hover {
  background: var(--site-pink-hover);
  transform: translateY(-1px);
}

.site-wrapper .floating-wa-btn {
  position: fixed;
  right: 20px;
  bottom: 95px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  z-index: 95;
  transition: all 0.2s ease;
}

.site-wrapper .floating-wa-btn:hover {
  transform: scale(1.08);
  background: #20ba5a;
}


/* Testimonials Section */
.site-wrapper .testimonials-section {
  background: var(--site-bg-light);
  padding: 60px 5%;
  text-align: center;
}

.site-wrapper .section-subtitle-center {
  font-size: 15px;
  color: var(--site-muted);
  max-width: 600px;
  margin: -20px auto 40px;
  font-weight: 600;
  line-height: 1.5;
}

.site-wrapper .testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.site-wrapper .testimonial-card {
  background: #ffffff;
  border: 1px solid var(--site-border);
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  flex: 1;
}

.site-wrapper .stars-row {
  display: flex;
  gap: 4px;
  color: var(--site-green);
  font-size: 18px;
}

.site-wrapper .testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--site-text);
  margin: 0;
  font-style: italic;
  font-weight: 600;
}

.site-wrapper .testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--site-border);
  padding-top: 15px;
}

.site-wrapper .testimonial-author strong {
  font-size: 15px;
  color: var(--site-text);
  font-weight: 800;
}

.site-wrapper .testimonial-author .testimonial-date {
  font-size: 13px;
  color: var(--site-muted);
  font-weight: 600;
}

/* FAQ Footer Section */
.site-wrapper .faq-footer-section {
  background: var(--site-dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 5% 150px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-wrapper .faq-container {
  max-width: 900px;
  margin: 0 auto 50px;
}

.site-wrapper .faq-section-title {
  font-size: 26px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 35px;
  font-weight: 800;
}

.site-wrapper .accordion-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-wrapper .accordion-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.site-wrapper .accordion-item.active {
  border-color: var(--site-green);
  background: rgba(255, 255, 255, 0.05);
}

.site-wrapper .accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  transition: all 0.2s ease;
}

.site-wrapper .accordion-trigger:hover {
  color: var(--site-green);
}

.site-wrapper .accordion-icon {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease;
  display: inline-block;
}

.site-wrapper .accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--site-green);
}

.site-wrapper .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.site-wrapper .accordion-content p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.site-wrapper .footer-bottom-links {
  max-width: 900px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 25px;
}

.site-wrapper .footer-links-left {
  display: flex;
  gap: 24px;
}

.site-wrapper .footer-links-left a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-wrapper .footer-links-left a:hover {
  color: var(--site-green);
}

.site-wrapper .scroll-to-top-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.site-wrapper .scroll-to-top-btn:hover {
  background: var(--site-green);
  color: #000000;
  border-color: var(--site-green);
  transform: translateY(-2px);
}

.site-wrapper .footer-legal-new {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.site-wrapper .footer-logo-row {
  margin-bottom: 20px;
}

.site-wrapper .footer-logo-row .logo-text {
  font-size: 36px;
  font-weight: 900;
  color: var(--site-green);
  text-transform: lowercase;
  letter-spacing: -1.5px;
}

.site-wrapper .footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-wrapper .footer-company-info p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.site-wrapper .footer-company-info .footer-cnpj {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  margin-top: 8px;
}

@media (min-width: 769px) {
  .site-wrapper .header {
    padding: 18px 10%;
  }

  .site-wrapper .hero {
    padding: 80px 10%;
    text-align: left;
  }
  
  .site-wrapper .hero-main-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
  
  .site-wrapper .hero-text-content {
    flex: 1.2;
    align-items: flex-start;
  }
  
  .site-wrapper .hero h1 {
    font-size: 48px;
    text-align: left;
    letter-spacing: -1.5px;
  }
  
  .site-wrapper .indent-green {
    display: inline-block;
    padding-left: 40px;
    text-align: left;
  }
  
  .site-wrapper .cep-search-section {
    align-items: flex-start;
    margin-top: 40px;
  }
  
  .site-wrapper .cep-search-section .cep-title {
    text-align: left;
  }
  
  .site-wrapper .hero-illustration {
    flex: 0.8;
    max-width: 400px;
    margin: 0;
  }

  .site-wrapper .plans-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow-x: visible;
  }
  
  .site-wrapper .plan-card {
    flex: none;
  }
  
  .site-wrapper .carousel-nav-btn {
    display: none !important;
  }
  
  .site-wrapper .carousel-dots {
    display: none !important;
  }

  .site-wrapper .benefits-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .site-wrapper .benefit-card {
    flex: none;
  }

  .site-wrapper .testimonials-container {
    flex-direction: row;
    gap: 30px;
  }

  .site-wrapper .service-grid-new {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .site-wrapper .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .site-wrapper .faq-footer-section {
    padding-bottom: 60px;
  }

  .site-wrapper .mobile-sticky-footer {
    display: none;
  }

  .site-wrapper .floating-wa-btn {
    bottom: 30px;
  }

}

/* Login */

.login-body{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
  background:
    radial-gradient(circle at top right,rgba(0,200,255,.25),transparent 35%),
    var(--bg);
}

.login-box{
  width:min(420px,100%);
  background:var(--card);
  border:1px solid var(--line);
  border-radius:28px;
  padding:34px;
}

.login-box h1{margin:0 0 8px}
.login-box p{color:var(--muted)}

.login-box input,
.button-config input,
.button-config textarea{
  width:100%;
  padding:14px;
  margin:8px 0 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#07182a;
  color:#fff;
}

.error{
  padding:12px;
  border-radius:14px;
  background:#4d1020;
  margin:14px 0;
}

/* Dashboard */

.admin-body{
  padding:24px;
  background:#07111f;
}

.admin-header{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  margin-bottom:22px;
}

.admin-header h1{margin:0}
.admin-header p{color:var(--muted);margin:8px 0 0}
.admin-header a{color:var(--cyan);font-weight:900}

/* Admin Tabs Navigation */
.admin-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 25px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.admin-tabs::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.tab-btn {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.tab-btn.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* Tab Content Visibility */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: tabFadeIn 0.3s ease-out;
}

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

/* Alerts */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-weight: 600;
}

.alert-success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--green);
  color: #8af0b1;
}

.alert-danger {
  background: rgba(243, 58, 111, 0.15);
  border: 1px solid #f33a6f;
  color: #ff8fae;
}

/* Bulk Update Form */
.bulk-update-form {
  margin-top: 10px;
}

.bulk-form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.bulk-form-group .input-container {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.bulk-form-group label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 600;
}

.bulk-form-group input {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #07182a;
  color: #fff;
  font-size: 15px;
  margin: 0;
  width: 100%;
}

/* Button Config Layout Updates */
.buttons-form {
  display: grid;
  gap: 20px;
}

.button-config {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #07182a;
}

.button-config label {
  color: var(--muted);
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.button-config input,
.button-config textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #051221;
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.button-config input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button-config .textarea-container,
.button-config .check-container {
  grid-column: span 3;
}

.button-config .check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: #fff;
}

.button-config .check input {
  width: auto;
  margin: 0;
}

.admin-stats,
.chart-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:22px;
}

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

.stat,
.panel{
  padding:24px;
}

.stat span{
  color:var(--muted);
  display:block;
}

.stat strong{
  display:block;
  font-size:28px;
  margin-top:8px;
}

.panel{
  margin-bottom:22px;
}

.panel h2{
  margin-top:0;
  margin-bottom:15px;
}

.table-wrap{overflow:auto}

table{
  width:100%;
  min-width:1100px;
  border-collapse:collapse;
}

th,td{
  padding:13px;
  border-bottom:1px solid var(--line);
  color:var(--muted);
  text-align:left;
  font-size:14px;
}

th{
  color:#fff;
}

@media(max-width:900px){
  .nav{display:none}
  .hero,
  .cards,
  .benefit-grid,
  .service-grid,
  .admin-stats,
  .chart-grid{
    grid-template-columns:1fr;
  }

  .hero h1{font-size:40px}
  .section-title h2,.cta h2{font-size:32px}
  .header{padding:15px 5%}
  .hero,.section{padding-left:5%;padding-right:5%}
  .footer{flex-direction:column}
  .button-config{grid-template-columns:1fr}
  .button-config .textarea-container,
  .button-config .check-container{grid-column:span 1}
}
