.elementor-193 .elementor-element.elementor-element-7c36462{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a311fd2 *//* Reset e Variáveis */
:root {
  /* Paleta de Cores */
  --black: #000000;
  --gray-deep: #1c1c1c;
  --white: #ffffff;
  --gray-light: #b3b3b3;
  --gold: #FFD43B;
  --gold-hover: #E6B800;
  
  /* Tipografia */
  --font-primary: 'Inter', sans-serif;
  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  
  /* Espaçamentos */
  --container-max: 1200px;
  --section-padding: 80px;
  --border-radius: 12px;
  
  /* Transições */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 212, 59, 0.1);
}

.logo img {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 50%, #000000 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 212, 59, 0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 212, 59, 0.05), transparent 50%);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero__title {
  font-size: 48px;
  font-weight: var(--weight-extrabold);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}

.hero__title .highlight {
  color: var(--gold);
  position: relative;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--gray-light);
}

.hero__cta {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 32px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: var(--weight-bold);
  font-size: 16px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 212, 59, 0.3);
}

.hero__cta:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 212, 59, 0.4);
}

/* Formulário */
.hero__form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form__title {
  color: var(--black);
  font-size: 24px;
  font-weight: var(--weight-bold);
  margin-bottom: 24px;
  text-align: center;
}

.form__field {
  margin-bottom: 20px;
}

.form__field label {
  display: block;
  color: var(--black);
  font-weight: var(--weight-semibold);
  margin-bottom: 8px;
  font-size: 14px;
}

.form__field input,
.form__field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: var(--white);
  color: var(--black);
}

.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 212, 59, 0.1);
}

.form__field input.error,
.form__field select.error {
  border-color: #e74c3c;
}

.form__submit {
  width: 100%;
  background: #27ae60;
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-weight: var(--weight-bold);
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 16px;
}

.form__submit:hover {
  background: #229954;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.form__notice {
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

/* Seções */
.section {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--black);
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 212, 59, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 212, 59, 0.05), transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 212, 59, 0.03), transparent 50%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="10" cy="10" r="1" fill="%23FFD43B" opacity="0.4"/><circle cx="50" cy="30" r="0.5" fill="%23FFD43B" opacity="0.6"/><circle cx="30" cy="50" r="1.5" fill="%23FFD43B" opacity="0.3"/></svg>') center/60px repeat;
  pointer-events: none;
  opacity: 0.6;
}

.section__title {
  font-size: 36px;
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: 32px;
  color: var(--white);
  position: relative;
  z-index: 3;
}

.section__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--gray-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.section__intro {
  font-size: 16px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--gray-light);
  position: relative;
  z-index: 3;
}

.section__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.section__content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* Seção Dark */
.section--dark {
  /* Usar o mesmo fundo preto com partículas douradas */
}

.highlight-text {
  color: var(--gold);
  font-size: 18px;
  margin-top: 32px;
}

/* Seção Company */
.section--company {
  /* Usar o mesmo fundo preto com partículas douradas */
  position: relative;
}

.section--company::before {
  /* Removido - usando o padrão geral das seções */
}

.section--company .section__title {
  color: var(--gold);
  font-size: 42px;
}

.company__content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.company__image {
  position: relative;
  text-align: center;
}

.company__image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.5; }
}

.company__image img {
  width: 300px;
  height: 300px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.company__image img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.company__subtitle {
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.4;
}

.company__text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-light);
}

.company__text p strong {
  color: var(--white);
}

.benefits-list {
  list-style: none;
  margin: 32px 0;
}

.benefits-list li {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--white);
  position: relative;
  padding-left: 24px;
}

.benefits-list li::before {
  content: '➤';
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Seção Services */
.section--services {
  /* Usar o mesmo fundo preto com partículas douradas */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.service-item {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 2px solid var(--gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 59, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 212, 59, 0.3);
  border-color: var(--gold-hover);
}

.service__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.service__title {
  color: var(--black);
  font-size: 16px;
  font-weight: var(--weight-semibold);
  line-height: 1.4;
}

/* Seção Stats */
.section--stats {
  /* Usar o mesmo fundo preto com partículas douradas */
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: 48px;
  font-weight: var(--weight-extrabold);
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.stat__label {
  font-size: 16px;
  color: var(--gray-light);
}

/* Seção Final */
.section--final {
  background: linear-gradient(135deg, var(--black) 0%, var(--gold) 100%);
  color: var(--white);
  position: relative;
}

.section--final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 212, 59, 0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 212, 59, 0.10), transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 212, 59, 0.08), transparent 50%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}

.section--final::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="10" cy="10" r="1" fill="%23FFD43B" opacity="0.6"/><circle cx="50" cy="30" r="0.5" fill="%23FFD43B" opacity="0.8"/><circle cx="30" cy="50" r="1.5" fill="%23FFD43B" opacity="0.5"/></svg>') center/60px repeat;
  pointer-events: none;
  opacity: 0.8;
}

.section--final .section__title {
  color: var(--white);
  font-size: 42px;
}

.section--final .section__content p {
  color: var(--white);
  font-size: 18px;
}

/* Botões CTA */
.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 32px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: var(--weight-bold);
  font-size: 16px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 212, 59, 0.3);
}

.cta-button:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 212, 59, 0.4);
}

.cta-button--large {
  padding: 20px 40px;
  font-size: 18px;
}

.cta-button--pulse {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 4px 20px rgba(255, 212, 59, 0.3); }
  to { box-shadow: 0 8px 40px rgba(255, 212, 59, 0.6); }
}

/* Footer */
.footer {
  background: var(--black);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 212, 59, 0.1);
}

.footer p {
  color: var(--gray-light);
  font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero__title {
    font-size: 34px;
  }
  
  .hero__form {
    order: -1;
  }
  
  .company__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .company__image img {
    width: 250px;
    height: 250px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .section__title {
    font-size: 28px;
  }
  
  .section--final .section__title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero__form {
    padding: 24px;
  }
  
  .hero__title {
    font-size: 28px;
  }
  
  .section {
    padding: 60px 0;
  }
}/* End custom CSS */