/* ===== Escopo: tudo dentro de .testegratis para escapar do Astra/Elementor ===== */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.testegratis,
.testegratis * {
  box-sizing: border-box;
}

.testegratis {
  --tg-primary-900: #021321;
  --tg-secondary: #04c3b4;
  --tg-accent: #f0f2f2;
  --tg-text: #445252;
  --tg-muted: #96acac;
  --tg-card: #cde4e3;
  --tg-input: #f1f7f6;
  --tg-radius-md: 14px;
  --tg-radius-lg: 24px;

  background: var(--tg-accent) !important;
  color: var(--tg-text) !important;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif !important;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.testegratis .tg-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 4vw;
  box-sizing: border-box;
}

/* Header */
.testegratis .tg-header {
  background: #f0f2f2;
  border-bottom: 1.25px solid #c5dfdf;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.testegratis .tg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 87.25px;
  padding: 0 20px;
}

@media (min-width: 1200px) {
  .testegratis .tg-header-inner {
    padding: 0 40px;
  }
}

@media (min-width: 1400px) {
  .testegratis .tg-header-inner {
    padding: 0;
  }
}
.testegratis .tg-logo img {
  display: block;
  height: 42px;
  width: 198px;
}

/* Navigation */
.testegratis .tg-nav {
  display: flex;
  align-items: stretch;
  gap: 30px;
  flex: 1;
  justify-content: center;
  margin: 0 40px;
  height: 100%;
}
.testegratis .tg-nav-link {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #021321;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.4s ease;
}
.testegratis .tg-nav-link:hover {
  color: #04c3b4;
}
.testegratis .tg-nav-link::after {
  content: "";
  position: absolute;
  bottom: -1.25px;
  left: 0;
  right: 0;
  height: 3px;
  background: #04c3b4;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testegratis .tg-nav-link:hover::after {
  opacity: 1;
}

/* Header Button */
.testegratis .tg-header-btn {
  width: 208.99px;
  height: 39.98px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #05f2db 0%, #04c3b4 100%);
  border-radius: 5px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #021321;
  text-decoration: none;
  transition: transform 0.4s ease;
}
.testegratis .tg-header-btn:hover {
  transform: scale(1.05);
}

/* Esconder menu toggle em desktop */
.testegratis .tg-menu-toggle {
  display: none;
}

/* Títulos */
.testegratis h1,
.testegratis h2,
.testegratis h3 {
  font-family: "Space Grotesk", ui-sans-serif, sans-serif !important;
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--tg-primary-900);
}

.testegratis .tg-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
  min-height: 800px;
  padding: 127.25px 0 32px;
}

