*{margin:0;padding:0;box-sizing:border-box}
:root{--purple:#855AC1;--deep:#37246E;--dark:#090711;--ink:#17131d;--soft:#f7f5fa;--white:#fff;--yellow:#ffc629}
html{scroll-behavior:smooth}
body{font-family:Poppins,sans-serif;color:var(--ink);background:#fff;line-height:1.6}
a{text-decoration:none;color:inherit}
.header{height:90px;background:#08070d;color:#fff;display:flex;align-items:center;justify-content:space-between;padding:0 6%;position:sticky;top:0;z-index:20;border-bottom:1px solid #292331}

.logo {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    overflow: hidden;

    border: none;
    border-radius: 50%;
}

.logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    pointer-events: none;
}
.nav{display:flex;align-items:center;gap:25px;font-size:12px;font-weight:600}.nav a{opacity:.9}.nav a:hover{color:#c59aff}.nav-cta{background:var(--purple);padding:11px 18px;border-radius:7px}.menu-toggle{display:none;background:none;border:0;color:#fff;font-size:25px}
.hero{min-height:690px;background:#08070d;color:#fff;position:relative;overflow:hidden;padding:90px 6% 140px;display:flex;align-items:center}.hero-image{position:absolute;inset:0;background-image:linear-gradient(90deg,rgba(8,7,13,.97) 0%,rgba(8,7,13,.84) 36%,rgba(8,7,13,.15) 70%,rgba(8,7,13,.25)),url("assets/hero-3d.png");background-size:cover;background-position:center;z-index:0}.hero-content{position:relative;z-index:2;width:min(610px)}.eyebrow{display:inline-block;font-size:10px;letter-spacing:1px;font-weight:700;border:1px solid #5d526b;border-radius:30px;padding:5px 10px;margin-bottom:15px}.eyebrow.purple{color:var(--purple);border:0;padding:0}.hero h1{font-size:52px;line-height:1.13;letter-spacing:-1.5px;margin-bottom:18px}.hero h1 em{color:#a96dff;font-style:normal}.hero p{font-size:15px;color:#ddd;max-width:560px;margin-bottom:28px}.hero-buttons{display:flex;gap:12px;flex-wrap:wrap}.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:7px;padding:13px 20px;font-weight:700;font-size:12px;transition:.2s}.primary{background:var(--purple);color:#fff}.outline{border:1px solid #aaa;color:#fff}.btn:hover{transform:translateY(-2px);filter:brightness(1.08)}.hero-benefits{position:absolute;z-index:3;bottom:35px;left:6%;right:6%;display:grid;grid-template-columns:repeat(3,1fr);gap:30px}.hero-benefits div{display:flex;gap:12px;font-size:11px;color:#ddd}.hero-benefits b{width:32px;height:32px;flex:none;border-radius:50%;background:var(--purple);display:grid;place-items:center}.hero-benefits strong{display:block;color:#fff;margin-bottom:2px}
.section{padding:80px 7%}.section-heading{text-align:center;margin-bottom:38px}.section-heading h2{font-size:32px;line-height:1.2;margin-top:5px}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category {
    border: 1px solid #e9e4ee;
    border-radius: 12px;
    padding: 18px;
    text-align: left;
    transition: .2s;
}

.category:hover{transform:translateY(-4px);box-shadow:0 12px 30px #34205d12}

.cat-icon {
    width: 100%;
    height: 240px;
aspect-ratio: 1 / 1;
    border-radius: 9px;
    overflow: hidden;
    background: #f0e9f8;
    margin-bottom: 14px;
}

.cat-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


.category h3{
    font-size:20px;
    line-height:1.3;
     margin: 0 4px;
}
.category p{
    font-size:15px;
    color:#777;
    margin: 6px 4px 4px;
    line-height: 1.4;
}
.section-heading {
    text-align: center;
    margin-bottom: 38px;
}

.section-heading h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 5px;
}
.products-section{
    display:flex;
    flex-direction:column;
    gap: 30px;
}
.products-grid{
    display:flex;
    flex-direction: row;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap: 20px;
}
.product{
    width: 100%;
    max-width: 280px;
    height: 430px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid  #d8d0e2;
    box-shadow: 2px 2px 2px 4px rgba(55, 36, 110, 0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}
.product:hover {
    transform: translateY(-4px);
    box-shadow: 2px  2px 2px 4px rgba(55, 36, 110, 0.18);
}

.product img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    object-position: center;
}
.product h3 {
    font-size: 17px;
    margin: 16px 16px 5px;
}

.product p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0 16px 18px;
}

.product-button {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 18px;
    padding: 11px 14px;
    background: var(--purple);
    color: #fff;
    border-radius: 7px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}

.product-button:hover {
    background: #7042ad;
    transform: translateY(-1px);
}

.how-section {
    background: #fff;
}

.how-section .section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.how-section .section-heading h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 6px;
}


/* ETAPAS */

.steps {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 30px;

    position: relative;
}


/* CADA ETAPA */

.step {
    position: relative;
    min-width: 0;
}


/* ÁREA DO ÍCONE */

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 2px solid #eee8f5;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}


/* PNG */

.step-icon img {
    width: 62px;
    height: 62px;

    object-fit: contain;

    display: block;
}


/* NÚMERO */

.step-number {
    display: block;

    color: #855ac1;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 8px;
}


/* TÍTULO */

.step h3 {
    font-size: 14px;
    line-height: 1.3;

    margin: 0 0 8px;

    color: #17131d;
}


/* DESCRIÇÃO */

.step p {
    font-size: 11px;
    line-height: 1.5;

    color: #777;

    margin: 0;
}


/* SETAS ENTRE OS ÍCONES */

.step:not(:last-child)::after {
    content: "→";

    position: absolute;

    top: 30px;
    right: -30px;

    color: #855ac1;

    font-size: 20px;

    z-index: 3;
}



/* LINHA PONTILHADA */

.step:not(:last-child)::before {
    content: "";

    position: absolute;

    top: 45px;

    left: calc(50% + 8px);

    width: calc(100% - 90px);

    border-top: 2px dotted #b98ee8;

    z-index: 1;
}

.custom-banner {
    margin: 0 6% 80px;
    padding: 32px 5%;
    min-height: 220px;
    border-radius: 18px;
    background:
        linear-gradient(
            90deg,
            rgba(10, 7, 16, 0.98) 0%,
            rgba(10, 7, 16, 0.90) 38%,
            rgba(10, 7, 16, 0.45) 65%,
            rgba(10, 7, 16, 0.05) 100%
        ),
        url("assets/personalizado.png");

    background-size: cover;
    background-position: center;

    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 0;

    overflow: hidden;
}


/* TEXTO */

.custom-banner > div:first-child {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.custom-banner .eyebrow {
    margin-bottom: 5px;

    font-size: 9px;
}

.custom-banner h2 {
    font-size: 27px;
    line-height: 1.15;

    margin: 0 0 5px;
}

.custom-banner p {
    font-size: 11px;
    line-height: 1.5;

    margin: 0;

    color: #ddd;
}


/* ÍCONES */

.custom-options {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-start;

    gap: 28px;

    margin-top: 15px;
}

.custom-options > span {
    min-width: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #fff;

    font-size: 9px;
    font-weight: 600;

    line-height: 1.2;

    text-align: center;

    white-space: nowrap;
}

.custom-options > span img {
    width: 40px;
    height: 40px;

    object-fit: contain;

    display: block;

    margin-bottom: 5px;
}


/* QUANTIDADE */

.custom-options .option-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #a96dff;

    font-size: 27px;

    margin-bottom: 5px;
}
.gallery{display:grid;grid-template-columns:repeat(6,1fr);gap:8px}.gallery div{height:150px;border-radius:8px;background:linear-gradient(135deg,#1b1227,#8a5bc3);display:grid;place-items:center;color:#fff;font-size:11px;font-weight:700;text-align:center}.gallery div:nth-child(2){background:linear-gradient(135deg,#28202d,#8d704e)}.gallery div:nth-child(3){background:linear-gradient(135deg,#18221c,#72624c)}.gallery div:nth-child(4){background:linear-gradient(135deg,#401326,#bb5b70)}.gallery div:nth-child(5){background:linear-gradient(135deg,#111,#7350a1)}.gallery div:nth-child(6){background:linear-gradient(135deg,#26333d,#788c9c)}

.business {
    background:
        linear-gradient(
            90deg,
            rgba(55, 36, 110, 0.95) 0%,
            rgba(55, 36, 110, 0.75) 45%,
            rgba(55, 36, 110, 0.25) 100%
        ),
        url("assets/fundoempresas.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.business h2 {
    font-size: 34px;
    max-width: 650px;
    line-height: 1.2;
}

.business p {
    max-width: 650px;
    margin-top: 12px;
    color: #eee;
}

.light {
    background: #fff;
    color: var(--deep);
    white-space: nowrap;
}

.about{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}.about h2{font-size:36px}.about p{color:#666}
.faq{background:var(--soft)}.faq-list{max-width:850px;margin:auto}.faq details{background:#fff;border:1px solid #e5dfeb;border-radius:9px;margin-bottom:10px;padding:17px 20px}.faq summary{cursor:pointer;font-size:13px;font-weight:700}.faq details p{font-size:12px;color:#777;margin-top:10px}
.quote{margin:80px 7%;padding:42px 5%;border-radius:18px;background:linear-gradient(100deg,#7f4fc1,#4b2a89);color:#fff;display:flex;align-items:center;justify-content:space-between;gap:30px}.quote h2{font-size:28px}.quote p{font-size:12px;color:#eee}
.footer{background:#08070d;color:#bbb;padding:55px 7%;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px}
.footer p,.footer a{font-size:14px;color:#aaa}
.transformar{
    width: 300px;
    margin-top: 12px;
}
.footer h4{color:#fff;font-size:14px;margin-bottom:12px}.footer div:not(:first-child) a{display:block;margin:7px 0}.footer a:hover{color:#fff}


.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}
/* MODAL DA IMAGEM */

.imagem-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;

    padding: 30px;
    cursor: zoom-out;
}

.imagem-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;

    border-radius: 10px;

    animation: aumentarImagem 0.25s ease;
}

.fechar {
    position: absolute;
    top: 20px;
    right: 30px;

    color: #fff;
    font-size: 40px;
    font-weight: 300;

    cursor: pointer;
}

.empresas-img img {
    cursor: zoom-in;
}

@keyframes aumentarImagem {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
 a.whatsapp-flutuante {
    position: fixed !important;
    width: 65px !important;
    height: 65px !important;
    bottom: 200px !important;
    right: 25px !important;

    z-index: 99999 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 5px !important;
    margin: 0 !important;

    background: #ffffff !important;
    border-radius: 50% !important;
    box-sizing: border-box !important;

    overflow: hidden !important;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25) !important;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease !important;
}

a.whatsapp-flutuante img {
    width: 55px !important;
    height: 55px !important;

    min-width: 55px !important;
    min-height: 55px !important;

    max-width: 55px !important;
    max-height: 55px !important;

    object-fit: contain !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 50% !important;
}

a.whatsapp-flutuante:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35) !important;
}

@media (max-width: 900px) {
    /* HEADER */
    .header {
        height: 72px;
        padding: 0 5%;
    }
    .logo {
        width: 60px;
        height: 60px;
    }
    .logo img {
        width: 55px;
        height: 55px;
    }
    .menu-toggle {
        display: block;
    }
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 20px;
        background: #08070d;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        border-bottom: 1px solid #292331;
        z-index: 100;
    }

    .nav.active {
        display: flex;
    }


    /* HERO */

    .hero {
        min-height: 700px;
        padding: 80px 6% 160px;
    }

    .hero-content {
        width: 100%;
        max-width: 600px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-image {
        background-position: 62% center;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
        bottom: 25px;
    }


    /* CATEGORIAS */

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .cat-icon {
        height: 200px;
    }

    .category {
        padding: 14px;
    }

    .category h3 {
        font-size: 17px;
    }

    .category p {
        font-size: 13px;
    }


    /* PRODUTOS */

    .products-grid {
        justify-content: center;
        gap: 20px;
    }

    .product {
        max-width: 280px;
    }


    /* COMO FUNCIONA */

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 25px;
    }

    .step:not(:last-child)::before,
    .step:not(:last-child)::after {
        display: none;
    }


    /* PERSONALIZAÇÃO */

    .custom-banner {
        margin: 0 5% 60px;
        padding: 35px 6%;
    }

    .custom-banner h2 {
        font-size: 27px;
    }

    .custom-options {
        flex-wrap: wrap;
        gap: 20px;
    }


    /* GALERIA */

    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery div {
        height: 140px;
    }


    /* EMPRESAS */

    .business {
        flex-direction: column;
        align-items: flex-start;
    }

    .business h2 {
        font-size: 30px;
    }


    /* SOBRE */

    .about {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about h2 {
        font-size: 32px;
    }


    /* ORÇAMENTO */

    .quote {
        margin: 60px 5%;
        flex-direction: column;
        align-items: flex-start;
    }


    /* FOOTER */

    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}




@media (max-width: 600px) {
      a.whatsapp-flutuante {
        width: 58px !important;
        height: 58px !important;
        bottom: 100px !important;
        right: 18px !important;
    }

    a.whatsapp-flutuante img {
        width: 48px !important;
        height: 48px !important;

        min-width: 48px !important;
        min-height: 48px !important;

        max-width: 48px !important;
        max-height: 48px !important;
    }

    /* GERAL */

    .section {
        padding: 60px 5%;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 27px;
    }


    /* HEADER */

    .header {
        height: 68px;
        padding: 0 5%;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    .menu-toggle {
        font-size: 25px;
    }

    .nav {
        top: 68px;
    }


    /* HERO */

    .hero {
        min-height: 720px;
        padding: 65px 6% 150px;
    }

    .hero h1 {
        font-size: 35px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-image {
        background-position: 80% center;
    background-size: cover;
    opacity: .9;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-benefits {
        left: 6%;
        right: 6%;
        bottom: 20px;
    }

    .hero-benefits div {
        font-size: 10px;
    }


    /* CATEGORIAS */

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .category {
        padding: 10px;
    }

    .cat-icon {
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 10px;
    }

    .category h3 {
        font-size: 15px;
        margin: 0 2px;
    }

    .category p {
        font-size: 11px;
        margin: 5px 2px;
    }


    /* PRODUTOS */

    .products-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 390px;
    }

    .product img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .product h3 {
        font-size: 15px;
        margin: 12px 12px 5px;
    }

    .product p {
        font-size: 11px;
        margin: 0 12px 15px;
    }

    .product-button {
        width: calc(100% - 24px);
        margin: 0 12px 14px;
        padding: 10px 8px;
        font-size: 10px;
    }


    /* COMO FUNCIONA */

    .how-section .section-heading {
        margin-bottom: 35px;
    }

    .how-section .section-heading h2 {
        font-size: 27px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .step {
        text-align: center;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-icon img {
        width: 55px;
        height: 55px;
    }

    .step-number {
        font-size: 10px;
    }

    .step h3 {
        font-size: 15px;
    }

    .step p {
        font-size: 11px;
        max-width: 300px;
        margin: auto;
    }

    .step:not(:last-child)::before,
    .step:not(:last-child)::after {
        display: none;
    }


    /* PERSONALIZAÇÃO */

    .custom-banner {
        margin: 0 5% 60px;
        min-height: 480px;
        padding: 35px 20px;
        background:
            linear-gradient(
                180deg,
                rgba(10, 7, 16, 0.96) 0%,
                rgba(10, 7, 16, 0.82) 55%,
                rgba(10, 7, 16, 0.35) 100%
            ),
            url("assets/personalizado.png");

        background-size: cover;
        /* diminui e reposiciona a imagem */
        background-position: 82% center;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }
    .custom-banner h2 {
        font-size: 25px;
    }
    .custom-banner p {
        font-size: 11px;
    }
    .custom-options {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 10px;
        margin-top: 20px;
    }

    .custom-options > span {
        min-width: 0;
        font-size: 9px;
        white-space: normal;
    }

    .custom-options > span img,
    .custom-options .option-icon {
        width: 38px;
        height: 38px;
    }


    /* GALERIA */

    .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery div {
        height: 130px;
    }


    /* EMPRESAS */

    .business {
        padding: 60px 5%;
    }

    .business h2 {
        font-size: 28px;
    }

    .business p {
        font-size: 12px;
    }


    /* SOBRE */

    .about {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about p {
        font-size: 13px;
    }


    /* FAQ */

    .faq details {
        padding: 14px 15px;
    }

    .faq summary {
        font-size: 12px;
    }

    .faq details p {
        font-size: 11px;
    }


    /* ORÇAMENTO */

    .quote {
        margin: 60px 5%;
        padding: 35px 25px;
    }

    .quote h2 {
        font-size: 25px;
    }

    .quote p {
        font-size: 11px;
    }


    /* FOOTER */

    .footer {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 45px 7%;
    }

    .footer p,
    .footer a {
        font-size: 11px;
    }
}




@media (max-width: 400px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero {
        min-height: 700px;
    }

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

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

    .product {
        max-width: 300px;
        margin: auto;
    }

    .custom-options {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .section-heading h2 {
        font-size: 25px;
    }
     .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 8%;
        text-align: center;
        gap: 25px;
    }
.logofooter{
     width: 70px;
        height: 70px;
        margin: 0 auto;
}


}
