.ltn__slide-item-2 {
    height: calc(100vh - 20px);
    padding-top: 90px;
}

.header-absolute {
    position: absolute;
    z-index: 1000 !important;
    background: transparent !important;
    width: 100%;
}

.bg-transparent {
    background: transparent !important;
}

.infos-header {
    color: var(--cor-site-3);
}

.ltn__header-6 .ltn__main-menu>ul>li>a {
    color: var(--cor-site-3);
}

.typewriter-text {
    display: inline-block;
    color: var(--cor-site-1);
    font-weight: 600;
}

.typewriter-text::after {
    content: "|";
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.titulo-adm {
    font-size: 3rem;
    font-weight: 500;
    color: var(--cor-site-3);
    margin-bottom: 20px;
}

.banner-content {
    max-width: 750px;
}

.form-container {
    margin: -60px auto 60px;
    padding: 20px 40px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: center;
    z-index: 9000;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--cor-site-1), var(--cor-site-2));
}

.form-header {
    margin-bottom: 20px;
    text-align: start;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--cor-site-5);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--cor-site-1), var(--cor-site-2));
    border-radius: 3px;
}

.form-description {
    color: var(--cor-site-6);
    font-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
}

.form-group {
    margin-bottom: 7px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--cor-site-5);
    font-size: 14px;
}

.required::after {
    content: ' *';
    color: var(--cor-site-1);
}

.form-control {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    background-color: #f8f9fa !important;
    height: 47px !important;
}

.form-control:focus {
    outline: none;
    border-color: var(--cor-site-2);
    box-shadow: 0 0 0 3px rgba(251, 65, 42, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(to right, var(--cor-site-1), var(--cor-site-2));
    color: var(--white);
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 2, 9, 0.3);
}

.form-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--cor-site-6);
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
        margin: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--cor-site-5);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--cor-site-1), var(--cor-site-2));
    border-radius: 3px;
}

.section-subtitle {
    color: var(--cor-site-6);
    font-size: 16px;
}

.services-title {
    margin-bottom: 20px;
    text-align: center;
}

.services-section {
    background: #f9fafc;
    padding: 60px 0;
}