@media (min-width: 993px) {
  .testegratis .tg-hero {
    grid-template-columns: minmax(520px, 1fr) minmax(460px, 1fr);
  }
}
.testegratis .tg-left h1 {
  margin: 0 0 12px;
  font-size: 52px;
  line-height: 59px;
  letter-spacing: -2px;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.testegratis .tg-left h1 .tg-highlight {
  color: #04c3b4;
}
.testegratis .tg-subtitle {
  margin: 0 0 18px;
  color: #838181;
  font-family: "Space Grotesk", ui-sans-serif, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.4px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.testegratis .tg-card-warning {
  width: 100%;
  max-width: 466px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Pílula */
.testegratis .tg-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--tg-secondary) 18%, #fff);
  border: 1px solid color-mix(in srgb, var(--tg-secondary) 32%, transparent);
  color: var(--tg-primary-900);
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Ilustração (“cápsula”) */
.testegratis .tg-art-wrap {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--tg-radius-lg);
  padding: 10px;
  background: rgba(255, 255, 255, 0.55);
  display: inline-block;
}
.testegratis .tg-hero-illustration {
  display: block;
  padding-top: 20px;
  max-width: min(560px, 40vw);
  height: auto;
  border-radius: 18px;
}

/* Container de erro */
.testegratis .tg-erro-container {
  width: 80%;
  display: flex;
  justify-content: center;
}

/* Mensagem de erro da API */
.testegratis .tg-erro-api {
  min-height: 54px;
  border-radius: 8px;
  padding: 16px;
  background: #da6b6b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.testegratis .tg-erro-api p {
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  margin: 0;
  max-width: 100%;
}

/* Formulário (coluna direita) */
.testegratis .tg-form-card {
  background: #cde4e3;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px;
  width: 100%;
  max-width: 489px;
  height: auto;
  min-height: 866.29px;
}
.testegratis label {
  display: block;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #384347;
  margin: 0 0 6px;
}
.testegratis input {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: var(--tg-input);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  outline: none;
}
.testegratis input::placeholder {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #9ca3af;
}
.testegratis select {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: var(--tg-input);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 18.75px;
  letter-spacing: 0%;
  color: #384347;
  margin-bottom: 16px;
  outline: none;
  cursor: pointer;
}
.testegratis select option {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 18.75px;
  letter-spacing: 0%;
  color: #384347;
}
.testegratis .tg-help {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #6b7b80;
  margin: 6px 0 8px;
}
.testegratis .tg-erro {
  display: none;
  color: #d11;
  font-size: 13px;
  margin: -8px 0 12px;
}

.testegratis .tg-subdomain-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.testegratis .tg-suffix {
  font-size: 16px;
  color: #384347;
}

.testegratis .tg-btn {
  width: 100%;
  max-width: 441.04px;
  height: 47.99px;
  padding: 0;
  background: #a9b4b2;
  color: #ffffff;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: not-allowed;
}
.testegratis .tg-btn.tg-btn--enabled {
  background: var(--tg-primary-900);
  cursor: pointer;
}

.testegratis .tg-legal {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  color: #6b7b80;
  margin: 0;
  padding-top: 16px;
}
.testegratis .tg-legal a {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  color: #021321;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
}

/* Footer */
.testegratis .tg-footer {
  border-top: 1.25px solid #c5dfdf;
  background: #f0f2f2;
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
}
.testegratis .tg-footer-banner {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  z-index: 1;
}
.testegratis .tg-footer-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.testegratis .tg-footer-top {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 1200px) {
  .testegratis .tg-footer-top {
    margin-left: 0;
  }
}

/* Footer First Column */
.testegratis .tg-footer-first-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 200px;
}
.testegratis .tg-footer-logo {
  width: 171px;
  height: 36px;
  display: block;
}

/* Footer Columns */
.testegratis .tg-footer-columns {
  display: contents;
}
.testegratis .tg-footer-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testegratis .tg-footer-col strong {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 0%;
  color: #445252;
  margin-bottom: 4px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.testegratis .tg-footer-col a {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 14px;
  letter-spacing: 0%;
  color: #445252;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.testegratis .tg-footer-col a:hover,
.testegratis .tg-footer-first-col .tg-footer-col a:hover,
.testegratis .tg-footer-col-contact .tg-footer-col a:hover {
  color: #445252;
}

/* Newsletter Section */
.testegratis .tg-footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}
.testegratis .tg-newsletter-text {
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 0%;
  color: #445252;
  margin: 0;
}
.testegratis .tg-newsletter-text strong {
  font-weight: 700;
  color: #445252;
}

@media (min-width: 993px) {
  .testegratis .tg-footer-newsletter {
    max-width: 100%;
  }
  .testegratis .tg-newsletter-text br {
    display: block;
  }
}
.testegratis .tg-newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 147.07px;
  height: 39.98px;
  background: #02406e;
  color: #f0f2f2;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0%;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.testegratis .tg-newsletter-btn:hover {
  background: #035a9e;
}

/* Contact Column with Social */
.testegratis .tg-footer-col-contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Social Section */
.testegratis .tg-footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testegratis .tg-footer-social strong {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 28px;
  letter-spacing: 0%;
  color: #445252;
  display: flex;
  align-items: center;
}
.testegratis .tg-social-icons {
  display: flex;
  gap: 12px;
}
.testegratis .tg-social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #021321;
  border-radius: 4px;
}
.testegratis .tg-social-icons img {
  width: 18px;
  height: 18px;
}

/* Footer Copyright */
.testegratis .tg-footer-copyright {
  background: #021321;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.testegratis .tg-footer-copyright p {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0%;
  color: #87a2b4;
  text-align: center;
  margin: 0;
}

/* Responsivo */

