/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #05070a;
    --white: #ffffff;
    --text: #f2f6fb;
    --text-soft: #cfd7e4;
    --text-soft-2: #d8e1ec;
    --green: #4dd66c;
    --green-2: #40c863;
    --green-shadow: rgba(77, 214, 108, 0.28);
    --blue-1: #155686;
    --blue-2: #1e5e97;
    --blue-3: #2b73ad;
    --glass: rgba(8, 13, 20, 0.34);
    --glass-2: rgba(9, 14, 22, 0.94);
    --border: rgba(255, 255, 255, 0.08);
    --border-soft: rgba(255, 255, 255, 0.05);
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    nav>ul {
        position: fixed;
        top: 88px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 100px);
        background: rgba(9, 14, 22, 0.98);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px 0 0 18px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 24px 20px;
        overflow-y: auto;
        transition: right 0.35s ease;
        
    }
    nav>ul.active {
        right: 0;
    }
    nav>ul>li {
        width: 100%;
    }
    nav>ul>li>a {
        width: 100%;
        padding: 12px 10px;
    }
    .submenu {
        position: static;
        display: none;
        min-width: 100%;
        margin-top: 8px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .menu-servicos.open .submenu {
        display: block;
    }
    .menu-servicos>a::after {
        float: right;
    }
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}


/* =========================
   ANIMAÇÕES
========================= */

@keyframes orbMove {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.75;
    }
    100% {
        transform: translateY(30px) scale(1.08);
        opacity: 1;
    }
}

@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shineMove {
    0% {
        left: -140%;
    }
    55% {
        left: 160%;
    }
    100% {
        left: 160%;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes submenuFade {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOpen {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moverSetas {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 120px 0;
    }
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(4, 7, 11, 0.82), rgba(4, 7, 11, 0.58), rgba(4, 7, 11, 0.9)), radial-gradient(circle at top right, rgba(30, 94, 151, 0.16), transparent 28%), radial-gradient(circle at left center, rgba(77, 214, 108, 0.12), transparent 26%);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -140px;
    top: 10%;
    background: radial-gradient(circle, rgba(30, 94, 151, 0.22), transparent 65%);
    filter: blur(50px);
    z-index: -1;
    animation: orbMove 9s ease-in-out infinite alternate;
}


/* =========================
   NAVBAR
========================= */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        align-items: center;
    }

    nav > ul {
        position: fixed;
        top: 88px;
        right: -100%;
        width: min(320px, 86vw);
        height: calc(100vh - 100px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 24px 20px;
        background: rgba(9, 14, 22, 0.97);
        backdrop-filter: blur(16px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px 0 0 18px;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
        overflow-y: auto;
        transition: right 0.35s ease;
        z-index: 9998;
    }

    nav > ul.active {
        right: 0;
    }

    nav > ul > li {
        width: 100%;
    }

    nav > ul > li > a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .submenu {
        position: static;
        display: none;
        width: 100%;
        margin-top: 8px;
        padding: 8px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: none;
    }

    .menu-servicos.open .submenu {
        display: block;
    }

    .menu-servicos:hover .submenu {
        display: none;
    }
}
nav {
    width: min(1200px, calc(100% - 40px));
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

nav::before {
    content: "";
    position: absolute;
    inset: 10px 0;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    z-index: -1;
    box-shadow: var(--shadow);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 14px;
    z-index: 40;
}

.protected-img {
    width: 85px;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.logo-link:hover .protected-img {
    transform: scale(1.03) rotate(10deg);
    filter: drop-shadow(0 0 12px rgba(77, 214, 108, 0.24));
}


/* menu desktop */

nav>ul {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 10px;
}

nav>ul>li {
    position: relative;
}

nav a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav>ul>li>a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

nav>ul>li>a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(77, 214, 108, 0.14), rgba(30, 94, 151, 0.14));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

nav>ul>li>a:hover::before {
    opacity: 1;
}

nav>ul>li>a:hover {
    color: var(--green);
    transform: translateY(-2px);
}


/* submenu */

.menu-servicos>a::after {
    content: "▾";
    margin-left: 8px;
    font-size: 0.78rem;
    transition: transform 0.3s ease;
}

.menu-servicos:hover>a::after {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 255px;
    padding: 10px;
    border-radius: 16px;
    background: var(--glass-2);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.32);
    display: none;
    animation: submenuFade 0.25s ease;
    z-index: 50;
}

.menu-servicos:hover .submenu {
    display: block;
}

.submenu li a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #ecf2f9;
    font-size: 0.93rem;
}

.submenu li a:hover {
    background: var(--border-soft);
    color: var(--green);
    transform: translateX(4px);
}


/* botão contato */

.bto-contato a {
    background: linear-gradient(135deg, var(--blue-2), var(--blue-3) 60%, var(--green));
    background-size: 200% 200%;
    color: var(--white);
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(30, 94, 151, 0.24);
    animation: gradientFlow 5s ease infinite;
}

.bto-contato a:hover {
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 32px rgba(30, 94, 151, 0.32);
}


/* botão hamburguer */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 60;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* =========================
   BANNER
========================= */

main {
    width: 100%;
}

.banner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    min-height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 0 90px;
    position: relative;
    z-index: 10;
}

