* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #ffffff;
  padding: 16px 0;
  /* ALTERAÇÕES AQUI: position: fixed foi removido */
  position: relative; 
  /* z-index, top, left, right removidos */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 50px;
  height: 50px;
  border-radius: 8px; /* Cantos arredondados */
  overflow: hidden; /* Adicionado para cortar a imagem */
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a logo preencha o espaço */
}

.logo-text h1 {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.logo-text p {
  font-size: 13px;
  color: #666666;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #2EAEFC; /* Cor do cliente */
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.phone-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #2EAEFC; /* Cor do cliente */
  border-radius: 8px;
  color: #2EAEFC; /* Cor do cliente */
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}

.phone-button:hover {
  background-color: #2EAEFC; /* Cor do cliente */
  color: #ffffff;
}

.whatsapp-button {
  padding: 10px 24px;
  background-color: #2EAEFC; /* Cor do cliente */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.whatsapp-button:hover {
  background-color: #1A98E0; /* Tom mais escuro da cor do cliente */
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  /* Adicionando imagem real do Unsplash como background */
  background-image: url("https://images.unsplash.com/photo-1644980055228-aafe48a1ac5c?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NTY2Nzd8MHwxfHNlYXJjaHwyfHxnYXMlMjBpbnN0YWxsYXRpb24lMjB0ZWNobmljaWFufGVufDB8fHx8MTc1OTgxNDIzMXww&ixlib=rb-4.1.0&q=85");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  /* ALTERAÇÃO AQUI: padding-top: 82px removido pois o header não é mais fixo */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: rgba(139, 92, 46, 0.3);
  border: 1px solid rgba(139, 92, 46, 0.5);
  border-radius: 50px;
  color: #d4a574;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}

.badge svg {
  stroke: #d4a574;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 700;
  color: #2EAEFC; /* Cor do cliente */
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  color: #b8c5d6;
  margin-bottom: 48px;
  max-width: 700px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  max-width: 700px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 16px;
}

.feature-item svg {
  stroke: #2EAEFC; /* Cor do cliente */
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: #2EAEFC; /* Cor do cliente */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
}

.btn-primary:hover {
  background-color: #1A98E0; /* Tom mais escuro da cor do cliente */
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46, 174, 252, 0.3); /* Sombra na cor do cliente */
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #ffffff;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #1a2332;
}

/* Preview Notice */
.preview-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1f2937;
  border-radius: 50px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.preview-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preview-content span {
  color: #ffffff;
  font-size: 14px;
}

.wake-button {
  padding: 8px 20px;
  background-color: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.wake-button:hover {
  background-color: #059669;
}

.close-preview {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.close-preview:hover {
  color: #ffffff;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  /* Adicionando background-size e background-position para as imagens */
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

/* Efeito de zoom ao passar o mouse */
.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  /* Movendo ícone para o canto inferior esquerdo */
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background-color: #2EAEFC; /* Cor do cliente */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

.services-footer {
  text-align: center;
  font-size: 16px;
  color: #666666;
  max-width: 800px;
  margin: 0 auto;
}

.services-footer strong {
  color: #2EAEFC; /* Cor do cliente */
  font-weight: 700;
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background-color: #ffffff;
}

.section-title-dark {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle-dark {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
  /* Adicionando bordas, sombras e efeitos hover */
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #2EAEFC; /* Cor do cliente */
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background-color: #2EAEFC; /* Cor do cliente */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.benefit-icon svg {
  stroke: #ffffff;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background-color: #2EAEFC; /* Cor do cliente */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  stroke: #ffffff;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: #666666;
  line-height: 1.5;
}

.whatsapp-cta {
  background-color: #2EAEFC; /* Cor do cliente */
  padding: 28px;
  border-radius: 12px;
  margin-top: 32px;
}

.whatsapp-cta h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.whatsapp-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: #ffffff;
  color: #2EAEFC; /* Cor do cliente */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.contact-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  color: #1a1a1a;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2EAEFC; /* Cor do cliente */
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: #2EAEFC; /* Cor do cliente */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background-color: #1A98E0; /* Tom mais escuro da cor do cliente */
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46, 174, 252, 0.3); /* Sombra na cor do cliente */
}

/* Adicionando estilos para mensagem de sucesso */
.success-message {
  margin-top: 20px;
  padding: 20px;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s ease;
}

.success-message svg {
  stroke: #28a745;
  flex-shrink: 0;
}

.success-message p {
  color: #155724;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background-color: #1a2332;
  padding: 80px 0 32px;
  color: #ffffff;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.footer-logo .logo-text p {
  font-size: 13px;
  color: #b8c5d6;
}

.footer-description {
  font-size: 15px;
  color: #b8c5d6;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: #2EAEFC; /* Cor do cliente */
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #b8c5d6;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a:hover {
  color: #2EAEFC; /* Cor do cliente */
}

.footer-column ul li svg {
  flex-shrink: 0;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #2EAEFC; /* Cor do cliente */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: all 0.3s;
}

.footer-whatsapp:hover {
  background-color: #1A98E0; /* Tom mais escuro da cor do cliente */
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #b8c5d6;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .phone-button {
    font-size: 12px;
    padding: 8px 16px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .preview-notice {
    left: 16px;
    right: 16px;
    transform: none;
    border-radius: 12px;
  }

  .preview-content {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .section-title,
  .section-title-dark {
    font-size: 32px;
  }

  .section-subtitle,
  .section-subtitle-dark {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-card {
    padding: 24px 16px;
  }

  .contact {
    padding: 60px 0;
  }

  .contact-wrapper {
    margin-top: 40px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366; /* Cor padrão do WhatsApp */
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1001; /* Mantido em 1001 para ficar acima de tudo */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 15px rgba(0,0,0,0.3);
  background-color: #128C7E; /* Cor mais escura no hover */
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}