/* Desktop grande - ajusta espaçamento */
@media (max-width: 1400px) {
  .testegratis .tg-nav {
    gap: 22px;
    margin: 0 25px;
  }
}

/* Desktop médio - reduz mais o espaçamento */
@media (max-width: 1280px) {
  .testegratis .tg-nav {
    gap: 18px;
    margin: 0 20px;
  }
  .testegratis .tg-nav-link {
    font-size: 14px;
  }
  .testegratis .tg-header-btn {
    width: 180px;
    font-size: 14px;
  }
}

/* Desktop pequeno - remove alguns links */
@media (max-width: 1150px) {
  .testegratis .tg-nav {
    gap: 14px;
    margin: 0 15px;
  }
  .testegratis .tg-nav-link {
    font-size: 13px;
  }
  .testegratis .tg-header-btn {
    width: 160px;
    font-size: 13px;
  }
}

/* Tablet - Header simplificado com menu hambúrguer */
@media (max-width: 1024px) {
  .testegratis .tg-nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: #f0f2f2;
    flex-direction: column;
    padding: 15px 20px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-top: 13px;
    max-height: 45vh;
    overflow-y: auto;
  }

  .testegratis .tg-nav.active {
    display: flex;
  }

  .testegratis .tg-nav-link {
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f2;
    color: #021321;
    font-size: 14px;
  }

  .testegratis .tg-nav-link:hover {
    color: #04c3b4;
  }

  .testegratis .tg-header-btn {
    display: none;
  }

  .testegratis .tg-header-inner {
    justify-content: space-between;
    padding: 0 20px;
  }

  .testegratis .tg-menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .testegratis .tg-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #04c3b4;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
  }

  .testegratis .tg-menu-toggle span:nth-child(1) {
    top: 10px;
  }

  .testegratis .tg-menu-toggle span:nth-child(2) {
    top: 18px;
  }

  .testegratis .tg-menu-toggle span:nth-child(3) {
    top: 26px;
  }

  .testegratis .tg-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 18px;
  }

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

  .testegratis .tg-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
  }
}

@media (max-width: 1200px) {
  .testegratis .tg-footer-banner {
    display: none;
  }
}

@media (max-width: 992px) {
  .testegratis .tg-container {
    padding: 0 20px;
  }

  .testegratis .tg-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 120px 0 32px;
    text-align: center;
  }

  .testegratis .tg-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .testegratis .tg-left h1 {
    text-align: center;
    font-size: 44px;
    line-height: 52px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .testegratis .tg-subtitle {
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
  }

  .testegratis .tg-hero-illustration {
    max-width: 100%;
    padding-top: 40px;
    display: block;
  }

  .testegratis .tg-form-card {
    width: 100%;
    max-width: 489px;
    height: auto;
  }

  .testegratis .tg-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .testegratis .tg-erro-api {
    width: 100%;
    max-width: 489px;
  }
}

@media (max-width: 768px) {
  .testegratis .tg-left h1 {
    font-size: 38px;
    line-height: 44px;
  }

  .testegratis .tg-subtitle {
    font-size: 16px;
    line-height: 22px;
  }

  .testegratis .tg-form-card {
    width: 100%;
    padding: 20px;
  }

  .testegratis .tg-btn {
    width: 100%;
  }

  .testegratis .tg-hero-illustration {
    max-width: 90%;
    padding-top: 30px;
  }
}

@media (max-width: 480px) {
  .testegratis .tg-container {
    width: 95vw;
  }

  .testegratis .tg-left h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .testegratis .tg-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .testegratis .tg-form-card {
    padding: 16px;
  }

  .testegratis input,
  .testegratis select {
    font-size: 14px;
  }

  .testegratis label {
    font-size: 13px;
  }
}

