.elementor-1019 .elementor-element.elementor-element-f17e94e{--display:flex;--min-height:100vh;--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}.elementor-1019 .elementor-element.elementor-element-f17e94e:not(.elementor-motion-effects-element-type-background), .elementor-1019 .elementor-element.elementor-element-f17e94e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://jjstupka.com/jjstupka.com/wp-content/uploads/2026/02/background_site_ESG.jpg");background-repeat:no-repeat;background-size:cover;}.elementor-1019 .elementor-element.elementor-element-28baabb{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-28baabb *//* --- PALETA DE CORES E VARIÁVEIS (Tema Sustentabilidade) --- */
  :root {
    --esg-primary: #1A7A35;       /* Verde Floresta Profundo */
    --esg-secondary: #4B8E8E;     /* Verde Musgo Suave */
    --esg-accent: #D4E09B;        /* Verde Broto (Destaques) */
    --esg-bg: #F4F7F5;            /* Branco Nevoa */
    --esg-text-main: #2C3330;     /* Cinza Chumbo */
    --esg-text-light: #6B7A75;    /* Cinza Esverdeado */
    --esg-white: #FFFFFF;
    --esg-error: #D9534F;
    --esg-radius: 12px;
    --esg-font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

  /* --- RESET BÁSICO (Escopado para não quebrar o WP) --- */
  .esg-wrapper * {
    box-sizing: border-box;
    font-family: var(--esg-font);
    
  }

  /* --- CONTAINER PRINCIPAL --- */
  .esg-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Altura mínima na tela */
  }

  .esg-card {
    background: var(--esg-white);
    width: 100%;
    max-width: 900px;
    display: flex;
    border: 10px solid #FFFFFF;
    background-clip: padding-box;
    border-radius: var(--esg-radius);
    box-shadow: 0 15px 35px rgba(30, 74, 64, 0.1);
    overflow: hidden;
    position: relative;
    flex-wrap: wrap; /* Para mobile */
  }

  /* --- ÁREA VISUAL (Lateral Esquerda) --- */
  .esg-visual {
    flex: 1;
    
    background: linear-gradient(135deg, var(--esg-primary) 0%, var(--esg-secondary) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--esg-white);
    min-width: 300px;
  }

  .esg-visual h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--esg-white) !important; /* Forçar cor branca sobrepondo tema WP */
  }

  .esg-visual p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #E8F1EF !important;
  }

  /* --- ÁREA DE FORMULÁRIO (Lateral Direita) --- */
  .esg-form-container {
    flex: 1;
    padding: 50px;
    display: flex;
    
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    position: relative;
  }

  .esg-title {
    color: var(--esg-primary);
    
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
  }

  /* --- INPUTS E LABELS --- */
  .esg-group {
    margin-bottom: 20px;
    position: relative;
  }

  .esg-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--esg-text-main);
    font-weight: 500;
    font-size: 0.9rem;
  }

  .esg-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CFD8D5;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #FAFCFB;
    color: var(--esg-text-main);
  }

  .esg-input:focus {
    border-color: var(--esg-secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(77, 124, 110, 0.2);
  }

  /* --- BOTÕES --- */
  .esg-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--esg-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .esg-btn:hover {
    background-color: var(--esg-secondary);
  }

  /* --- LINKS E RODAPÉ DO FORM --- */
  .esg-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--esg-text-light);
  }

  .esg-footer-link a {
    color: var(--esg-primary);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
  }

  .esg-footer-link a:hover {
    text-decoration: underline;
  }

  /* --- GRID PARA CADASTRO (2 colunas) --- */
  .esg-row {
    display: flex;
    gap: 15px;
  }
  .esg-col {
    flex: 1;
  }

  /* --- UTILITÁRIOS DE VISIBILIDADE --- */
  .esg-hidden {
    display: none !important;
  }

  /* Animação suave de entrada */
  .fade-in {
    animation: fadeIn 0.5s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* --- MEDIA QUERY (Mobile) --- */
  @media (max-width: 768px) {
    .esg-card {
      flex-direction: column;
    }
    .esg-visual {
      padding: 30px;
      text-align: center;
    }
    .esg-form-container {
      padding: 30px 20px;
    }
    .esg-row {
      flex-direction: column;
      gap: 0;
    }
  }/* End custom CSS */