@charset "UTF-8";
/*@use 'vars' with (
  $primary: #1e40af,   // override opcional
  $radius: .6rem
);*/
@layer base, utilities, mobile, layout;
@layer base {
  /* Box sizing consistente */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  /* Remove margens padrão */
  * {
    margin: 0;
  }
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
  }
  html, body {
    height: 100%;
  }
  body {
    min-height: 100svh;
    text-rendering: optimizeSpeed;
    background-color: #EFEFEF;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #51555E;
    font-family: Outfit, sans-serif;
  }
  /* Mídia responsiva por padrão */
  img, svg, video, canvas, audio, iframe {
    display: block;
    max-width: 100%;
  }
  img, svg, video {
    height: auto;
  }
  /* Controles herdam tipografia */
  button, input, textarea, select {
    font: inherit;
    color: inherit;
  }
  /* Foco visível e elegante */
  :focus-visible {
    outline: 2px solid Highlight;
    outline-offset: 2px;
  }
  section {
    padding: 6rem 0;
  }
  @media (max-width: 768px) {
    section {
      padding: 3rem 0;
    }
  }
  /* Respeita usuários com redução de movimento */
  @media (prefers-reduced-motion: reduce) {
    html:focus-within {
      scroll-behavior: auto;
    }
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
    }
  }
  /* Base Mobile First */
  @media screen and (max-width: 768px) {
    .flex {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  /* kanit-300 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/outfit-v11-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* outfit-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/outfit-v11-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* outfit-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/outfit-v11-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
}
@layer layout {
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-family: Outfit, sans-serif;
    color: #264169;
    font-weight: 600;
    line-height: 1.2;
  }
  h1, .h1 {
    font-size: 3.5rem;
  }
  h2, .h2 {
    font-size: 2em;
  }
  h3, .h3 {
    font-size: 1.75em;
  }
  h4, .h4 {
    font-size: 1.5em;
  }
  h5, .h5 {
    font-size: 0.83em;
  }
  h6, .h6 {
    font-size: 0.67em;
  }
  a {
    color: inherit;
    text-decoration: underline;
    background-color: transparent;
  }
  a:hover {
    color: #264169;
  }
  .copy {
    font-size: 1.15rem;
    font-weight: 300;
    margin: 0 0 3rem 0;
  }
  .color {
    color: var(--color-primary);
  }
  .color-secondary {
    color: #568CC0;
  }
  .color-tertiary {
    color: #7A3E3F;
  }
  .caption {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 400;
    line-height: 1.25rem;
  }
  .btn {
    background-color: #264169;
    color: #fff;
    border-radius: 0;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease, color 0.3s ease;
  }
  .btn:hover {
    background-color: #253132;
    color: #FFF;
    transform: scale(1.15);
  }
  .btn .icon {
    font-size: 2rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn img {
    width: 2rem;
    height: 2rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .btn.outline {
    background-color: transparent;
    border: 2px solid #568CC0;
    color: #568CC0;
  }
  .btn.outline:hover {
    background-color: #264169;
    color: #FFF;
  }
  .btn.accent {
    background-color: #FFA726;
    color: #fff;
  }
  .btn.accent:hover {
    background-color: #568CC0;
    color: #FFF;
  }
  .btn.primary {
    background: #FFA726;
    color: #ffffff;
  }
  .btn.primary:hover:not(:disabled) {
    background: #f57c00;
    border-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  .btn.zap {
    background-color: #42c50f;
  }
  .btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
  }
  .btn.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
  .btn svg {
    flex-shrink: 0;
  }
  .highlight {
    font-weight: 500;
    background-color: #FFA726;
    display: inline-block;
    padding: 0 0.25rem;
    margin: 0 0.125rem;
    border-radius: 0.25rem;
  }
  .tpl__form-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .form-group label {
    font-weight: 600;
    color: #334155;
    font-size: 0.875rem;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 1rem 1.5rem;
    border: 2px solid #cbd5e1;
    border-radius: 0.75rem;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #1e293b;
  }
  .form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder, .form-group select::-moz-placeholder {
    color: #94a3b8;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder,
  .form-group select::placeholder {
    color: #94a3b8;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #FFA726;
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
  }
  .form-group input:disabled,
  .form-group textarea:disabled,
  .form-group select:disabled {
    background: #f1f5f9;
    cursor: not-allowed;
  }
  .form-group input[aria-invalid=true],
  .form-group textarea[aria-invalid=true],
  .form-group select[aria-invalid=true] {
    border-color: #ef4444;
  }
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  .form-group select {
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 4rem;
  }
  .form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  .form-success {
    color: #10b981;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  .form-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
  }
  .form-check input[type=checkbox],
  .form-check input[type=radio] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FFA726;
  }
  .form-check label {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .container {
    max-width: 1600px;
  }
  .tpl {
    max-width: 1600px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    background: #ffffff;
  }
  .tpl__header {
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tpl__header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  .tpl__header-logo img {
    height: 60px;
    width: auto;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tpl__header-nav ul.menu__horizontal {
    gap: 1.5rem;
  }
  .tpl__header-nav a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tpl__header-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFA726;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tpl__header-nav a:hover {
    color: #FFA726;
  }
  .tpl__header-nav a:hover::after {
    width: 100%;
  }
  .tpl__hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 30px;
    overflow: hidden;
  }
  .tpl__hero .hero__image {
    position: absolute;
    top: -150px;
    right: -150px;
    z-index: 1500;
    transform: scaleX(-1);
  }
  .tpl__hero .hero__image.moveis {
    right: 0;
    top: 130px;
  }
  .tpl__hero .hero__image.auditorio {
    right: 5%;
    top: 0;
    height: 100%;
  }
  .tpl__hero .hero__image.teatro {
    right: 0;
    top: 0px;
    height: 100%;
  }
  .tpl__hero .hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #264169 0%, #2f5080 50%, #568CC0 100%);
    z-index: 0;
  }
  .tpl__hero .hero__background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
  }
  .tpl__hero .hero__background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 167, 38, 0.15) 0%, transparent 50%);
  }
  .tpl__hero .hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
  }
  .tpl__hero .hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
  }
  @media (max-width: 1024px) {
    .tpl__hero .hero-title {
      font-size: 3.75rem;
    }
  }
  @media (max-width: 768px) {
    .tpl__hero .hero-title {
      font-size: 3rem;
    }
  }
  .tpl__hero .gradient-text {
    background: linear-gradient(135deg, #FFA726 0%, #ffb84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .tpl__hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
  }
  @media (max-width: 768px) {
    .tpl__hero .hero-subtitle {
      font-size: 1.125rem;
    }
  }
  .tpl__hero .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  @media (max-width: 640px) {
    .tpl__hero .hero-cta {
      flex-direction: column;
    }
    .tpl__hero .hero-cta .btn {
      width: 100%;
    }
  }
  .tpl__hero .hero-trust {
    animation: fadeInUp 1s ease-out 0.7s both;
  }
  .tpl__hero .hero-trust .trust-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
  }
  .tpl__hero .hero-trust .trust-text strong {
    color: #FFA726;
    font-weight: 600;
  }
  .tpl__hero .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
  }
  .tpl__hero .scroll-indicator svg {
    color: #FFA726;
  }
  .tpl__page h1 {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .tpl__page p {
    margin-bottom: 2rem;
  }
  .tpl__page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .tpl__page .page__header {
    padding: 1rem 0 2rem 0;
    border-bottom: 1px solid #ccc;
  }
  .tpl__page .page__content {
    padding: 2rem 0 2rem 0;
  }
  .tpl__empresa {
    padding: 6rem 0 1rem;
  }
  .tpl__empresa .container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
  }
  .tpl__empresa-img img {
    width: 640px;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }
  .tpl__empresa ul.offer {
    padding: 0;
    margin-bottom: 2rem;
  }
  .tpl__empresa ul.offer li {
    font-size: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0 1rem 3.5rem;
    background: transparent url("../images/check.svg") no-repeat left center;
    background-size: 36px 36px;
  }
  .tpl__autoridade {
    padding: 3rem 0;
    background: #f8fafc;
  }
  .tpl__autoridade .container {
    position: relative;
  }
  .tpl__autoridade .container::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: url("/assets/images/santaclarapoltronas.webp") no-repeat center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
  }
  @media (max-width: 768px) {
    .tpl__autoridade .container::after {
      display: none;
    }
  }
  .tpl__autoridade .stats-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .tpl__autoridade .stat-item {
    text-align: center;
  }
  .tpl__autoridade .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFA726;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 16px rgba(255, 167, 38, 0.2);
  }
  .tpl__autoridade .stat-label {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.4;
  }
  .tpl__tarjeta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #264169, #568CC0);
    color: #ffffff;
    overflow: hidden;
  }
  .tpl__tarjeta span {
    display: inline-flex;
    position: relative;
    padding-left: 4rem;
    font-size: 1.5rem;
    margin-right: 3rem;
    white-space: nowrap;
  }
  .tpl__tarjeta span::before {
    content: "";
    background: transparent url("/assets/images/asterisk.svg") no-repeat center center;
    background-size: contain;
    position: absolute;
    width: 32px;
    height: 32px;
    left: 0;
  }
  .tpl__tarjeta .marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
  }
  .tpl__tarjeta .marquee-inner {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    animation: marquee 35s linear infinite;
  }
  .tpl__tarjeta .marquee-content {
    display: flex;
    flex-shrink: 0;
  }
  .tpl__footer {
    color: white;
    padding: 0;
    background: linear-gradient(135deg, #264169, #568CC0);
  }
  .tpl__footer-logo {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .tpl__footer-logo img {
    width: 100px;
  }
  .tpl__footer-columns {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .tpl__footer-copy {
    margin: 0;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .tpl__footer address {
    color: white;
    font-style: normal;
  }
  .tpl__footer h2, .tpl__footer h3 {
    color: white;
    margin-bottom: 2rem;
  }
  .tpl__footer h2 {
    font-weight: 400;
    font-size: 1.25rem;
  }
  .tpl__footer h3 {
    font-size: 1.125rem;
  }
  .tpl__footer a {
    color: white;
    text-decoration: none;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tpl__footer a:hover {
    color: #FFA726;
  }
  .tpl__footer hr {
    margin: 0 0 3rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .tpl__footer ul.menu__vertical li {
    margin-bottom: 0.5rem;
  }
  .tpl__cta {
    background: #264169;
  }
  .tpl__cta .cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  .tpl__cta .cta__content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
  }
  .tpl__cta .cta__content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
  }
  .tpl__diferenciais .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 440px));
    gap: 3rem;
    justify-content: center;
  }
  .tpl__diferenciais .diferencial-card {
    padding: 3rem;
    background: #f8fafc;
    border-radius: 1.5rem;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
  }
  .tpl__diferenciais .diferencial-card:hover {
    border-color: #FFA726;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  .tpl__diferenciais .diferencial-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #FFA726;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  .tpl__diferenciais .diferencial-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #264169;
    margin-bottom: 1rem;
  }
  .tpl__diferenciais .diferencial-description {
    color: #475569;
    line-height: 1.7;
  }
  .tpl__produtos {
    padding: 6rem 0 3rem;
  }
  .tpl__produtos .modelo-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tpl__produtos .modelo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  .tpl__produtos .modelo-image {
    position: relative;
    height: auto;
    overflow: hidden;
  }
  .tpl__produtos .modelo-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    -o-object-fit: contain;
       object-fit: contain;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tpl__produtos .modelo-image .modelo-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: #FFA726;
    color: #ffffff;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
  }
  .tpl__produtos .modelo-card:hover .modelo-image img {
    transform: scale(1.05);
  }
  .tpl__produtos .modelo-content {
    padding: 3rem;
  }
  .tpl__produtos .modelo-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #264169;
    margin-bottom: 1rem;
  }
  .tpl__produtos .modelo-description {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
  }
  .tpl__produtos .modelo-features {
    list-style: none;
    padding: 0;
  }
  .tpl__produtos .modelo-features li {
    padding: 0;
    padding-left: 2rem;
    position: relative;
    color: #334155;
    font-size: 1rem;
  }
  .tpl__produtos .modelo-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFA726;
    font-weight: 700;
  }
  .tpl__produtos .modelos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
  }
  @media (max-width: 768px) {
    .tpl__produtos .modelos-grid {
      grid-template-columns: 1fr;
    }
  }
  .tpl__produtos .modelos-cta {
    padding: 3rem;
    background: #f8fafc;
    border-radius: 1.5rem;
    text-align: center;
  }
  .tpl__produtos .modelos-cta p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
  }
  .tpl__projetos {
    padding: 6rem 0 1rem;
  }
  .tpl__projetos p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #475569;
    line-height: 1.7;
  }
  .tpl__projetos .projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .tpl__projetos .projeto-thumb {
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    position: relative;
  }
  .tpl__projetos .projeto-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .tpl__projetos .projeto-thumb:hover::after {
    background: rgba(0, 0, 0, 0.2);
  }
  .tpl__projetos .projeto-thumb:hover img {
    transform: scale(1.05);
  }
  .tpl__projetos .projeto-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .tpl .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .tpl .lightbox.active {
    display: flex;
    opacity: 1;
  }
  .tpl .lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tpl .lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
  .tpl .lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .tpl .lightbox__close:hover {
    opacity: 1;
  }
  .tpl .lightbox__prev, .tpl .lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .tpl .lightbox__prev:hover, .tpl .lightbox__next:hover {
    background: rgba(255, 255, 255, 0.25);
  }
  .tpl .lightbox__prev {
    left: 1.5rem;
  }
  .tpl .lightbox__next {
    right: 1.5rem;
  }
  .tpl .lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
  }
  .tpl__licitacoes {
    padding: 6rem 0;
    background: linear-gradient(135deg, #264169 0%, #1a2d4a 100%);
    position: relative;
    overflow: hidden;
  }
  .tpl__licitacoes::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .tpl__licitacoes .container {
    position: relative;
    z-index: 1;
  }
  .tpl__licitacoes .licitacoes__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .tpl__licitacoes .licitacoes__icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 167, 38, 0.15);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #FFA726;
  }
  .tpl__licitacoes .section-label {
    color: #FFA726;
  }
  .tpl__licitacoes .section-title {
    color: #ffffff;
  }
  .tpl__licitacoes .licitacoes__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3rem;
  }
  .tpl__licitacoes .licitacoes__text strong {
    color: #ffffff;
  }
  .tpl__licitacoes .licitacoes__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    text-align: left;
    margin-bottom: 3rem;
  }
  @media (max-width: 768px) {
    .tpl__licitacoes .licitacoes__features {
      grid-template-columns: 1fr;
    }
  }
  .tpl__licitacoes .licitacoes__feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
  }
  .tpl__licitacoes .licitacoes__feature-item svg {
    flex-shrink: 0;
    color: #FFA726;
    margin-top: 2px;
  }
  .tpl__clientes {
    text-align: center;
    background-color: #F5F5F5;
  }
  .tpl__clientes p {
    margin-bottom: 3rem;
  }
  .tpl__clientes-list {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .tpl__clientes-list img {
    width: auto;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    padding: 1rem 3rem;
    background-color: white;
    filter: grayscale(0.6);
    border: 1px solid #eee;
  }
  .tpl__clientes-list img:last-child {
    border: 0;
  }
  .tpl__clientes .customers-track {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    animation: marquee 15s linear infinite;
    border: 2px solid #ccc;
  }
  .page-interna .tpl__header-nav {
    display: none;
  }
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(10px);
    }
  }
  h2 small {
    display: block;
    font-size: 0.8rem;
  }
  .section-header {
    max-width: 800px;
    margin-bottom: 6rem;
  }
  .section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 167, 38, 0.1);
    color: #f57c00;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }
  .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #264169;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  @media (max-width: 768px) {
    .section-title {
      font-size: 2.25rem;
    }
  }
  .section-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
  }
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1030;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 35px -5px rgba(37, 211, 102, 0.5);
  }
  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
      box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 167, 38, 0.15);
    border: 1px solid rgba(255, 167, 38, 0.3);
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.2s both;
  }
  .hero-badge .badge-icon {
    font-size: 1.125rem;
  }
  .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
  }
  .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 500;
  }
  .feature-item svg {
    flex-shrink: 0;
    color: #FFA726;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  [data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  [data-aos].aos-animate {
    opacity: 1;
  }
  [data-aos=fade-up] {
    transform: translateY(30px);
  }
  [data-aos=fade-up].aos-animate {
    transform: translateY(0);
  }
  [data-aos=zoom-in] {
    transform: scale(0.9);
  }
  [data-aos=zoom-in].aos-animate {
    transform: scale(1);
  }
  .categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
  }
  @media (max-width: 768px) {
    .categorias-grid {
      grid-template-columns: 1fr;
    }
  }
  .categoria-card {
    padding: 3rem;
    background: #ffffff;
    border-radius: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
  }
  .categoria-card:hover {
    border-color: #FFA726;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  .categoria-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.1) 0%, rgba(255, 167, 38, 0.05) 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #FFA726;
  }
  .categoria-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #264169;
    margin-bottom: 1.5rem;
  }
  .categoria-lista {
    list-style: none;
    text-align: left;
  }
  .categoria-lista li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 1rem;
  }
  .categoria-lista li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FFA726;
    font-weight: 700;
  }
  .modelos-grid-moveis {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
  @media (max-width: 1024px) {
    .modelos-grid-moveis {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
  }
  @media (max-width: 768px) {
    .modelos-grid-moveis {
      grid-template-columns: 1fr;
    }
  }
  @media screen and (max-width: 768px) {
    .tpl__autoridade .stats-list {
      grid-template-columns: 1fr 1fr;
      padding-left: 0;
    }
    .tpl__clientes-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .tpl__clientes-list img {
      width: 150px;
      height: auto;
      padding: 1rem;
    }
    .tpl__projetos .projetos-grid {
      grid-template-columns: 1fr 1fr;
    }
    .lightbox__prev,
    .lightbox__next {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }
    .tpl__empresa .container {
      grid-template-columns: 1fr;
    }
    .form-row {
      grid-template-columns: 1fr;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }
    .tpl__footer-columns {
      grid-template-columns: 1fr;
    }
    .tpl__hero .hero__image {
      position: relative;
    }
  }
}
@layer utilities {
  .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .container-fluid {
    max-width: 100%;
  }
  @media screen and (max-width: 1599px) {
    .container .container {
      padding: 0 1rem;
    }
  }
  .hidden {
    display: none !important;
  }
  .flex {
    display: flex !important;
  }
  .grid {
    display: grid !important;
  }
  .grid-2-columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .grid-3-columns {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .grid-4-columns {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .grid-5-columns {
    grid-template-columns: repeat(5, 1fr) !important;
  }
  .grid-6-columns {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .block {
    display: block !important;
  }
  .inline-block {
    display: inline-block !important;
  }
  .inline {
    display: inline !important;
  }
  .inline-flex {
    display: inline-flex !important;
  }
  .row {
    flex-direction: row !important;
  }
  .column {
    flex-direction: column !important;
  }
  .text-left {
    text-align: left !important;
  }
  .text-center {
    text-align: center !important;
  }
  .text-right {
    text-align: right !important;
  }
  .text-justify {
    text-align: justify !important;
  }
  .items-center {
    align-items: center !important;
  }
  .justify-center {
    justify-content: center !important;
  }
  .justify-between {
    justify-content: space-between !important;
  }
  .w-full {
    width: 100% !important;
  }
  .h-full {
    height: 100% !important;
  }
  .gap-xs {
    gap: 0.25rem !important;
  }
  .gap-sm {
    gap: 0.5rem !important;
  }
  .gap-md {
    gap: 1rem !important;
  }
  .gap-lg {
    gap: 1.5rem !important;
  }
  .gap-xl {
    gap: 2rem !important;
  }
  .ratio-1x1 {
    aspect-ratio: 1/1 !important;
  }
  .ratio-16x9 {
    aspect-ratio: 16/9 !important;
  }
  .ratio-4x3 {
    aspect-ratio: 4/3 !important;
  }
  .ratio-3x2 {
    aspect-ratio: 3/2 !important;
  }
  .overflow-hidden {
    overflow: hidden !important;
  }
  .columns-1 {
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
  .columns-2 {
    -moz-column-count: 2 !important;
         column-count: 2 !important;
  }
  .columns-3 {
    -moz-column-count: 3 !important;
         column-count: 3 !important;
  }
  .columns-4 {
    -moz-column-count: 4 !important;
         column-count: 4 !important;
  }
  .columns-5 {
    -moz-column-count: 5 !important;
         column-count: 5 !important;
  }
  .columns-6 {
    -moz-column-count: 6 !important;
         column-count: 6 !important;
  }
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-none {
    flex: none !important;
  }
  .flex-1 {
    flex: 1 !important;
  }
  .flex-auto {
    flex: auto !important;
  }
  .flex-grow {
    flex-grow: 1 !important;
  }
  .flex-shrink {
    flex-shrink: 1 !important;
  }
  .order-first {
    order: -1 !important;
  }
  .order-last {
    order: 999 !important;
  }
  .order-none {
    order: 0 !important;
  }
  .order-1 {
    order: 1 !important;
  }
  .order-2 {
    order: 2 !important;
  }
  .order-3 {
    order: 3 !important;
  }
  .order-4 {
    order: 4 !important;
  }
  .order-5 {
    order: 5 !important;
  }
  .order-6 {
    order: 6 !important;
  }
  .float-left {
    float: left !important;
  }
  .float-right {
    float: right !important;
  }
  .float-none {
    float: none !important;
  }
  .m-0 {
    margin: 0 !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mt-0 {
    margin-top: 0 !important;
  }
  .ml-0 {
    margin-left: 0 !important;
  }
  .mr-0 {
    margin-right: 0 !important;
  }
  .mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-0 {
    padding: 0 !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pl-0 {
    padding-left: 0 !important;
  }
  .pr-0 {
    padding-right: 0 !important;
  }
  .px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  ul.menu__horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul.menu__horizontal li {
    margin-right: 1rem;
  }
  ul.menu__horizontal li:last-child {
    margin-right: 0;
  }
  ul.menu__vertical {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul.menu__vertical li {
    margin-bottom: 1rem;
  }
  ul.menu__vertical li:last-child {
    margin-bottom: 0;
  }
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(10px);
    }
  }
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
      box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@layer mobile {
  @media screen and (max-width: 768px) {
    .tpl__autoridade .stats-list {
      grid-template-columns: 1fr 1fr;
      padding-left: 0;
    }
    .tpl__clientes-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .tpl__clientes-list img {
      width: 150px;
      height: auto;
      padding: 1rem;
    }
    .tpl__projetos .projetos-grid {
      grid-template-columns: 1fr 1fr;
    }
    .lightbox__prev,
    .lightbox__next {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }
    .tpl__empresa .container {
      grid-template-columns: 1fr;
    }
    .form-row {
      grid-template-columns: 1fr;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }
    .tpl__footer-columns {
      grid-template-columns: 1fr;
    }
    .tpl__hero .hero__image {
      position: relative;
    }
  }
}
/*# sourceMappingURL=styles.css.map */