.banner::before {
    content: "Sites profissionais com foco em conversão";
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #e6edf7;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
    animation: riseUp 0.8s ease both;
}

.banner h1 {
    max-width: 900px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #ffffff, #d7e4f5 45%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: riseUp 1s ease both;
}

.banner p {
    max-width: 760px;
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    color: var(--text-soft-2);
    margin-bottom: 34px;
    animation: riseUp 1.2s ease both;
}

.btn-orcamento {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--green), #83ff9b 45%, #ffffff 130%);
    color: #05070a;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 36px var(--green-shadow), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    animation: riseUp 1.35s ease both;
}

.btn-orcamento::before {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: skewX(-24deg);
    animation: shineMove 3.2s infinite;
}

.btn-orcamento:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 24px 44px rgba(77, 214, 108, 0.34), 0 0 30px rgba(77, 214, 108, 0.15);
    filter: brightness(1.03);
    color: #ffffffd7;
}

.btn-orcamento:focus-visible,
.btn-sobre:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 4px;
}


/* =========================
   SOBRE
========================= */

.sobre {
    padding: 110px 24px;
    position: relative;
}

.sobre-conteudo {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
}

.sobre-acao {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.sobre-acao .protected-img {
    width: 160px;
}

.modal-pix {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.pix-box {
    background: #0e1a25;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 320px;
}

.pix-box img {
    width: 220px;
    margin-bottom: 16px;
}

.pix-box textarea {
    width: 100%;
    height: 70px;
    margin-bottom: 12px;
}

.btn-sobre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #051008;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(77, 214, 108, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-sobre:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(77, 214, 108, 0.34);
    filter: brightness(1.03);
}

.sobre-topo {
    margin-bottom: 28px;
}

.sobre-topo h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.sobre-destaque {
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-soft);
}

.sobre-texto,
.sobre-diferencial {
    max-width: 820px;
}

.sobre-diferencial {
    margin-top: 34px;
}

.sobre-diferencial h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.texto-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.texto-toggle:hover {
    border-color: rgba(77, 214, 108, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.texto-toggle summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-right: 28px;
    font-weight: 700;
    line-height: 1.6;
    color: #f4f8fd;
}

.texto-toggle summary::-webkit-details-marker {
    display: none;
}

.texto-toggle summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--green);
}

.texto-toggle[open] summary::after {
    content: "−";
}

.texto-toggle p {
    margin-top: 10px;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.98rem;
}

.texto-toggle[open] p {
    animation: fadeOpen 0.28s ease;
}

.titulo-beneficios {
    grid-column: 1 / -1;
    margin-top: 18px;
    margin-bottom: 2px;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-align: center;
}

.sobre-beneficios {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(77, 214, 108, 0.12), rgba(30, 94, 151, 0.10));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.beneficio-card:hover::before {
    opacity: 1;
}

.beneficio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 214, 108, 0.28);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.beneficio-icone,
.beneficio-card h4,
.beneficio-card p {
    position: relative;
    z-index: 1;
}

.beneficio-icone {
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.beneficio-card h4 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.35;
}

.beneficio-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-soft);
}


/* =========================
   PROJETOS
========================= */

.projetos {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0e3c5c 0%, var(--blue-1) 60%, #0f4a73 100%);
}

.projetos::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='40' viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 20 L30 20 M30 20 L25 15 M30 20 L25 25' stroke='rgba(255,255,255,0.12)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 120px 40px;
    animation: moverSetas 6s linear infinite;
}

.projetos>* {
    position: relative;
    z-index: 1;
}

.projetos-topo {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.projetos-topo h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.projetos-topo p {
    max-width: 700px;
    color: var(--text-soft-2);
}

.carrossel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    scrollbar-width: none;
    padding-bottom: 6px;
}

.carrossel::-webkit-scrollbar {
    display: none;
}

.projeto-card {
    min-width: 320px;
    min-height: 320px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.projeto-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
}

.projeto-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.projeto-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.projeto-card p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.5;
    margin: 0;
    max-width: 260px;
}

