/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Transit551 Md BT;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.logo {
    max-width: 400px;
    height: auto;
}

/* Seção de introdução */
.intro {
    background-color: #f2f2f2;
    padding: 45px;
    margin-bottom: 40px;
    text-align: center;
    border-radius: 5px;
}

.intro p {
    font-size: 1.2em;
    color: #747474;
    font-weight: 400;
    margin:10px;
}

/* Formulário */
.form-section {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #747474;
    font-size: 19px;
}

.form-group input {
    width: 65%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #666;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Botão de envio */
.submit-btn {
    background-color: #000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #555;
}

/* Seção de agradecimento */
.thank-you {
    text-align: left;
    margin-top: 30px;
    color: #666;
}

.thank-you p {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}


/* Botão TOPO: escondido por padrão */
a.go-to-top{
  position: fixed !important;
  right: 14px !important;
  bottom: 14px !important;
  width: 64px !important;
  height: 48px !important;
  background: #4a4a4a !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.22) !important;
  z-index: 99999 !important;
  font-size: 0 !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(6px) !important;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s !important;
}

/* Chevron ↑ */
a.go-to-top::before{
  content: "" !important;
  width: 12px !important;
  height: 12px !important;
  border-top: 3px solid #fff !important;
  border-right: 3px solid #fff !important;
  transform: rotate(-45deg) translateY(2px) !important;
  display: block !important;
}

/* Estado visível (quando perto do fim) */
a.go-to-top.show{
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

a.go-to-top:hover{ background:#3b3b3b !important; }



/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .intro {
        padding: 20px;
    }
    
    .form-group input {
        padding: 10px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }
    
    .intro p {
        font-size: 1.2em;
        color: #747474;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input {
        font-size: 13px;
    }
}

.gfield_required{
    color:#790000;
}

