/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Loading Animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ff8c00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-overlay p {
  color: #666;
  font-size: 16px;
}

/* Header */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 50px; /* Aumentado de 40px para 50px */
  width: auto;
}

.logo-large {
  height: 70px; /* Logo aumentada conforme solicitado */
  width: auto;
  transition: height 0.3s ease;
}

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

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ff8c00;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff8c00;
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  color: white;
}

/* Laptop Mockup */
.laptop-mockup {
  background: #333;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.3s ease;
}

.laptop-mockup:hover {
  transform: perspective(1000px) rotateY(-10deg);
}

.screen {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.data-visualization {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chart-bar {
  height: 20px;
  background: linear-gradient(90deg, #ff8c00, #ffa500);
  border-radius: 10px;
  animation: growBar 2s ease-in-out infinite alternate;
}

.chart-bar:nth-child(1) {
  width: 80%;
  animation-delay: 0s;
}
.chart-bar:nth-child(2) {
  width: 60%;
  animation-delay: 0.5s;
}
.chart-bar:nth-child(3) {
  width: 90%;
  animation-delay: 1s;
}

@keyframes growBar {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.data-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.data-item {
  height: 15px;
  background: #444;
  border-radius: 5px;
  animation: pulse 2s ease-in-out infinite;
}

.data-item:nth-child(1) {
  width: 70%;
  animation-delay: 0.2s;
}
.data-item:nth-child(2) {
  width: 85%;
  animation-delay: 0.4s;
}
.data-item:nth-child(3) {
  width: 60%;
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #666;
  margin-bottom: 60px;
}

/* Como Funciona */
.how-it-works {
  padding: 100px 0;
  background: #f8f9fa;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.step-description {
  color: #666;
  line-height: 1.6;
}

/* Templates */
.templates {
  padding: 100px 0;
}

.template-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.template-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.template-card:hover {
  transform: translateY(-10px);
  border-color: #ff8c00;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.card-description {
  color: #666;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: #f8f9fa;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid #ff8c00;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 1rem;
  color: #666;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
}

/* Removido ::before com setinha laranja - agora usa apenas os ícones SVG do HTML */

.plan-highlight {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

/* Signup */
.signup {
  padding: 100px 0;
}

.signup-content {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.signup-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

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

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

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ff8c00;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  border: none;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.success-message {
  text-align: center;
  padding: 40px;
  background: #f0f9ff;
  border: 2px solid #0ea5e9;
  border-radius: 15px;
  margin-top: 20px;
}

.success-message h3 {
  color: #0ea5e9;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: #f8f9fa;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author strong {
  color: #333;
  font-weight: 600;
}

.testimonial-author span {
  color: #666;
  display: block;
  margin-top: 5px;
}

/* FAQ */
.faq {
  padding: 100px 0;
}

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

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  color: #333;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ff8c00;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.faq-answer.active {
  padding: 0 25px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.contact-section .subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
}

.contact-methods {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 40px;
  height: 40px;
}

.contact-details h3 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.contact-details p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

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

/* Responsive Contact Section */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-methods {
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    width: 100%;
    max-width: 400px;
  }
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 30px;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff8c00;
}

.footer-contact a {
  color: #ff8c00;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff8c00;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #555;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
}

.toggle-label {
  font-weight: 500;
  color: #333;
  font-size: 1.1rem;
}

.discount-badge {
  background: #ff8c00;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 5px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ff8c00;
}

input:checked + .slider:before {
  transform: translateX(30px);
}

/* Recommended Badge */
.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* Plan Buttons */
.plan-button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.plan-button.basic {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e1e5e9;
}

.plan-button.basic:hover {
  background: #e9ecef;
  border-color: #ff8c00;
  color: #ff8c00;
}

.plan-button.premium {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.plan-button.premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  color: white;
}

/* Price styling */
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 20px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8c00;
}

.price-period {
  font-size: 1rem;
  color: #666;
  margin-left: 5px;
}

.annual-info {
  text-align: center;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Form select styling */
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 16px;
  background-color: white;
  transition: border-color 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

.form-group select:focus {
  outline: none;
  border-color: #ff8c00;
}

/* Remove old plan-highlight styles */
.plan-highlight {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .billing-toggle {
    flex-direction: column;
    gap: 10px;
  }

  .toggle-label {
    font-size: 1rem;
  }

  .recommended-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.close {
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.close:hover {
  opacity: 0.7;
}

.modal-body {
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-body pre {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  overflow-x: auto;
  white-space: pre-wrap;
}

/* Fields Button */
.fields-button {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.fields-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* About Us Section */
.about-us {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

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

.about-text strong {
  color: #ff8c00;
  font-weight: 600;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-icon {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
}

.feature-text h4 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-text p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    max-height: 85vh;
  }

  .modal-header {
    padding: 15px;
  }

  .modal-header h3 {
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 15px;
    max-height: 65vh;
  }

  .modal-body pre {
    font-size: 12px;
    padding: 15px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    font-size: 1rem;
  }

  .feature-item {
    padding: 15px;
  }

  .fields-button {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
}

/* Header Navigation Actions */
.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.nav-button {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.nav-button.secondary {
  color: #333;
  border-color: #e0e0e0;
  background: transparent;
}

.nav-button.secondary:hover {
  background: #f5f5f5;
  border-color: #ff8c00;
  color: #ff8c00;
}

.nav-button.primary {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.nav-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  color: white;
}

/* API Status Indicator */
.api-status-indicator {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.api-status-indicator.online {
  background: #f0fdf4;
  border-color: #86efac;
}

.api-status-loading {
  color: #64748b;
  font-weight: 500;
}

.api-status-online {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
  font-weight: 600;
}

.api-status-offline {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ef4444;
  font-weight: 600;
}

.api-status-time {
  color: #64748b;
  font-size: 11px;
  font-weight: 400;
}

.api-status-indicator svg circle {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* New Pricing Cards Layout */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: #ff8c00;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.plan-header {
  text-align: center;
  margin-bottom: 25px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.plan-price {
  margin-bottom: 10px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff8c00;
}

.price-period {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.plan-credits {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

.plan-leads {
  color: #666;
  font-size: 1rem;
  font-weight: 600;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 0.95rem;
  position: relative;
}

/* Removido :before com setinha laranja - agora usa apenas os ícones SVG do HTML */

.plan-features li:last-child {
  border-bottom: none;
}

.plan-description {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
}

.plan-description p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

.plan-button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.plan-button.basic {
  background: #f8f9fa;
  color: #666;
  border: 2px solid #e0e0e0;
}

.plan-button.basic:hover {
  background: #e9ecef;
  border-color: #ff8c00;
  color: #ff8c00;
}

.plan-button.plus {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.plan-button.plus:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.plan-button.pro {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.plan-button.pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.plan-button.ultra {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.plan-button.ultra:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-button {
    padding: 8px 16px;
    font-size: 13px;
  }

  .api-status-indicator {
    padding: 4px 8px;
    font-size: 10px;
    gap: 4px;
  }

  .api-status-indicator svg {
    width: 6px;
    height: 6px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .plan-header .container {
    padding: 0 10px;
  }

  .price-value {
    font-size: 2rem;
  }
}

/* Modal de Campos de Prospecção */
.fields-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fields-modal.active {
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-container {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fields-modal.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

.modal-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: center;
}

.fields-table-container {
  overflow-x: auto;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Modal de Termos de Uso */
.termos-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.termos-modal.active {
  display: flex;
  opacity: 1;
}

.termos-modal-container {
  position: relative;
  background: white;
  border-radius: 20px;
  width: 80vw;
  height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.termos-modal.active .termos-modal-container {
  transform: scale(1) translateY(0);
}

.termos-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: white;
}

.termos-modal-body iframe {
  display: block;
}

/* Header específico da modal de termos */
.termos-modal .modal-header {
  background: white;
  color: #2c3e50;
  border-bottom: 2px solid #f0f0f0;
}

.termos-modal .modal-close {
  background: rgba(0, 0, 0, 0.05);
  color: #2c3e50;
}

.termos-modal .modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Responsividade da Modal de Termos */
@media (max-width: 768px) {
  .termos-modal-container {
    width: 95vw;
    height: 90vh;
    border-radius: 15px;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }
}

.fields-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.fields-table thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.fields-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-name-col {
  width: 20%;
}

.field-description-col {
  width: 45%;
}

.field-mode-col {
  width: 17.5%;
  text-align: center;
}

.fields-table tbody tr {
  border-bottom: 1px solid #e1e5e9;
  transition: background-color 0.2s ease;
}

.fields-table tbody tr:hover {
  background-color: #f8f9fa;
}

.fields-table tbody tr:last-child {
  border-bottom: none;
}

.fields-table td {
  padding: 15px;
  color: #333;
}

.fields-table td.available {
  text-align: center;
  color: #28a745;
  font-size: 1.3rem;
  font-weight: bold;
}

.fields-table td.unavailable {
  text-align: center;
  color: #dc3545;
  font-size: 1.3rem;
  font-weight: bold;
  opacity: 0.5;
}

.modal-footer-note {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

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

.modal-footer-note p {
  margin: 0;
  color: #1565c0;
  line-height: 1.6;
}

.modal-footer-note strong {
  color: #0d47a1;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 1.4rem;
  }

  .modal-body {
    padding: 20px;
  }

  .fields-table {
    font-size: 0.85rem;
  }

  .fields-table th,
  .fields-table td {
    padding: 10px 8px;
  }

  .field-name-col,
  .field-description-col,
  .field-mode-col {
    width: auto;
  }

  .modal-subtitle {
    font-size: 1rem;
  }

  .modal-footer-note {
    flex-direction: column;
    gap: 10px;
  }

  .note-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .modal-header h2 {
    font-size: 1.2rem;
  }

  .fields-table {
    font-size: 0.75rem;
  }

  .fields-table th,
  .fields-table td {
    padding: 8px 5px;
  }

  .fields-table td.available,
  .fields-table td.unavailable {
    font-size: 1.1rem;
  }
}

/* Features Grid (novos cards informativos) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  border-radius: 12px;
  padding: 25px;
  border: 2px solid;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-orange {
  background: #fff5f0;
  border-color: #ffbe9d;
}

.feature-green {
  background: #f0fdf4;
  border-color: #86efac;
}

.feature-blue {
  background: #eff6ff;
  border-color: #93c5fd;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-header svg {
  color: currentColor;
}

.feature-orange .feature-header {
  color: #ff8c00;
}

.feature-green .feature-header {
  color: #16a34a;
}

.feature-blue .feature-header {
  color: #2563eb;
}

.feature-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Monthly Info Card */
.monthly-info-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin-bottom: 40px;
}

.monthly-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.monthly-info-card p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

/* Plans Loading */
.plans-loading {
  text-align: center;
  padding: 60px 20px;
}

.plans-loading .loading-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

.plans-loading p {
  color: #666;
  font-size: 1.1rem;
}

/* Plan Resources (Créditos e Leads) */
.plan-resources {
  background: #f9fafb;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.resource-item {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 5px;
}

.resource-item strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff8c00;
}

.resource-period {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 5px;
}

/* Plan Features (com ícones) */
.feature-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-with-icon svg {
  color: #10b981;
}

.feature-disabled svg {
  color: #ef4444;
}

.feature-disabled {
  opacity: 0.5;
  text-decoration: line-through;
}

/* Badges */
.badge-unlimited,
.badge-limit {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 5px;
}

.badge-unlimited {
  background: #dbeafe;
  color: #1e40af;
}

.badge-limit {
  background: #dbeafe;
  color: #1e40af;
}

/* Error Message */
.error-message {
  background: #fee2e2;
  border: 2px solid #fecaca;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.error-message p {
  color: #991b1b;
  font-size: 1rem;
  margin: 0;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-card {
    padding: 20px;
  }

  .monthly-info-card {
    padding: 20px;
  }

  .plan-resources {
    padding: 15px;
  }

  .resource-item {
    font-size: 1rem;
  }

  .resource-item strong {
    font-size: 1.2rem;
  }
}

/* Contact Map Styles */
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);
}

.contact-item svg {
  color: #ff8c00;
  flex-shrink: 0;
}

.contact-item h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #2c3e50;
}

.contact-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.contact-item a {
  color: #ff8c00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #cc7000;
}

.contact-map {
  width: 100%;
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  border-radius: 15px;
  color: white;
}

.contact-cta p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Botão cinza para o CTA de contato */
.cta-button-gray {
  background: linear-gradient(135deg, #5a6268, #6c757d) !important;
  color: white !important;
}

.cta-button-gray:hover {
  background: linear-gradient(135deg, #495057, #5a6268) !important;
  transform: translateY(-2px);
}

/* New Footer Grid Styles */
.footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 25px;
}

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

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

.footer-social a:hover {
  background: #ff8c00;
  transform: translateY(-3px);
}

.footer-links-section h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
}

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

.footer-links-section ul li {
  margin-bottom: 12px;
}

.footer-links-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-section ul li a:hover {
  color: #ff8c00;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-cta p {
    font-size: 1.1rem;
  }
}
