/* Reset e Base */
* {
  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: #1f2937;
  overflow-x: hidden;
}

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

/* Header */
.topbar {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

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

.logo-img {
  height: 40px;
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #1e40af;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  font-size: 1.5rem;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
}

/* Hero Section Melhorada */
.hero-improved {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
  z-index: -1;
}

.hero-content-improved {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem 0;
  margin-top: 80px;
}

.hero-text-improved {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ef4444;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.hero-title-improved {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-improved {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.5;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.benefit-item i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.cta-section-improved {
  text-align: center;
}

.btn-primary-improved {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.btn-primary-improved:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-support-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Prova Social Imediata */
.social-proof-immediate {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #1e40af;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Vídeo Demo */
.video-demo-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.video-container-improved {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.video-container-improved video {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-cta {
  text-align: center;
}

.video-cta h3 {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.video-cta p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.btn-secondary-improved {
  display: inline-block;
  background: #1e40af;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-improved:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* Seções Melhoradas */
.section-improved {
  padding: 5rem 0;
}

.section-improved.light {
  background: #f8fafc;
}

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

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Garantia Melhorada */
.guarantee-section-improved {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 4rem 0;
}

.guarantee-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.guarantee-visual {
  text-align: center;
}

.guarantee-seal-improved {
  width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
}

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

.badge {
  background: #1e40af;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.guarantee-title {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.guarantee-description {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.guarantee-features {
  list-style: none;
}

.guarantee-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.guarantee-features i {
  color: #10b981;
  font-size: 1.1rem;
}

/* Grid de Benefícios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

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

/* Diferencial Melhorado */
.diferencial-grid-improved {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.diferencial-item-improved {
  text-align: center;
}

.diferencial-item-improved h3 {
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 1.5rem;
}

.image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.diferencial-img-improved {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover .diferencial-img-improved {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
  transform: translateY(0);
}

.overlay-text {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Serviços Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ef4444;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.3rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.service-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-cta {
  display: block;
  background: #1e40af;
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.service-cta:hover {
  background: #1d4ed8;
}

/* Tabela de Comparação */
.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-cell.header-others {
  background: #ef4444;
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-cell.header-us {
  background: #10b981;
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-cell {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-cell.others {
  background: #fef2f2;
}

.comparison-cell.us {
  background: #f0fdf4;
}

.comparison-cell i {
  font-size: 1.2rem;
}

.comparison-cell.others i {
  color: #ef4444;
}

.comparison-cell.us i {
  color: #10b981;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

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

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.3rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.pricing-features i {
  color: #10b981;
  font-size: 1rem;
}

.pricing-cta {
  display: block;
  background: #1e40af;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.pricing-cta:hover {
  background: #1d4ed8;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: #e0f2fe;
  border-radius: 0.5rem;
  color: #0369a1;
  font-weight: 500;
}

.pricing-note i {
  margin-right: 0.5rem;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #374151;
}

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

.author-info strong {
  color: #1e40af;
  font-weight: 600;
}

.author-info span {
  color: #6b7280;
  font-size: 0.9rem;
}

.video-testimonials {
  margin-top: 4rem;
}

.subsection-title {
  text-align: center;
  font-size: 1.8rem;
  color: #1e40af;
  margin-bottom: 2rem;
}

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

.video-item video {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Formulário de Contato */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form-improved {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-card h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.contact-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

.contact-benefits {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
}

.contact-benefits h4 {
  color: #1e40af;
  margin-bottom: 1rem;
}

.contact-benefits ul {
  list-style: none;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-benefits i {
  color: #10b981;
}

/* CTA Final */
.final-cta {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
}

.btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: white;
  padding: 1.5rem 3rem;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.btn-secondary-large:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-3px);
}

.final-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  color: #f59e0b;
}

.footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  opacity: 0.7;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .hero-title-improved {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-improved {
    font-size: 1.1rem;
  }
  
  .hero-benefits {
    flex-direction: column;
    gap: 1rem;
  }
  
  .video-container-improved {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .guarantee-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    max-width: 300px;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title-improved {
    font-size: 2rem;
  }
  
  .section-title-improved {
    font-size: 2rem;
  }
  
  .pricing-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .diferencial-grid-improved {
    grid-template-columns: 1fr;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-cell {
    text-align: center;
  }
}


/* Melhorias específicas para dispositivos móveis */
@media (max-width: 768px) {
  /* Melhor espaçamento para mobile */
  .container {
    padding: 0 15px;
  }
  
  .section-improved {
    padding: 3rem 0;
  }
  
  /* Hero otimizado para mobile */
  .hero-content-improved {
    padding: 1rem 0;
    margin-top: 70px;
  }
  
  .hero-text-improved {
    padding: 0 1rem;
  }
  
  .urgency-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .btn-primary-improved {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  /* Cards otimizados */
  .benefit-card,
  .service-card,
  .pricing-card {
    margin-bottom: 1.5rem;
  }
  
  .service-image {
    height: 180px;
  }
  
  /* Formulário mobile-friendly */
  .contact-form-improved {
    padding: 1.5rem;
  }
  
  .form-group input,
  .form-group select {
    padding: 0.8rem;
    font-size: 16px; /* Evita zoom no iOS */
  }
  
  /* Tabela de comparação mobile */
  .comparison-table {
    margin: 1rem 0;
  }
  
  .comparison-cell {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* Stats mobile */
  .social-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Garantia mobile */
  .guarantee-badges {
    gap: 0.3rem;
  }
  
  .badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  /* Ajustes para telas muito pequenas */
  .hero-title-improved {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle-improved {
    font-size: 1rem;
  }
  
  .section-title-improved {
    font-size: 1.8rem;
  }
  
  .btn-primary-improved {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }
  
  /* WhatsApp button otimizado */
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-btn i {
    font-size: 1.3rem;
  }
  
  /* Cards mais compactos */
  .benefit-card,
  .service-card {
    padding: 1.5rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
  }
  
  .benefit-icon i {
    font-size: 1.5rem;
  }
  
  /* Preços mobile */
  .price {
    font-size: 2.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  /* Stats em coluna única para telas muito pequenas */
  .social-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Melhor legibilidade */
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Espaçamento otimizado */
  .guarantee-features li {
    margin-bottom: 0.5rem;
  }
  
  .service-features {
    gap: 0.3rem;
  }
  
  .feature-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

/* Melhorias para touch devices */
@media (hover: none) and (pointer: coarse) {
  /* Botões maiores para touch */
  .btn-primary-improved,
  .btn-secondary-improved,
  .service-cta,
  .pricing-cta {
    min-height: 48px;
    padding: 1rem 1.5rem;
  }
  
  /* Links maiores */
  .desktop-nav a,
  .mobile-nav a {
    padding: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Hover states removidos para touch */
  .benefit-card:hover,
  .service-card:hover,
  .pricing-card:hover {
    transform: none;
  }
}

/* Orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-improved {
    min-height: 80vh;
  }
  
  .hero-content-improved {
    margin-top: 60px;
  }
  
  .hero-title-improved {
    font-size: 2.2rem;
  }
}

/* Melhorias para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .whatsapp-btn {
    animation: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* Manter cores do site mesmo no dark mode para consistência da marca */
  body {
    color-scheme: light;
  }
}



/* Subtítulo de preço ("a partir de") */
.pricing-header { display: flex; flex-direction: column; align-items: center; }
.price-sub { font-size: 0.9rem; color: #6b7280; margin-top: -0.25rem; margin-bottom: 0.25rem; }


/* Oculta o link Admin por padrão; o JS mostra para usuários com role 'admin' */
.admin-link { display: inline-block; }

/* Removed test-specific overrides that forced the mobile menu button visible
   on all screen sizes. The mobile menu and desktop navigation now rely
   solely on the responsive breakpoints defined throughout the stylesheet. */
