/* Variáveis de cores */
:root {
  --primary-color: #00FF84; /* Verde Neon solicitado */
  --secondary-color: #9966FF;
  --dark-color: #000000;
  --light-color: #FFFFFF;
  --gray-color: #F5F5F5;
  --dark-gray-color: #333333;
  --text-color: #333333;
  --border-color: #E0E0E0;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  letter-spacing: 1px;
}

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

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

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.btn-secondary:hover {
  background-color: var(--dark-color);
  color: var(--secondary-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--light-color);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: var(--light-color);
}

/* Header e Navegação */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
}

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

.logo {
  max-width: 180px;
}

.logo img {
  max-height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-cta {
  display: flex;
  gap: 15px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 20px 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-links a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-links a:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background-color: var(--dark-color);
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.highlight {
  color: var(--primary-color);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  max-width: 600px;
  z-index: 1;
}

.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-2 {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--secondary-color);
  opacity: 0.1;
  border-radius: 50%;
}

/* Seções Gerais */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
  background-color: var(--gray-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-icon img {
  width: 60px;
  height: 60px;
}

.benefit-card h3 {
  margin-bottom: 10px;
}

.benefit-highlight {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--light-color);
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 30%;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-content h3 {
  margin-bottom: 15px;
}

.step-connector {
  flex-grow: 1;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: 30px;
  position: relative;
}

.step-connector::before,
.step-connector::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.step-connector::before {
  left: 0;
}

.step-connector::after {
  right: 0;
}

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

/* Solutions Section */
.solutions {
  background-color: var(--gray-color);
}

.solutions-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
}

.tab-btn {
  padding: 15px 30px;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.tab-btn:hover::after,
.tab-btn.active::after {
  width: 100%;
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.solution-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.solution-text {
  flex: 1;
}

.solution-text h3 {
  margin-bottom: 20px;
}

.solution-benefits {
  margin: 20px 0;
  list-style: none;
  padding-left: 0;
}

.solution-benefits li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.solution-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.solution-image {
  flex: 1;
  text-align: center;
}

.solution-image img {
  max-width: 100%;
  height: auto;
}

/* Social Proof Section */
.social-proof {
  background-color: var(--light-color);
}

.metrics {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.metric {
  text-align: center;
  padding: 20px;
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.metric-label {
  font-size: 1.1rem;
  color: var(--text-color);
}

.testimonials {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial {
  background-color: var(--gray-color);
  border-radius: 10px;
  padding: 30px;
  margin: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  margin-bottom: 0;
  color: var(--dark-gray-color);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* Coverage Section */
.coverage {
  background-color: var(--gray-color);
}

.coverage-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.coverage-map {
  flex: 1;
}

.coverage-checker {
  flex: 1;
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coverage-checker h3 {
  margin-bottom: 20px;
}

.coverage-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cep-input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
}

.coverage-result {
  margin-bottom: 20px;
}

.coverage-result-success {
  display: flex;
  align-items: center;
  background-color: rgba(40, 167, 69, 0.1);
  border-left: 4px solid var(--success-color);
  padding: 15px;
  border-radius: 5px;
}

.result-icon {
  width: 30px;
  height: 30px;
  background-color: var(--success-color);
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.result-text h4 {
  margin-bottom: 5px;
  color: var(--success-color);
}

.result-text p {
  margin-bottom: 0;
}

/* FAQ Section */
.faq {
  background-color: var(--light-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

/* Blog Highlights Section */
.blog-highlights {
  background-color: var(--gray-color);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 15px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.blog-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-link:hover::after {
  transform: translateX(5px);
}

/* Contact Form Section */
.contact-form {
  background-color: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.form-container {
  background-color: var(--gray-color);
  border-radius: 10px;
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-urgency {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--warning-color);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.urgency-badge {
  display: inline-block;
  background-color: var(--warning-color);
  color: var(--dark-color);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.urgency-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.counter {
  color: var(--error-color);
}

.form-security {
  font-size: 0.9rem;
  color: var(--dark-gray-color);
  margin-top: 20px;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background-color: var(--gray-color);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.info-icon {
  margin-bottom: 15px;
}

.info-icon img {
  width: 40px;
  height: 40px;
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p {
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
}

.social-link img {
  width: 20px;
  height: 20px;
}

.footer h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-color);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 10px;
}

.contact-icon img {
  width: 16px;
  height: 16px;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 0 5px 5px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.9rem;
}

.footer-legal {
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--light-color);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: var(--light-color);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  background-color: #128C7E;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.back-to-top img {
  width: 20px;
  height: 20px;
}

/* Responsividade */
@media (max-width: 1200px) {
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-image {
    width: 45%;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .step-connector {
    display: none;
  }
  
  .solution-content {
    flex-direction: column;
  }
  
  .solution-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .coverage-content {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .tabs-nav {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    width: 50%;
    text-align: center;
  }
  
  .metrics {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .tab-btn {
    width: 100%;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float span {
    display: none;
  }
  
  .whatsapp-float a {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }
  
  .whatsapp-float img {
    margin-right: 0;
  }
}