.projeto-card a {
    margin-top: auto;
    align-self: center;
    background: var(--green);
    color: #051008;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.projeto-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(77, 214, 108, 0.35);
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(30, 94, 151, 0.24);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 18px 40px rgba(77, 214, 108, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 12px 28px rgba(30, 94, 151, 0.24);
    }
}

.btn-projetos{
    
    padding: 14px 22px;
    border-radius: 12px;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
    animation: pulseBtn 2s ease-in-out infinite;
    transition: 0.3s;
}
.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
/* =========================
   CONTADORES
========================= */

.numeros {
    padding: 100px 24px;
    text-align: center;
}

.numeros h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 50px;
}

.numeros-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.numero-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 20px;
    transition: 0.3s;
}

.numero-item:hover {
    transform: translateY(-6px);
    border-color: var(--green);
}

.contador {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 10px;
}

.numero-item p {
    color: var(--text-soft);
    font-size: 0.95rem;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .sobre-conteudo {
        grid-template-columns: 240px 1fr;
        gap: 36px;
    }
    .sobre-beneficios {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .projeto-card {
        min-width: 290px;
        min-height: 300px;
        padding: 22px;
    }
    .numeros-container {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    nav {
        width: min(100%, calc(100% - 24px));
        height: auto;
        padding: 12px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav::before {
        inset: 0;
    }
    .logo-link {
        padding-left: 0;
        justify-content: center;
        width: 100%;
    }
    nav>ul {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        padding-right: 0;
    }
    .banner {
        width: min(100%, calc(100% - 24px));
        min-height: auto;
        padding: 70px 0 90px;
        align-items: center;
        text-align: center;
    }
    .banner::before {
        margin-left: auto;
        margin-right: auto;
    }
    .banner h1,
    .banner p {
        max-width: 100%;
    }
    .projetos,
    .numeros,
    .sobre {
        padding-left: 20px;
        padding-right: 20px;
    }
    .projetos-topo,
    .carrossel,
    .numeros-container {
        max-width: 100%;
    }
    .projetos-topo h2,
    .numeros h2 {
        text-align: center;
    }
    .projetos-topo p {
        margin: 0 auto;
        text-align: center;
    }
    .contador {
        font-size: 2.6rem;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    .hero::after {
        width: 300px;
        height: 300px;
        right: -80px;
        top: 8%;
    }
    nav {
        width: min(100%, calc(100% - 16px));
        height: 76px;
        padding: 0 14px;
        gap: 12px;
        justify-content: space-between;
    }
    nav::before {
        inset: 8px 0;
    }
    .logo-link {
        width: auto;
        justify-content: flex-start;
        padding-left: 0;
    }
    .protected-img {
        width: 72px;
    }
    .menu-toggle {
        display: flex;
        margin-left: auto;
    }
    nav>ul {
        position: fixed;
        top: 88px;
        right: -100%;
        width: min(320px, 86vw);
        height: calc(100vh - 100px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 24px 20px;
        background: rgba(9, 14, 22, 0.97);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px 0 0 18px;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
        overflow-y: auto;
        transition: right 0.35s ease;
        z-index: 9998;
    }
    nav>ul.active {
        right: 0;
    }
    nav>ul>li {
        width: 100%;
    }
    nav>ul>li>a {
        width: 100%;
        min-height: 46px;
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    .menu-servicos>a::after {
        margin-left: auto;
    }
    .submenu {
        position: static;
        top: auto;
        left: auto;
        display: none;
        min-width: 100%;
        width: 100%;
        margin-top: 8px;
        padding: 8px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.06);
        animation: none;
    }
    .menu-servicos:hover .submenu {
        display: none;
    }
    .menu-servicos.open .submenu {
        display: block;
    }
    .banner {
        width: min(100%, calc(100% - 16px));
        padding: 55px 0 70px;
    }
    .banner::before {
        font-size: 0.8rem;
        padding: 7px 12px;
        margin-bottom: 18px;
    }
    .banner h1 {
        font-size: 2.2rem;
    }
    .banner p {
        font-size: 0.98rem;
    }
    .btn-orcamento {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 16px 18px;
    }
    .projetos,
    .numeros,
    .sobre {
        padding: 70px 16px;
    }
    .projetos::before {
        background-size: 90px 32px;
        animation-duration: 5s;
        opacity: 0.8;
    }
    .projetos-topo {
        margin-bottom: 28px;
    }
    .projetos-topo h2,
    .numeros h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }
    .projetos-topo p,
    .numero-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .carrossel {
        gap: 16px;
        padding-bottom: 2px;
    }
    .projeto-card {
        min-width: 85%;
        min-height: 290px;
        padding: 20px;
        border-radius: 16px;
    }
    .projeto-card img {
        width: 62px;
        height: 62px;
    }
    .projeto-card h3 {
        font-size: 1rem;
    }
    .projeto-card p {
        font-size: 0.92rem;
        max-width: 100%;
    }
    .projeto-card a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    .numeros h2 {
        margin-bottom: 32px;
    }
    .numeros-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .numero-item {
        padding: 28px 18px;
    }
    .contador {
        font-size: 2.3rem;
    }
    .sobre {
        padding: 90px 20px;
    }
    .sobre-conteudo {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .sobre-acao {
        position: static;
        align-items: flex-start;
        gap: 18px;
    }
    .titulo-beneficios,
    .sobre-beneficios {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .sobre-topo h2 {
        font-size: 1.9rem;
    }
    .sobre-destaque {
        font-size: 1rem;
    }
    .texto-toggle {
        padding: 14px 16px;
    }
    .texto-toggle summary {
        font-size: 0.96rem;
    }
    .texto-toggle p {
        font-size: 0.94rem;
    }
    .titulo-beneficios {
        font-size: 1.35rem;
    }
    .sobre-beneficios {
        grid-template-columns: 1fr;
    }
    .beneficio-card {
        padding: 20px;
    }
}

body.menu-aberto {
    overflow: hidden;
}


/* =========================
   MOBILE PEQUENO
========================= */

@media (max-width: 480px) {
    nav {
        width: min(100%, calc(100% - 16px));
    }
    .banner {
        width: min(100%, calc(100% - 16px));
    }
    .protected-img {
        width: 64px;
    }
    .banner h1 {
        font-size: 1.95rem;
    }
    .banner p {
        font-size: 0.95rem;
    }
    nav>ul>li>a,
    .bto-contato a {
        font-size: 0.88rem;
    }
    .projetos,
    .numeros,
    .sobre {
        padding: 60px 12px;
    }
    .projetos::before {
        background-size: 72px 28px;
        animation-duration: 4.5s;
    }
    .projetos-topo h2,
    .numeros h2 {
        font-size: 1.7rem;
    }
    .projetos-topo p {
        font-size: 0.92rem;
    }
    .carrossel {
        gap: 14px;
    }
    .projeto-card {
        min-width: 92%;
        min-height: 280px;
        padding: 18px;
    }
    .projeto-card img {
        width: 56px;
        height: 56px;
    }
    .projeto-card h3 {
        font-size: 0.98rem;
    }
    .projeto-card p {
        font-size: 0.9rem;
    }
    .projeto-card a {
        font-size: 0.92rem;
        padding: 11px 14px;
        border-radius: 10px;
    }
    .numero-item {
        border-radius: 16px;
        padding: 24px 16px;
    }
    .contador {
        font-size: 2rem;
    }
    .numero-item p {
        font-size: 0.9rem;
    }
}


/*depoimentos*/


/* =========================
   DEPOIMENTOS
========================= */

.depoimentos {
    padding: 100px 24px;
    position: relative;
}

.depoimentos-topo {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.depoimentos-topo h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.depoimentos-topo p {
    max-width: 720px;
    margin: 0 auto;
    color: #cfd7e4;
    line-height: 1.7;
}

.depoimentos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(77, 214, 108, 0.10), rgba(30, 94, 151, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.depoimento-card:hover::before {
    opacity: 1;
}

.depoimento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 214, 108, 0.28);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.depoimento-estrelas,
.depoimento-texto,
.depoimento-autor {
    position: relative;
    z-index: 1;
}

.depoimento-estrelas {
    color: #4dd66c;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.depoimento-texto {
    color: #e8eef7;
    line-height: 1.75;
    font-size: 0.98rem;
    margin-bottom: 22px;
}

.depoimento-autor {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.depoimento-autor strong {
    font-size: 1rem;
    color: #ffffff;
}

.depoimento-autor span {
    font-size: 0.9rem;
    color: #cfd7e4;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1024px) {
    .depoimentos {
        padding: 80px 20px;
    }
    .depoimentos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .depoimentos {
        padding: 70px 16px;
    }
    .depoimentos-topo {
        margin-bottom: 28px;
    }
    .depoimentos-topo h2 {
        font-size: 1.9rem;
    }
    .depoimentos-topo p {
        font-size: 0.95rem;
    }
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .depoimento-card {
        padding: 22px;
    }
    .depoimento-texto {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .depoimentos {
        padding: 60px 12px;
    }
    .depoimentos-topo h2 {
        font-size: 1.7rem;
    }
    .depoimento-card {
        border-radius: 16px;
        padding: 20px;
    }
}


/*serviços*/


/* =========================
   SERVIÇOS
========================= */

.servicos {
    padding: 100px 24px;
    background: #081824;
}

.servicos-topo {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

.servicos-topo h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.servicos-topo p {
    max-width: 700px;
    margin: auto;
    color: #cfd7e4;
}


/* GRID */

.servicos-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* CARD */

.servico-card {
    background: linear-gradient( 160deg, #102838, #0d1e2b);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: .35s;
}

.servico-card:hover {
    transform: translateY(-6px);
    border-color: #4dd66c;
}


/* DESTAQUE */

.servico-card.destaque {
    border: 1px solid #4dd66c;
    box-shadow: 0 20px 40px rgba(77, 214, 108, 0.18);
}

.tag-destaque {
    font-size: .8rem;
    font-weight: 700;
    color: #051008;
    background: #4dd66c;
    padding: 6px 10px;
    border-radius: 6px;
    width: fit-content;
}


/* TITULO */

.servico-card h3 {
    font-size: 1.2rem;
}


/* DESCRIÇÃO */

.servico-desc {
    color: #cfd7e4;
    font-size: .95rem;
}


/* BENEFÍCIOS */

.servico-beneficios {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: .9rem;
}

.servico-beneficios li {
    color: #dfe7f3;
}


/* PREÇO */

.servico-preco {
    margin-top: auto;
}

.servico-preco span {
    font-size: .8rem;
    color: #aab6c9;
}

.servico-preco strong {
    display: block;
    font-size: 1.6rem;
    color: #4dd66c;
}


/* BOTÃO */

.btn-servico {
    margin-top: 12px;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    background: #4dd66c;
    color: #051008;
    font-weight: 700;
    transition: .3s;
    animation: pulsar 2s infinite;
}


/* pausa o pulso quando o usuário interage */

.btn-servico:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(77, 214, 108, .35);
    animation: none;
}

@keyframes pulsar {
    0% {
        box-shadow: 0 0 0 0 rgba(77, 214, 108, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(77, 214, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(77, 214, 108, 0);
    }
}

.parcelamento {
    display: block;
    font-size: .8rem;
    color: #9fb0c8;
    margin-top: 4px;
}


/* RESPONSIVO */

@media(max-width:1024px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .servicos {
        padding: 80px 16px;
    }
    .servicos-grid {
        grid-template-columns: 1fr;
    }
}


/*site pre moldado*/


/* =========================
   SITES PRÉ-MOLDADOS
========================= */

.sites-modelos {
    padding: 100px 24px;
    background: #081824;
}

.sites-topo {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}

.sites-topo h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 12px;
}

.sites-topo p {
    color: #cfd7e4;
    line-height: 1.7;
}


/* GRID */

.sites-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}


/* CARD */

.site-modelo-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px;
    transition: .35s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-modelo-card:hover {
    transform: translateY(-6px);
    border-color: #4dd66c;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}


/* VIDEO */

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.video-modelo {
    width: 100%;
    display: block;
    border-radius: 16px;
}


/* CONTROLES DE VIDEO */

.video-controles {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
}

.video-controles button {
    border: none;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: .2s;
}

.video-controles button:hover {
    background: #4dd66c;
    color: #051008;
}


/* TITULO */

.site-modelo-card h3 {
    font-size: 1.2rem;
    margin-top: 6px;
}


/* TEXTO */

.site-modelo-card p {
    color: #cfd7e4;
    line-height: 1.6;
    font-size: .95rem;
}


/* BOTÃO */

.btn-servico {
    margin-top: 18px;
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 10px;
    background: #4dd66c;
    color: #051008;
    font-weight: 700;
    transition: .3s;
}

.btn-servico:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(77, 214, 108, .35);
}


/* TEXTO FINAL */

.sites-modelos>p {
    max-width: 900px;
    margin: 30px auto 0 auto;
    color: #cfd7e4;
    line-height: 1.7;
    text-align: center;
}


/* =========================
   RESPONSIVO
========================= */

@media(max-width:1024px) {
    .sites-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .sites-modelos {
        padding: 80px 16px;
    }
    .sites-topo {
        margin-bottom: 40px;
    }
    .video-controles {
        bottom: 10px;
        left: 10px;
    }
}

@media(max-width:480px) {
    .sites-topo h2 {
        font-size: 1.8rem;
    }
    .site-modelo-card {
        padding: 18px;
    }
}


/*contato*/


/* =========================
   CONTATO
========================= */

.contato {
    padding: 100px 24px;
    background-image: url(/from.png);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}


/* =========================
   BLOCO DE TEXTO
========================= */

.contato-info,
.contato-formulario {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.contato-info h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.contato-info>p {
    color: #cfd7e4;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 560px;
}


/* =========================
   DESTAQUES
========================= */

.contato-destaques {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.contato-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 18px;
    transition: .3s ease;
}

.contato-item:hover {
    transform: translateY(-3px);
    border-color: rgba(77, 214, 108, .25);
}

.contato-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 1rem;
}

.contato-item span {
    color: #cfd7e4;
    font-size: .95rem;
    line-height: 1.5;
}


/* =========================
   BOTÃO WHATSAPP
========================= */

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4dd66c, #40c863);
    color: #fff;
    font-weight: 800;
    transition: .3s ease;
    box-shadow: 0 12px 28px rgba(77, 214, 108, .24);
    animation: pulsarWhatsapp 2s infinite;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 36px rgba(77, 214, 108, .34);
    filter: brightness(1.05);
    animation: none;
}


/* animação */

@keyframes pulsarWhatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(77, 214, 108, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(77, 214, 108, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(77, 214, 108, 0);
    }
}


/* =========================
   FORMULÁRIO
========================= */

.contato-formulario form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grupo {
    width: 100%;
}

.form-grupo option {
    background: rgba(255, 255, 255, 0.04);
}

.form-grupo input,
.form-grupo select,
.form-grupo textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: .96rem;
    outline: none;
    transition: .25s ease;
    font-family: inherit;
}

.form-grupo input::placeholder,
.form-grupo textarea::placeholder {
    color: #9fb0c8;
}

.form-grupo select {
    color: #cfd7e4;
}

.form-grupo option {
    color: #111;
}

.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
    border-color: #4dd66c;
    box-shadow: 0 0 0 4px rgba(77, 214, 108, .10);
}

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


/* =========================
   BOTÃO FORM
========================= */

.btn-contato {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4dd66c, #40c863);
    color: #fff;
    font-weight: 800;
    transition: .3s ease;
    box-shadow: 0 12px 28px rgba(77, 214, 108, .24);
    animation: pulsarContato 2s infinite;
    border: none;
}

.btn-contato:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 36px rgba(77, 214, 108, .34);
    filter: brightness(1.05);
    animation: none;
}

@keyframes pulsarContato {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(77, 214, 108, 0.6);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 14px rgba(77, 214, 108, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(77, 214, 108, 0);
    }
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width:1024px) {
    .contato {
        padding: 80px 20px;
    }
    .contato-grid {
        gap: 24px;
    }
    .contato-info,
    .contato-formulario {
        padding: 28px;
    }
}

@media (max-width:768px) {
    .contato {
        padding: 70px 16px;
    }
    .contato-grid {
        grid-template-columns: 1fr;
    }
    .contato-info h2 {
        font-size: 1.9rem;
    }
    .contato-info,
    .contato-formulario {
        padding: 24px;
    }
    .btn-whatsapp {
        width: 100%;
    }
}

@media (max-width:480px) {
    .contato {
        padding: 60px 12px;
    }
    .contato-info h2 {
        font-size: 1.7rem;
    }
    .contato-info,
    .contato-formulario {
        padding: 20px;
        border-radius: 16px;
    }
    .contato-item {
        padding: 14px 15px;
    }
    .form-grupo input,
    .form-grupo select,
    .form-grupo textarea {
        padding: 13px 14px;
        font-size: .94rem;
    }
    .btn-contato,
    .btn-whatsapp {
        font-size: .95rem;
    }
}


/*rodapé*/


/* =========================
   FOOTER
========================= */

.footer {
    padding: 90px 24px 0;
    background: linear-gradient(180deg, #05070a 0%, #08121a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* container */

.footer .container {
    max-width: 1200px;
    margin: auto;
}


/* grid */

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}


/* títulos */

.footer h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ffffff;
}


/* textos */

.footer p {
    color: #cfd7e4;
    font-size: .95rem;
    line-height: 1.7;
    max-width: 360px;
}


/* blocos */

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* links */

.footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cfd7e4;
    font-size: .95rem;
    transition: .25s;
}

.footer a:hover {
    color: #4dd66c;
    transform: translateX(3px);
}


/* icones */

.footer svg {
    flex-shrink: 0;
    color: #4dd66c;
}


/* contato span */

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cfd7e4;
    font-size: .95rem;
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: .9rem;
    color: #9fb0c2;
}

.footer-bottom span {
    font-size: .9rem;
    color: #7f93a7;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width:1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width:768px) {
    .footer {
        padding: 70px 20px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer p {
        max-width: 100%;
    }
}

@media (max-width:480px) {
    .footer {
        padding: 60px 16px 0;
    }
    .footer h3 {
        font-size: 1.4rem;
    }
    .footer h4 {
        font-size: .95rem;
    }
    .footer a,
    .footer-contact span,
    .footer p {
        font-size: .9rem;
    }
}


/*whatsapp flutuante*/


/* =========================
   WHATSAPP FLUTUANTE
========================= */

.whatsapp-box {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: .5s;
}


/* aparece */

.whatsapp-box.show {
    opacity: 1;
    transform: translateY(0);
}


/* mensagem */

.whatsapp-msg {
    background: #ffffff;
    color: #111;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    animation: pulseMsg 2s infinite;
}


/* botão */

.whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
    transition: .3s;
}


/* hover */

.whatsapp-btn:hover {
    transform: scale(1.08);
}

.whatsapp-btn svg {
    color: #fff;
    width: 44px;
    height: 34px;
}


/* animação leve */

@keyframes pulseMsg {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.05)
    }
    100% {
        transform: scale(1)
    }
}


/* mobile */

@media(max-width:768px) {
    .whatsapp-msg {
        display: none;
    }

}


/*projetos.html*/
   .tabs{
            max-width: 1200px;
            margin: 0 auto 30px;
            display:flex;
            flex-wrap:wrap;
            gap:12px;
        }

        .tab{
            border:1px solid rgba(255,255,255,0.12);
            background:rgba(255,255,255,0.05);
            color:var(--white);
            padding:12px 18px;
            border-radius:999px;
            cursor:pointer;
            font-weight:700;
            transition:.3s ease;
        }

        .tab:hover,
        .tab.active{
            background:var(--green);
            color:#fff;
            border-color:var(--green);
            transform:translateY(-2px);
        }

        #templates{
            max-width:1200px;
            margin:0 auto;
        }

        .tab-content{
            display:none;
        }

        .tab-content.active{
            display:block;
            animation:fadeOpen .3s ease;
        }

        .grid-projetos{
            display:grid;
            grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
            gap:24px;
        }

        .card-projeto{
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.1);
            border-radius:20px;
            padding:18px;
            backdrop-filter:blur(10px);
            transition:.3s ease;
            display:flex;
            flex-direction:column;
            min-height:100%;
        }

        .card-projeto:hover{
            transform:translateY(-6px);
            border-color:var(--green);
            box-shadow:0 20px 40px rgba(0,0,0,0.22);
        }

        .video-container{
            position:relative;
            border-radius:16px;
            overflow:hidden;
            background:#07111a;
            aspect-ratio:16 / 9;
        }

        .video-modelo{
            width:100%;
            height:100%;
            object-fit:cover;
            background:#07111a;
        }

        .video-overlay{
            position:absolute;
            inset:0;
            display:flex;
            align-items:center;
            justify-content:center;
            background:linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,.12));
            pointer-events:none;
        }

        .btn-play{
            pointer-events:auto;
            width:62px;
            height:62px;
            border:none;
            border-radius:50%;
            background:rgba(5, 7, 10, .76);
            color:#fff;
            font-size:1.1rem;
            cursor:pointer;
            transition:.25s ease;
            box-shadow:0 10px 24px rgba(0,0,0,.24);
        }

        .btn-play:hover{
            transform:scale(1.06);
            background:rgba(5, 7, 10, .92);
        }

        .video-toolbar{
            position:absolute;
            left:12px;
            right:12px;
            bottom:12px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:10px;
            padding:8px 10px;
            border-radius:12px;
            background:rgba(5,7,10,.72);
            backdrop-filter:blur(10px);
            z-index:3;
        }

        .tool-btn{
            border:none;
            background:rgba(255,255,255,.08);
            color:#fff;
            min-width:42px;
            height:42px;
            border-radius:10px;
            cursor:pointer;
            font-size:1rem;
            transition:.25s ease;
        }

        .tool-btn:hover{
            background:rgba(255,255,255,.16);
            transform:translateY(-1px);
        }

        .speed-wrap{
            display:flex;
            align-items:center;
            gap:8px;
            color:#fff;
            font-size:.88rem;
            font-weight:700;
            margin-left:auto;
            margin-right:auto;
        }

        .speed-select{
            border:none;
            outline:none;
            border-radius:8px;
            background:rgba(255,255,255,.08);
            color:#fff;
            padding:8px 10px;
            font-weight:700;
            cursor:pointer;
        }

        .speed-select option{
            color:#fff;
        }

        .card-projeto h3{
            font-size:1.15rem;
            font-weight:800;
            margin:16px 0 8px;
        }

        .card-projeto p{
            color:var(--text-soft);
            font-size:.96rem;
            line-height:1.65;
            margin-bottom:16px;
        }

        .btn-whats{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            text-align:center;
            margin-top:auto;
            padding:12px 16px;
            border-radius:12px;
            font-weight:800;
            background:var(--green);
            color:#fff;
            transition:.3s ease;
        }

        .btn-whats:hover{
            transform:translateY(-2px);
            box-shadow:0 10px 24px rgba(77,214,108,.28);
        }

        .card-aviso{
            min-height:280px;
            justify-content:center;
            text-align:center;
        }

        .card-aviso strong{
            display:block;
            font-size:1.15rem;
            margin-bottom:10px;
        }

        .cta-projetos{
            padding:100px 24px;
            text-align:center;
        }

        .cta-projetos h2{
            font-size:clamp(2rem, 4vw, 2.8rem);
            margin-bottom:12px;
        }

        .cta-projetos p{
            max-width:720px;
            margin:0 auto 28px;
            color:var(--text-soft);
        }

        @media (max-width: 768px){
            .tabs{
                gap:10px;
            }

            .tab{
                width:100%;
                border-radius:14px;
                text-align:center;
            }

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

            .card-projeto{
                padding:16px;
            }

            .btn-play{
                width:56px;
                height:56px;
            }

            .cta-projetos{
                padding:72px 16px;
            }
        }