.services-content {
    display: grid;
    grid-template-columns: 59% 41%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-card.highlighted {
    border-top: 4px solid var(--cor-site-1);
    box-shadow: 0 10px 15px rgba(59, 130, 246, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.card-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0rem;
}

.services-visual {
    flex: 1;
    position: relative;
    height: 600px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.visual-overlay {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--cor-site-1), #6366f1);
    top: 10%;
    right: 10%;
    border-radius: 12px;
    z-index: 1;
    opacity: 0.1;
}

@media (max-width: 1024px) {
    .services-container {
        flex-direction: column;
    }

    .services-visual {
        order: -1;
        height: 400px;
        margin-bottom: 2rem;
    }
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
}

.app-section {
    background-color: var(--cor-site-8);
    padding: 60px 40px;
    color: var(--cor-site-3);
    border-radius: 4px;
}

.container-app {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Cards */
.app-features {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature .icon {
    font-size: 1.8rem;
    margin-top: 4px;
    color: var(--cor-site-1-3);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature p {
    font-size: 1rem;
    color: var(--cor-site-1-3);
}

/* Texto central */
.app-center {
    flex: 1 1 280px;
    text-align: center;
}

.app-center h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.app-center p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--cor-site-1-3);
}

/* Botões */
.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.store-btn {
    display: flex;
    gap: 10px;
    background-color: #000;
    color: white;
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
    width: 180px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.google strong {
    font-size: 1rem;
}

.apple strong {
    font-size: 1rem;
}

/* Imagem do celular */
.app-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image img {
    max-width: 100%;
    width: 280px;
}

.store-icon {
    font-size: 1.5rem;
}

/* Responsivo */
@media (max-width: 1024px) {
    .container-app {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-features,
    .app-center,
    .app-image {
        align-items: baseline;
    }

    .feature {
        justify-content: center;
        text-align: left;
    }
}

/* Estilização Premium para Seção com Imagem de Fundo */
.bg-image-cta {
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bg-image-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.acao-exclusivos {
    max-width: 600px;
    color: white;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.acao-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cor-site-3);
    /* Usando a cor principal do site */
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    margin: 0;
    line-height: 1.2;
    transition: cubic-bezier(0.4, 0, 1, 1) 0.3s;
}

.acao-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--cor-site-1);
    /* Usando a cor secundária do site */
    border-radius: 3px;
}

/* Efeito hover opcional */
.acao-title:hover {
    color: var(--cor-site-5);
    transition: color 0.3s ease;
    transition: cubic-bezier(0.4, 0, 1, 1) 0.3s;
    transform: scale(1.05);
}

.acao-title:hover:after {
    background: var(--cor-site-1);
    transition: cubic-bezier(0.4, 0, 1, 1) 0.3s;
}

.acao-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 10px;
    opacity: 0.9;
    color: var(--cor-site-3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.acao-button {
    display: inline-block;
    background: var(--cor-site-1);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(246, 59, 59, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acao-button:hover {
    background: var(--cor-site-2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(246, 59, 59, 0.6);
    color: var(--cor-site-3);
}

/* Responsividade */
@media (max-width: 768px) {
    .bg-image-cta {
        padding: 60px 0;
    }

    .acao-exclusivos {
        padding: 20px;
        text-align: center;
    }

    .acao-title {
        font-size: 2rem;
    }

    .acao-text {
        font-size: 1rem;
    }

    .acao-button {
        padding: 12px 24px;
    }

    .services-content {
        display: grid;
        grid-template-columns: auto;
    }

    .form-container {
        margin: -60px auto 60px;
        padding: 20px 40px;
        background: var(--white);
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 20px;
        align-items: center;
        z-index: 9000;
    }

    .acao-exclusivos {
        max-width: max-content;
        color: white;
        padding: 40px;
        position: relative;
        z-index: 2;
    }
}

.hamburger-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--cor-site-3);
    border-radius: 4px;
    transition: var(--transition-all);
    transform-origin: center;

}

@media (max-width: 425px) {
    .row {
        flex-direction: row;
    }

    .form-container {
        margin: -60px auto 60px;
        padding: 20px 20px;
        background: var(--white);
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: auto;
        gap: 20px;
        align-items: center;
        z-index: 9000;
    }

    .titulo-adm {
        font-size: 2rem;
        font-weight: 500;
        color: var(--cor-site-3);
        margin-bottom: 20px;
    }
}

/* Botão */
.btn-site-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--cor-site-2), var(--cor-site-1));
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: transform .5s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 12px 28px rgba(17, 134, 251, .35);
}

.btn-site-1:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, var(--cor-site-2), var(--cor-site-1));
    color: #fff;
    box-shadow: 0 18px 36px rgba(17, 134, 251, .45);
}

.sv-cards {
    padding: 80px 0;
}

.sv-cards__head {
    text-align: center;
    margin-bottom: 50px;
}

.sv-cards__kicker {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--cor-site-2);
    font-weight: 600;
}

.sv-cards__title {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0 5px;
}

.sv-cards__sub {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.sv-cards__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.sv-card {
    width: calc(25% - 25px); /* 4 por linha */
}

.sv-card:nth-child(n+5) {
    width: calc(33.333% - 25px); /* 3 na segunda linha */
}

@media (max-width: 1200px) {
    .sv-card {
        width: calc(33.333% - 25px);
    }
}

@media (max-width: 768px) {
    .sv-card {
        width: calc(50% - 25px);
    }

    .sv-card:nth-child(n+5) {
        width: calc(50% - 25px);
    }
}

@media (max-width: 500px) {
    .sv-card {
        width: 100% !important;
    }
}


.sv-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    transition: .25s ease;
    border: 1px solid #eee;
}

.sv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.sv-card__icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(to right, var(--cor-site-2), var(--cor-site-1));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
    margin-bottom: 18px;
}

.sv-card__title {
    font-size: 20px;
    font-weight: 700;
}

.sv-card__tag {
    font-size: 13px;
    color: var(--cor-site-2);
    margin-bottom: 10px;
    font-weight: 600;
}

.sv-card__text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.sv-card--highlight {
    border: 2px solid var(--cor-site-2);
    background: linear-gradient(to bottom, #f7fbff, #ffffff);
}

/* =========================
   CTA PARALLAX
========================= */
.dc-cta-parallax {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* 🔥 efeito imagem parada */
}

.dc-cta-parallax__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(17, 24, 39, .78),
            rgba(17, 24, 39, .78));
    z-index: 1;
}

