:root {
    --verde: #3DBD8A;
    --verde-escuro: #2A9E6F;
    --branco: #FFFFFF;
    --cinza-texto: #555555;
    --cinza-claro: #F5F5F5;
    --preto: #1A1A1A;
    --fonte: 'Segoe UI', sans-serif;
    --degrade: linear-gradient(270deg, #80C783 0%, #00995C 100%);
    --titulos: #096;
    --titulos2: #00995C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte);
    color: var(--preto);
    background-color: #F2FFF3;
    overflow-x: hidden;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */

.header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    transition: height 0.3s ease;
}

.header.scrolled {
    background: var(--degrade);
    backdrop-filter: blur(12px);
    position: fixed;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header.scrolled .container {
    height: 100px;
}

.header.scrolled .logoassist img {
    width: 110px;
    height: auto;
}

.logoassist img {
    width: 164.725px;
    height: 78.463px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 60px;
}

.menu ul li a {
    color: var(--branco);
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.menu ul li a:hover { color: var(--verde); }

.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    padding: 13px 22px;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-agendar:hover { background-color: rgba(255,255,255,0.25); }

/* Menu toggle — oculto no desktop */
.menu-toggle { display: none; }
.menu-close  { display: none; }
.menu-logo   { display: none; }

/* ===== HERO ===== */

.hero {
    position: relative;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 70px 0;
    color: var(--branco);
    overflow: visible;
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero-text-content h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-descrip p {
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-image video {
    width: 100%;
    max-width: 309px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
}

#btn-som {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: background 0.2s;
}

#btn-som:hover {
    background: rgba(0, 0, 0, 0.7);
}

.informacoes {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: nowrap;
    width: fit-content;
    max-width: 500px;
    margin-left: 60;
}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.info-numero {
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    display: block;
}

.info-item p {
    font-family: "Urbanist", sans-serif;
    color: #c5ecdc;
    font-size: 14px;
    white-space: nowrap;
}

.btn-tutorial a {
    display: inline-flex;
    align-items: center;
    background-color: var(--branco);
    color: var(--verde-escuro);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 30px;
    gap: 8px;
}

.btn-tutorial a:hover {
    background-color: var(--cinza-claro);
    transform: translateY(-1px);
}

.icone-play {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1.86px solid #00804D;
    flex-shrink: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.btn-whatsapp {
    position: absolute;
    bottom: -30px;
    right: 70px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00995C;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

.btn-whatsapp:hover { transform: scale(1.05); }

/* ===== EMPRESAS ===== */

.container-empresa {
    width: 100%;
    padding: 80px 120px;
}

.container-empresa h2 {
    font-family: "Urbanist", sans-serif;
    color: #00995C;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    line-height: 56px;
}

.container-empresa p {
    color: #6E6F6F;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 22px;
    font-weight: 300;
    margin-top: 24px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 48px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll-logos 40s linear infinite;
    margin-top: 80px;
    margin-bottom: 60px;
}

.carousel:hover { animation-play-state: paused; }

.carousel img {
    height: 70px;
    width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s, filter 0.3s;
}

.carousel img:hover { filter: grayscale(0%); opacity: 1; }

/* ===== DIFERENCIAIS ===== */

#diferenciais {
    width: 100%;
    padding: 80px 120px;
}

.diferenciais-intro {
    text-align: center;
    margin-bottom: 48px;
}

.diferenciais-intro h2 {
    font-family: "Urbanist", sans-serif;
    color: var(--verde-escuro);
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 12px;
}

.diferenciais-intro p {
    font-family: "Urbanist", sans-serif !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    line-height: 32px !important;
    color: #6E6F6F !important;
    text-align: center !important;
    max-width: 700px !important;
    width: 100% !important;
    margin: 16px auto 0 auto !important;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.card {
    background-color: var(--branco);
    border-radius: 22.147px;
    padding: 33px 25px;
    box-shadow: 0 18.456px 23.07px -4.614px rgba(0, 0, 0, 0.10);
}

.card-grande {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-grande h3 {
    font-family: "Urbanist", sans-serif;
    display: flex;
    align-items: center;
    gap: 18.456px;
    font-size: 33.22px;
    font-weight: 700;
    color: var(--preto);
}

.card-grande p {
    color: #4A5565;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 23px;
    line-height: 25px;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 18.456px;
    margin-top: 30px;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 28.606px;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--preto);
}

.tech-list li .material-symbols-outlined,
.tech-list li i {
    background-color: #e8f8f1;
    color: var(--verde);
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.coluna-pequena {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    flex: 1;
    gap: 40px;
}

.card-pequeno {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.card-pequeno h3 {
    color: #101828;
    font-family: "Inter", sans-serif;
    font-size: 22.17px;
    font-weight: 700;
    line-height: 29.561px;
    width: 100%;
}

.card-pequeno p {
    font-size: 14px;
    color: #7c7c7c;
    line-height: 1.6;
    width: 100%;
    max-width: 90%;
}

.card-grande > .material-symbols-outlined {
    background: linear-gradient(270deg, #80C783 0%, #00995C 100%);
    box-shadow: 0 3.691px 5.537px -3.691px rgba(0, 201, 80, 0.544);
    color: var(--branco);
    border-radius: 14.765px;
    padding: 12.919px;
    font-size: 24px;
    width: fit-content;
}

.card-pequeno > .material-symbols-outlined {
    background-color: #e8f8f1;
    color: var(--verde);
    border-radius: 14.765px;
    padding: 12.919px;
    font-size: 22px;
    width: fit-content;
}

/* ===== NOSSOS SERVIÇOS ===== */

.nossos-servicos {
    background-image:
        linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
        var(--degrade);
    background-size: 40px 40px, 40px 40px, auto;
    width: 100%;
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.nossos-servicos .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.nossos-servicos h2 {
    color: #fff;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.nossos-servicos .subtitulo {
    color: #fff;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 28px;
}

.tabs-container {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 1.513px 9.08px 0 rgba(0, 0, 0, 0.12);
    border-radius: 12.107px;
    padding: 4px;
    gap: 0;
    margin-top: 20px;
}

.tab-pill {
    position: absolute;
    background: #fff;
    border-radius: 9.08px;
    transition: left 0.25s ease, width 0.25s ease;
    top: 4px;
    height: calc(100% - 8px);
    z-index: 0;
}

.tab-btn {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.8);
    padding: 10px 28px;
    border-radius: 12.107px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.25s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    color: #1a7a4a;
    font-weight: 600;
}

.content-card {
    display: none;
    background: #fff;
    border-radius: 24px;
    border: 2px solid #E2E8F0;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.18);
    max-width: 1074px;
    width: 100%;
    min-height: 564px;
    padding: 40px;
    flex-direction: row;
    align-items: stretch;
    margin-top: 50px;
    gap: 40px;
}

.content-card.active { display: flex; }

.card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    flex: 1 0 0;
    align-self: stretch;
}

.card-text h3 {
    color: #00804D;
    font-family: "Urbanist", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.card-text p {
    color: #6E6F6F;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    max-width: 421px;
}

.card-image {
    flex-shrink: 0;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== DASHBOARD ===== */

.secao-dashboard { padding: 80px 120px; }

.dashboard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.dashboard h3 {
    color: #00995C;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 43px;
    font-weight: 700;
    line-height: 56px;
}

.dashboard p {
    color: #6E6F6F;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.dashboard-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.hover-assist {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--titulos);
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 16px 16px 0 0;
}

.dashboard-desktop,
.dashboard-mobile {
    width: 100%;
    border-radius: 0 0 16px 16px;
}

.dashboard-mobile { display: none; }

/* ===== CONTATO ===== */

.secao-contato {
    width: 100%;
    padding: 80px 120px;
}

.header-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}

.header-contato h2 {
    max-width: 1086px;
    width: 100%;
    color: var(--titulos);
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 16px;
}

.header-contato p {
    max-width: 768px;
    width: 100%;
    color: #6E6F6F;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.cards-segmentos {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 48px;
    width: 100%;
    margin-bottom: 48px;
}

.card-seg {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    max-width: none;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card-seg svg {
    color: var(--titulos);
    background: #ECFDF5;
    padding: 12px;
    border-radius: 14px;
    width: 48px;
    height: 48px;
}

.card-seg h3 {
    color: #101828;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.card-seg p {
    color: #4A5565;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

/* FORM */

.form-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    width: 100%;
    min-height: 796px;
    border-radius: 24px;
    border: 1px solid #F3F4F6;
    background: #fff;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.10), 0 8px 10px -6px rgba(0,0,0,0.10);
}

.form-card form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-card h3 {
    font-family: "Urbanist", sans-serif;
    color: #101828;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    width: 100%;
}

.form-subtitulo {
    color: #4A5565;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
    margin-top: -13px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: "Urbanist", sans-serif;
    color: #364153;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    color: var(--preto);
    background: #F9FAFB;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--verde); }

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    color: #B0B0B0;
}

.form-group.full-width { grid-column: 1 / -1; width: 100%; }

.form-group textarea { resize: none; min-height: 120px; }

.btn-enviar {
    width: 100%;
    padding: 16px;
    background: #096;
    box-shadow: 0 10px 15px -3px rgba(0,153,102,0.20), 0 4px 6px -4px rgba(0,153,102,0.20);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 8px;
}

.btn-enviar:hover { opacity: 0.9; }

.form-footer {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    color: #B0B0B0;
    text-align: center;
    width: 100%;
    margin-top: -20px;
}

.form-group label span.obrigatorio {
    color: red;
    margin-left: 3px;
}

/* EXPECTATIVA */

.expectativa-secao {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
    margin-top: 90px;
}

.expectativa-secao h3 {
    color: #096;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    width: 100%;
}

.grid-expectativas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.card-exp {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #fff;
    width: 100%;
}

.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ECFDF5;
    flex-shrink: 0;
}

.card-exp h4 {
    color: #101828;
    font-size: 21.094px;
    font-weight: 500;
    line-height: 23.438px;
    font-family: "Urbanist", sans-serif;
}

.card-exp p {
    color: #4A5565;
    font-family: "Inter", sans-serif;
    font-size: 16.406px;
    font-weight: 400;
    line-height: 23.438px;
}

/* ===== FAQ ===== */

.secao-faq {
    background: #F2FFF3;
    padding: 80px 120px;
}

.container-faq {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.faq-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--degrade);
    flex-shrink: 0;
}

.faq-info h2 {
    font-family: "Urbanist", sans-serif;
    color: var(--titulos2);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 15px;
}

.faq-info p {
    color: #6E6F6F;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;
    color: #6E6F6F;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item p {
    padding: 0 24px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #6E6F6F;
    line-height: 1.7;
}

.arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.arrow::after {
    content: '';
    border: solid #00804D;
    border-width: 0 1.5px 1.5px 0;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -3px;
}

details[open] .arrow::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

details[open] summary {
    color: var(--titulos);
    border-bottom: none;
}

/* ===== FOOTER ===== */

.footer-principal {
    background-image:
        linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
        var(--degrade);
    background-size: 40px 40px, 40px 40px, auto;
    color: #fff;
    width: 100%;
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-logo img {
    width: 210px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: "Urbanist", sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    transition: opacity 0.2s;
}

.social-icons a:hover { opacity: 0.8; }

.footer-col {
    padding-left: 29px;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-top: 8px;
    margin-left: -90px;
}

.footer-col h3 {
    font-family: "Urbanist", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 40px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    color: #fff;
    line-height: 40px;
    white-space: normal;
    flex-wrap: wrap;
}

.footer-col ul li i { font-size: 17px; color: #fff; width: 20px; }

.links-rapidos li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    color: #fff;
    transition: opacity 0.2s;
}

.links-rapidos li a:hover { opacity: 0.8; }
.link-arrow { font-size: 12px; color: #fff; }

.footer-bottom {
    width: 100%;
    margin-top: 110px;
    padding-bottom: 24px;
}

.footer-bottom .container-footer { display: block; }

.footer-line {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.footer-bottom p {
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    color: #fff;
    text-align: center;
}

/* ===== ANIMAÇÕES ===== */

@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   RESPONSIVO
   ============================================================ */

/* ===== 1280px ===== */
@media (max-width: 1280px) {
    .nossos-servicos,
    .secao-contato,
    .footer-principal,
    .secao-faq,
    #diferenciais,
    .container-empresa,
    .secao-dashboard {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* ===== 1024px ===== */
@media (max-width: 1024px) {
    .hero-text-content h1 { font-size: 40px; }

    .diferenciais-grid { grid-template-columns: 1fr; }
    .coluna-pequena { margin-left: 0; flex-direction: row; }
    .card-pequeno { flex: 1; }

    .container-faq { grid-template-columns: 1fr; gap: 40px; }

    .container-footer { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-col-brand { grid-column: 1 / -1; }
}

/* ===== 768px — MOBILE ===== */
@media (max-width: 768px) {

    /* --- HEADER --- */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 4px;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .header {
        padding: 0; 
        width: 100%;
    }

    .header .container {
        height: auto;
        border-left: none;   
        border-right: none;  
        border-top: none;
        border-bottom: 1px solid rgba(73, 73, 73, 0.25);
        box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10);
        border-radius: 0;    
        padding: 30px 40px; 
        width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header.scrolled .container {
        height: auto;
        padding: 10px 20px;
    }

    .header .logoassist img {
        width: 125px;
        height: 58.129px;
        margin-left: 10px;
    }

    .header.scrolled .logoassist img {
        width: 100px;
        height: auto;
    }

    /* --- MENU MOBILE --- */

    .menu-overlay {
    display: none;
    position: fixed;
    top: 178px; /* ajuste conforme a altura do menu */
    left: 0;
    right: 0;
    bottom: 0;
    background: #80c783c5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 150;
    }

    .menu-overlay.open {
        display: block;
    }

    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 14px !important;
        max-width: 100%;
        padding: 0 0 32px 0;
        z-index: 200;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.359);
    }

    .menu.open { display: block; }


    .menu-logo {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        width: 100%;
        padding: 20px 40px; 
        background: linear-gradient(270deg, #80C783 0%, #00995C 100%);
        box-sizing: border-box;
    }

    .menu-logo img {
        width: 118px;
        height: 58.129px;
        margin-left: 10px;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 4px;
        position: static !important; 
        margin-right: 30px;
    }

    .menu-close {
        display: flex;
        position: absolute;
        top: 30px;
        right: 70px;
        background: transparent;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        font-weight: bold;
        cursor: pointer;
        z-index: 1;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 0; 
        margin: 0 40px;
    }

    .menu ul li {
        width: 100%;
        border-bottom: 1px solid #E5E7EB;
        padding: 16px 0;
    }

    .menu ul li:last-child { border-bottom: none; padding-bottom: 0; }

    .menu ul li a {
        color: #6E6F6F;
        font-size: 16px;
        font-weight: 500;
    }

    .menu ul li button.btn-agendar {
        background: linear-gradient(270deg, #80C783 0%, #00995C 100%);
        color: #fff;
        border: none;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        backdrop-filter: none;
        box-shadow: none;
    }

    /* --- HERO --- */
    .hero {
        padding: 130px 20px 60px;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 28px;
    }

    .hero-text-content h1 { font-size: 28px; line-height: 1.2; margin-top: 0; }
    .hero-descrip p { font-size: 15px; line-height: 24px; margin-bottom: 20px; max-width: 100%; }

    .informacoes {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        max-width: 100%;
    }

    .btn-tutorial a { border-radius: 50px; padding: 10px 20px; margin-top: 20px; }

    .hero-image {
        display: flex;
        order: 2;
        width: 100%;
    }

    .hero-image img {
        max-width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center top;
        border-radius: 20px;
    }

    .hero-image video {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: 0;
    border-radius: 16px;
    }

    #btn-som {
    bottom: 8px;
    right: 8px;
    }

    .btn-whatsapp { bottom: -24px; right: 20px; width: 50px; height: 50px; font-size: 24px; }

    /* --- PADDINGS GERAIS --- */
    .nossos-servicos,
    .secao-contato,
    .footer-principal,
    .secao-faq,
    #diferenciais,
    .container-empresa,
    .secao-dashboard { padding-left: 20px; padding-right: 20px; }

    /* --- EMPRESAS --- */
    .container-empresa { padding-top: 60px; padding-bottom: 60px; }
    .container-empresa h2 { font-size: 26px; line-height: 34px; }
    .container-empresa p  { font-size: 15px; }
    .carousel { margin-top: 32px; margin-bottom: 32px; }
    .carousel img { height: 40px; width: 120px; }

    /* --- DIFERENCIAIS --- */
    #diferenciais { padding-top: 60px; padding-bottom: 60px; }
    .diferenciais-intro h2 { font-size: 26px; line-height: 34px; }
    .diferenciais-intro p  { font-size: 15px !important; line-height: 24px !important; }
    .diferenciais-grid { grid-template-columns: 1fr; gap: 16px; }
    .coluna-pequena { flex-direction: column; margin-left: 0; gap: 16px; }
    .card-pequeno { flex: unset; }
    .card-grande h3 { font-size: 22px; }

    /* --- NOSSOS SERVIÇOS --- */
    .nossos-servicos { gap: 32px; padding-top: 60px; padding-bottom: 60px; }
    .nossos-servicos h2 { font-size: 26px; line-height: 34px; }
    .nossos-servicos .subtitulo { font-size: 15px; }

    .tab-btn { padding: 10px 16px; font-size: 0; }
    .tab-btn svg { width: 20px; height: 20px; }

    .content-card {
        flex-direction: column;
        min-height: auto;
        padding: 20px;
        margin-top: 16px;
        gap: 16px;
    }

    .card-image { width: 100%; height: 200px; border-radius: 12px; order: 2; }
    .card-text  { order: 1; gap: 14px; }
    .card-text h3 { font-size: 24px; }
    .card-text p  { font-size: 14px; line-height: 24px; max-width: 100%; }

    /* --- DASHBOARD --- */
    .secao-dashboard { padding-top: 60px; padding-bottom: 60px; }
    .dashboard h3 { font-size: 24px; line-height: 32px; }
    .dashboard p  { font-size: 15px; margin-top: 16px; margin-bottom: 16px; }
    .dashboard-desktop { display: none !important; }
    .dashboard-mobile  { display: block !important; }

    /* --- CONTATO --- */
    .secao-contato { padding-top: 60px; padding-bottom: 60px; }
    .header-contato h2 { font-size: 26px; line-height: 34px; }
    .header-contato p  { font-size: 16px; }

    .cards-segmentos { flex-direction: column; gap: 12px; align-items: stretch; }
    .card-seg { max-width: 100%; width: 100%; padding: 20px; }
    .card-seg h3 { font-size: 16px; }
    .card-seg p  { font-size: 14px; }

    .form-card { padding: 20px; gap: 20px; min-height: auto; }
    .form-card h3 { font-size: 22px; }
    .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .form-subtitulo { font-size: 14px; margin-top: -6px; }

    .grid-expectativas { grid-template-columns: 1fr; gap: 12px; }
    .card-exp { padding: 16px; gap: 12px; }
    .card-exp h4 { font-size: 16px; }
    .card-exp p  { font-size: 14px; }
    .expectativa-secao { margin-top: 40px; gap: 24px; }
    .expectativa-secao h3 { font-size: 24px; }

    /* --- FAQ --- */
    .secao-faq { padding-top: 60px; padding-bottom: 60px; }
    .container-faq { grid-template-columns: 1fr; gap: 28px; }
    .faq-info h2 { font-size: 26px; line-height: 34px; }
    .faq-info p  { font-size: 15px; margin-top: 12px; }
    .faq-item summary { font-size: 14px; padding: 16px 18px; }
    .faq-item p       { font-size: 13px; padding: 0 18px 16px; }

    /* --- FOOTER --- */
    .footer-principal { padding-top: 48px; padding-bottom: 0; }
    .container-footer { grid-template-columns: 1fr; gap: 24px; }
    .footer-logo img { width: 150px; }
    .footer-tagline  { font-size: 16px; margin-top: 16px; margin-bottom: 16px; }

    .footer-col {
        padding-left: 0;
        border-left: none;
        margin-left: 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 20px;
    }

    .footer-col h3 { font-size: 20px; line-height: 28px; margin-bottom: 12px; }
    .footer-col ul li { font-size: 15px; line-height: 28px; }
    .links-rapidos li a { font-size: 15px; }
    .footer-bottom { margin-top: 28px; }
    .footer-bottom p { font-size: 13px; }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
    .hero-text-content h1 { font-size: 24px; }
    .container-empresa h2 { font-size: 22px; }
    .diferenciais-intro h2 { font-size: 22px; }
    .dashboard h3 { font-size: 20px; }
    .header-contato h2 { font-size: 22px; }
}