.processo {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.processo h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


.processo-card:hover {
    border-color: var(--green);
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* animação base */
.processo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s;
    animation: floatCard 4s ease-in-out infinite;
}

.icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: var(--green);
}

.icon svg {
    width: 100%;
    height: 100%;
}

.processo-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.processo-card p {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.processo-info {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
}


/* VIDEO */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* OVERLAY ESCURO */
.processo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: -1;
}

/* CONTEÚDO */
.processo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1e5e97, #4dd66c);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.contato {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: #fff;
}

/* vídeo fundo */
.contato video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;
}

/* overlay escuro pra legibilidade */
.contato::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* ajusta aqui */
    z-index: 1;
}

/* conteúdo por cima */
.contato .container {
    position: relative;
    z-index: 2;
}

.carrossel{
    cursor: grab;
    scroll-behavior: smooth;
}

.carrossel:active{
    cursor: grabbing;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    font-family: Arial, Helvetica, sans-serif;
}

.whatsapp-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    position: relative;
    animation: whatsappPulse 1.8s infinite;
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
}

.whatsapp-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.whatsapp-chat {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: 340px;
    background: #ffffff;
    color: #1f2933;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.96);
    transition: all 0.35s ease;
}

.whatsapp-chat.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.whatsapp-header {
    background: linear-gradient(135deg, #075e54, #128c7e);
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-header strong {
    display: block;
    font-size: 1rem;
}

.whatsapp-header span {
    font-size: 0.78rem;
    opacity: 0.9;
}

.whatsapp-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.7rem;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-body {
    padding: 18px;
    background: #efeae2;
    min-height: 120px;
}

.msg-atendente {
    background: #fff;
    padding: 12px 14px;
    border-radius: 0 12px 12px 12px;
    font-size: 0.92rem;
    line-height: 1.4;
    max-width: 85%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.whatsapp-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
}

.whatsapp-form input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 12px 14px;
    outline: none;
    font-size: 0.9rem;
}

.whatsapp-form input:focus {
    border-color: #25d366;
}

.whatsapp-form button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #25d366;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 480px) {
    .whatsapp-floating {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-chat {
        width: calc(70vw - 18px);
        right: 0;
        bottom: 78px;
    }
    .whatsapp-body{
        padding: 14px;
        height: 200PX;
    }
    .whatsapp-button {
        width: 58px;
        height: 58px;
    }
    .footer-links{
        display: none;
    }
    .footer-contact{
        display: none;
    }
}

.beneficio-icone{
    width:72px;
    height:72px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(
        135deg,
        rgba(77,214,108,.12),
        rgba(30,94,151,.18)
    );
    color:var(--green);
    margin-bottom:18px;
    transition:.35s ease;
}

.beneficio-icone svg{
    width:34px;
    height:34px;
}

.beneficio-card:hover .beneficio-icone{
    transform:translateY(-4px) scale(1.06);
    background:linear-gradient(
        135deg,
        rgba(77,214,108,.22),
        rgba(30,94,151,.28)
    );
    box-shadow:0 10px 30px rgba(77,214,108,.18);
}