.dc-cta-parallax .container {
    position: relative;
    z-index: 2;
}

.dc-cta-parallax__content {
    padding: 40px 20px;
}

.dc-cta-parallax__title {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.dc-cta-parallax__text {
    max-width: 820px;
    margin: 0 auto 26px;
    font-size: 18px;
    line-height: 1.7;
    color: #e5e7eb;
}

/* Botão */
.dc-cta-parallax__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--cor-site-2), var(--cor-site-1));
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: transform .5s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 12px 28px rgba(17, 134, 251, .35);
}

.dc-cta-parallax__btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, var(--cor-site-2), var(--cor-site-1));
    color: #fff;
    box-shadow: 0 18px 36px rgba(17, 134, 251, .45);
}

/* Mini lista de serviços (opcional) */
.dc-cta-parallax__services {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    color: #e5e7eb;
    font-size: 14px;
}

.dc-cta-parallax__services span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
}

.dc-cta-parallax__services i {
    color: #fff;
    opacity: .95;
    font-size: 14px;
}

/* Responsivo */
@media (max-width: 991px) {
    .dc-cta-parallax {
        background-attachment: scroll;
        /* evita bug no mobile */
        min-height: 360px;
    }

    .dc-cta-parallax__title {
        font-size: 34px;
    }

    .dc-cta-parallax__text {
        font-size: 16px;
    }
}

/* ============ ORÇAMENTO ============ */
.orcamento{
  padding: 80px 0;
  background: #fff;
}

.orcamento__head{
  text-align: center;
  margin-bottom: 22px;
}

.orcamento__title{
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #192242;
}

.orcamento__bar{
  width: 70px;
  height: 3px;
  background: #1186FB;
  margin: 12px auto 0;
  border-radius: 999px;
}

.orcamento__card{
  background: #ffffff;
  border: 1px solid rgba(25,34,66,0.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(25,34,66,0.08);
}

.orcamento__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.orcamento__col{
  min-width: 0;
}

.form-group{
  margin-bottom: 16px;
}

.form-group label{
  display: flex;
  margin-bottom: 8px;
  font-weight: 800;
  color: #192242;
  font-size: 16px;
}

.form-control{
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(25,34,66,0.14);
  padding: 0 14px;
  font-size: 14.5px;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
  background: #fff;
  color: #192242;
}

.form-control:focus{
  border-color: rgba(17,134,251,0.55);
  box-shadow: 0 0 0 4px rgba(17,134,251,0.14);
}

.input-icon{
  position: relative;
}

.input-icon .form-control{
  padding-right: 44px;
}

.input-icon__i{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(25,34,66,0.55);
  background: rgba(25,34,66,0.04);
  border: 1px solid rgba(25,34,66,0.08);
}

.form-row-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* toggles */
.toggles{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}

.toggle{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(25,34,66,0.10);
  background: rgba(25,34,66,0.02);
  user-select: none;
}

.toggle input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle__ui{
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: rgba(25,34,66,0.18);
  position: relative;
  transition: background .15s ease;
  flex: 0 0 auto;
  display: flex;
}

.toggle__ui::after{
  content:"";
  position:absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  transition: transform .15s ease;
}

.toggle input:checked + .toggle__ui{
  background: #1186FB;
}

.toggle input:checked + .toggle__ui::after{
  transform: translateX(18px);
}

.toggle__text{
  font-size: 14.5px;
  color: rgba(25,34,66,0.85);
  font-weight: 600;
}

/* captcha area */
.captcha-box{
  min-height: 78px;
  display:flex;
  align-items:center;
}

/* botão */
.form-actions{
  display:flex;
  justify-content: flex-end;
  padding-top: 6px;
}

.btn-orcamento{
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: #1186FB;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 14px 30px rgba(17,134,251,0.25);
  cursor: pointer;
}

.btn-orcamento:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(17,134,251,0.30);
}

@media (max-width: 991px){
  .orcamento__title{ font-size: 34px; }
  .orcamento__grid{ grid-template-columns: 1fr; }
  .form-actions{ justify-content: stretch; }
  .btn-orcamento{ width: 100%; }
}