/* Footer Responsivo */
@media (max-width: 992px) {
  .testegratis .tg-footer {
    padding: 40px 0 0 0;
  }

  .testegratis .tg-footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .testegratis .tg-footer-first-col {
    gap: 24px;
  }

  .testegratis .tg-footer-columns {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .testegratis .tg-footer-col {
    gap: 16px;
  }

  .testegratis .tg-footer-col-contact {
    gap: 24px;
  }

  .testegratis .tg-footer-newsletter {
    max-width: 100%;
  }

  .testegratis .tg-footer-copyright {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .testegratis .tg-container {
    padding: 0 20px;
  }

  .testegratis .tg-footer {
    padding: 30px 0 0 0;
  }

  .testegratis .tg-footer-top {
    gap: 32px;
  }

  .testegratis .tg-footer-logo {
    width: 140px;
    height: auto;
  }

  .testegratis .tg-footer-col {
    gap: 16px;
    width: 100%;
  }

  .testegratis .tg-footer-col strong {
    font-size: 15px;
    white-space: normal;
  }

  .testegratis .tg-footer-col a {
    font-size: 13px;
    white-space: normal;
  }

  .testegratis .tg-newsletter-text {
    font-size: 15px;
    line-height: 21px;
  }

  .testegratis .tg-newsletter-text br {
    display: none;
  }

  .testegratis .tg-newsletter-btn {
    width: 100%;
    max-width: 100%;
  }

  .testegratis .tg-footer-copyright {
    margin-top: 30px;
    height: auto;
    min-height: 50px;
    padding: 15px 10px;
  }

  .testegratis .tg-footer-copyright p {
    font-size: 12px;
    word-wrap: break-word;
  }

  .testegratis .tg-hero {
    padding: 120px 0 32px;
  }

  .testegratis .tg-left h1 {
    font-size: 38px;
    line-height: 44px;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .testegratis .tg-subtitle {
    font-size: 16px;
    line-height: 22px;
  }

  .testegratis .tg-form-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .testegratis .tg-erro-api {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    box-sizing: border-box;
  }

  .testegratis .tg-hero-illustration {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .testegratis .tg-btn {
    max-width: 100%;
    width: 100%;
  }

  .testegratis input,
  .testegratis select {
    width: 100%;
    box-sizing: border-box;
  }

  .testegratis label {
    width: 100%;
    word-wrap: break-word;
  }
}

@media (max-width: 485px) {
  .testegratis .tg-container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }

  .testegratis .tg-hero {
    padding: 130px 0 32px;
  }

  .testegratis .tg-left {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .testegratis .tg-left h1 {
    font-size: 32px;
    line-height: 38px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    word-break: break-word;
  }

  .testegratis .tg-subtitle {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    word-break: break-word;
  }

  .testegratis .tg-right {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .testegratis .tg-form-card {
    padding: 16px;
    width: 100%;
    max-width: 100%;
  }

  .testegratis .tg-erro-api {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  .testegratis input,
  .testegratis select {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
  }

  .testegratis label {
    font-size: 13px;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
  }

  .testegratis .tg-btn {
    width: 100%;
    max-width: 100%;
  }

  .testegratis .tg-hero-illustration {
    width: 100%;
    max-width: 100%;
  }

  .testegratis .tg-help {
    font-size: 13px;
    line-height: 20px;
    word-break: break-word;
  }

  .testegratis .tg-legal {
    font-size: 12px;
    line-height: 20px;
  }

  .testegratis .tg-legal a {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .testegratis .tg-container {
    padding: 0 12px;
    width: 100%;
  }

  .testegratis .tg-hero {
    padding: 140px 0 24px;
  }

  .testegratis .tg-form-card {
    padding: 12px;
    border-radius: 12px;
  }

  .testegratis .tg-erro-api {
    padding: 8px;
    font-size: 13px;
  }

  .testegratis input,
  .testegratis select {
    padding: 10px 12px;
    font-size: 13px;
  }

  .testegratis label {
    font-size: 12px;
  }

  .testegratis .tg-btn {
    font-size: 14px;
    height: 44px;
  }

  .testegratis .tg-left h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .testegratis .tg-subtitle {
    font-size: 12px;
    line-height: 18px;
  }

  .testegratis .tg-footer-logo {
    width: 120px;
  }

  .testegratis .tg-social-icons {
    gap: 8px;
  }

  .testegratis .tg-social-icons a {
    width: 28px;
    height: 28px;
  }

  .testegratis .tg-newsletter-btn {
    font-size: 14px;
    height: 36px;
  }

  .testegratis .tg-help {
    font-size: 12px;
    line-height: 18px;
  }

  .testegratis .tg-legal {
    font-size: 11px;
  }

  .testegratis .tg-legal a {
    font-size: 11px;
  }
}
