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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
  overflow-x: hidden;
}

/* Header */
.header {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  height: 80px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

.nav-menu {
 display: flex;
 align-items: center;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #06b6d4;
}

.nav-dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background: #f3f4f6;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-selector {
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}

.login-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
.main-content {
  margin-top: 80px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transform: none !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.hero-description {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.input-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-label {
  color: white;
  font-weight: 500;
  margin-bottom: 1rem;
}

.input-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.country-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: white;
  font-weight: 500;
}

.flag {
  font-size: 1.2rem;
}

.phone-input {
  flex: 1;
  background: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
}

.phone-input::placeholder {
  color: #9ca3af;
}

.locate-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.locate-btn:hover {
  transform: translateY(-2px);
}

.security-badges {
  display: flex;
  gap: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Hero Right - Phone Mockup */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.location-card {
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  padding: 1rem;
  color: white;
  text-align: center;
}

.location-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.location-time {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.phone-number {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location-address {
  font-size: 0.8rem;
  opacity: 0.9;
}

.map-container {
  height: 200px;
  background: url('/uploads/maranhao.png') center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: white;
}

.map-marker {
  position: relative;
  margin-bottom: 1rem;
}

.marker-pulse {
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.marker-dot {
  width: 12px;
  height: 12px;
  background: #6366f1;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.map-location {
  font-size: 1rem;
  font-weight: 500;
}

.info-card {
  background: #1e293b;
  padding: 1rem;
  color: white;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.gps-tracker-btn {
  background: #10b981;
  color: white;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  cursor: pointer;
}

.info-details p {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
}

.info-details span {
  font-weight: 500;
  color: #9ca3af;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-info {
  position: absolute;
  top: 20%;
  right: 10%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 8px;
  color: white;
  font-size: 0.8rem;
  line-height: 1.4;
}

.floating-pin {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.floating-cursor {
  position: absolute;
  top: 40%;
  right: 20%;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite reverse;
}

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

/* How It Works Section */
.how-it-works {
  background: white;
  padding: 2rem 0;
}

/* Compactar título apenas nesta seção para aproximar do conteúdo */
.how-it-works .section-title {
  margin-bottom: 2rem;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4rem;
}

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

.step {
  text-align: center;
  padding: 2rem;
}

.step-icon {
  margin-bottom: 1.5rem;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.step p {
  color: #6b7280;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background: #f9fafb;
  padding: 4rem 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav-arrow {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6366f1;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.nav-arrow:hover {
  background: rgba(99, 102, 241, 0.1);
}

.testimonial-counter {
  font-weight: 500;
  color: #6b7280;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card.active {
  border-left: 4px solid;
  border-image: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%) 1;
}

.quote-icon {
  font-size: 3rem;
  color: #e5e7eb;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 0.5rem;
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #6b7280;
  line-height: 1.6;
}

/* Trust Section */
.trust-section {
  background: white;
  padding: 4rem 0;
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.trust-left p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.test-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.test-btn:hover {
  transform: translateY(-2px);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-badge {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.trust-badge p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.sitejabber {
  color: #6366f1;
}

.wot-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.wot-text::before {
  content: 'W';
  color: #ef4444;
}

.wot-text::after {
  content: 'T';
  color: #f59e0b;
}

.rating {
  color: #10b981;
  font-weight: 500;
}

/* Features Section */
.features-section {
  background: #f9fafb;
  padding: 4rem 0;
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4rem;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #e5e7eb;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.company-info p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.payment-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 6px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: white;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.footer-disclaimer h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-disclaimer p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

/* Support Button */
.support-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.support-button:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 868px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-section { min-height: auto; }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .phone-mockup { height: 460px; }
  .map-container { height: 140px; }
  .how-it-works { padding-top: 1.25rem; }
  .how-it-works .section-title { margin-bottom: 1.75rem; }
  .hero-subtitle {
    font-size: 19px;
    margin-bottom: 1rem;
    color: #e5e7eb;
    width: 70%;
}
.hero-description {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.7;
    width: 70%;
}
.input-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 70%;
}
  .hero-title {
        font-size: 25px;
        width: 80%;
    }
  
  
  
      .security-badges {
        display: flex
;
        justify-content: center;
    }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Extra pequeno: ajustes finos para telas até 500px */
@media (max-width: 500px) {
  .header { height: 66px;  }
  .header-container { padding: 0 0.75rem; }
  .logo-text { font-size: 20px; }
  .login-btn { padding: 0.4rem 0.9rem; font-size: 0.85rem; }

  .main-content { margin-top: 64px; }

  .hero-section { min-height: 100px; }
  .hero-container { gap: 1.25rem; padding: 1.25rem 0.75rem; }
  .hero-title { font-size: 22px; line-height: 1.2; width: 100%; }
  .hero-subtitle { font-size: 16px; width: 100%; }
  .hero-description { font-size: 13px; width: 100%; }

  .input-section { padding: 1rem; border-radius: 12px; width: 100%; }
  .input-container { flex-direction: column; gap: 0.5rem; }
  .country-selector { padding: 0.6rem 0.8rem; font-size: 0.95rem; }
  .phone-input { font-size: 0.95rem; padding: 0.6rem 0.8rem; }
  .locate-btn { padding: 0.6rem 1rem; font-size: 0.95rem; }

  .security-badges { gap: 0.5rem; flex-wrap: wrap; }
  .badge { padding: 0.4rem 0.75rem; font-size: 0.75rem; }

  .hero-right { margin-top: 0.5rem; }
  .phone-mockup { width: 260px; height: 440px; padding: 16px; border-radius: 24px; }
  .phone-screen { border-radius: 16px; }
  .map-container { height: 120px; }
  .marker-pulse { width: 44px; height: 44px; }
  .marker-dot { width: 10px; height: 10px; }
  .location-card h3 { font-size: 0.85rem; }
  .location-time { font-size: 0.75rem; }
  .phone-number { font-size: 0.95rem; }
  .location-address { font-size: 0.75rem; }

  .section-title { font-size: 1.75rem; margin-bottom: 2rem; }
  .steps-container { gap: 1.5rem; }
  .step { padding: 1.25rem; }
  .step h3 { font-size: 1.1rem; }
  .step p { font-size: 0.95rem; }

  .testimonials { padding: 2.5rem 0; }
  .testimonials-grid { gap: 1rem; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-name { font-size: 1rem; }
  .testimonial-text { font-size: 0.95rem; }

  .trust-section { padding: 2.5rem 0; }
  .trust-content { gap: 1.5rem; }
  .trust-left h2 { font-size: 1.8rem; }
  .trust-left p { font-size: 0.95rem; }
  .test-btn { padding: 0.75rem 1.25rem; font-size: 0.95rem; }
  .trust-badge { padding: 1rem; }
  .trust-badge p { font-size: 0.85rem; }
  .wot-text { font-size: 1.25rem; }

  .features-section { padding: 2.5rem 0; }
  .features-section h2 { font-size: 1.75rem; margin-bottom: 2rem; }
  .features-grid { gap: 1rem; }
  .feature-card { padding: 1.25rem; }
  .feature-card h3 { font-size: 1rem; }

  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-container { padding: 0 1rem; }
  .footer-top { gap: 1.25rem; }
  .company-info p { font-size: 0.85rem; }
  .footer-column a { font-size: 0.85rem; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-icon { font-size: 0.65rem; }
  .footer-disclaimer { padding-top: 1.25rem; margin-bottom: 1.25rem; }
  .footer-disclaimer h3 { font-size: 1rem; }
  .footer-disclaimer p { font-size: 0.85rem; }
  .footer-bottom { font-size: 0.75rem; }

  .support-button { bottom: 1rem; right: 1rem; padding: 0.75rem 1rem; }
}



