/* Variáveis de cores - editáveis conforme necessidade */
:root {
  --primary: #dc2626;    /* Vermelho principal */
  --primary-dark: #b91c1c;  /* Vermelho escuro */
  --secondary: #1a1a1a;   /* Preto */
  --accent: #1a202c;     /* Cinza escuro */
  --accent-dark: #2d3748; /* Cinza médio */
  --light: #f7fafc;      /* Cinza muito claro */
  --neutral: #edf2f7;    /* Cinza neutro claro */
  --neutral-dark: #4a5568; /* Cinza médio escuro */
  --dark: #1a202c;       /* Preto para texto */
  --bg-color: #ffffff;   /* Cor de fundo do site */
}

/* Utilitários customizados */
.container-custom {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Tipografia */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.5;
  background-color: var(--bg-color);
}

.font-serif {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

/* Componentes */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: var(--neutral);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Navegação */
.nav-link {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

header {
  background-color: var(--bg-color) !important;
  box-shadow: none !important;
}

/* Cards */
.card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Sombras */
.shadow-soft {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Seções */
.bg-gradient-to-r {
  background: var(--bg-color);
}

footer.bg-primary {
  background-color: var(--primary) !important;
}

.bg-neutral {
  background-color: var(--light);
}

.bg-white {
  background-color: #ffffff;
}

.bg-accent {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--primary) !important;
}

/* Responsividade adicional */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

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

/* Estilos adicionais do EngPro */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-menu a:hover {
  color: #dc2626;
}

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

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

.cta-header {
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.cta-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
}


.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fix para modo de edição: garante que a imagem e wrappers do admin respeitem o container */
.hero-bg-container > *,
.hero-bg-container .editable-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-bg-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: none !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.78); /* Light overlay to maintain text contrast */
  z-index: 1;
  pointer-events: none; /* Permite clicar na imagem através do overlay */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 22px;
  color: #4a5568;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

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

/* Section Titles Override */
.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  border-radius: 2px;
}

.section-title p {
  font-size: 18px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

/* Gradientes e Backgrounds */
.bg-gradient-to-r {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

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

.floating {
  animation: float 3s ease-in-out infinite;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-content p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.about-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

/* Image cover */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block; 
  margin: auto; 
}

/* Values Section */
.values {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 50px 30px;
  border-radius: 20px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.value-card:hover {
  border-color: #dc2626;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.value-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 40px;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.value-card p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
}

/* News Timeline Section */
.news {
  padding: 100px 0;
  background: white;
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #dc2626, #1a1a1a);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
  text-align: left;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.timeline-date {
  color: #dc2626;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -50px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -50px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: white;
}

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

.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
  border-color: #dc2626;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.service-card p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 16px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials .section-title h2 {
  color: white;
}

.testimonials .section-title p {
  color: #a0aec0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.author-info p {
  color: #a0aec0;
  font-size: 14px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s;
}

.contact-item:hover {
  background: #f7fafc;
  transform: translateX(10px);
}

.contact-item i {
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
}

.contact-details h4 {
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 5px;
}

.contact-details p {
  color: #4a5568;
}

.contact-form {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 50px;
  border-radius: 25px;
  border: 2px solid #e2e8f0;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2d3748;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.submit-btn {
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

/* Footer */
.footer {
  background: #f5f1ed;
  color: #2d3748;
  padding: 60px 0 30px;
  border-top: 2px solid #e2e8f0;
}

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

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-links a {
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 20px;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.footer p {
  color: #718096;
  font-size: 14px;
  margin-top: 10px;
}

/* Stats Section */
.stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  color: white;
}

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

.stat-item {
  transition: all 0.3s;
}

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

.stat-number {
  font-size: 56px;
  font-weight: 900;
  display: block;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 18px;
  color: #e2e8f0;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 25px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

.cta-button i {
  font-size: 20px;
}

/* Image Text Bullets Section - Step Items */
.about-content .step-item:first-of-type {
  margin-top: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.step-item {
  background: white;
  padding: 18px 20px;
  border-radius: 10px;
  border-left: 3px solid #dc2626;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.12);
}

.step-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.step-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-bullets li {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
  padding-left: 18px;
  margin-bottom: 5px;
  position: relative;
}

.step-bullets li:before {
  content: '•';
  color: #dc2626;
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  left: 0;
}

.step-bullets li:last-child {
  margin-bottom: 0;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1a202c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
  flex-direction: column;
  gap: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  max-height: 500px;
}

.mobile-menu a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s;
  text-align: center;
}

.mobile-menu a:hover {
  background: #f7fafc;
  color: #dc2626;
}

.mobile-menu .mobile-cta {
  background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
  color: white;
  margin-top: 10px;
}

.mobile-menu .mobile-cta:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #000000 100%);
  color: white;
}

/* Responsividade para essas seções */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .cta-header {
    display: none;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .services-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item .timeline-dot {
    left: 10px !important;
    right: auto !important;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

  .step-item {
    padding: 15px 18px;
  }

  .step-item h3 {
    font-size: 15px;
  }

  .step-bullets li {
    font-size: 13px;
  }
}
