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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050816;
    color: #ffffff;
    overflow-x: hidden;
}

/* HEADER */

.topo {
    width: 100%;
    height: 90px;
    padding: 0 8%;
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 174, 255, 0.25);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .logo img {
        height: 72px;
        width: auto;
        background: transparent;
        object-fit: contain;
        filter: drop-shadow(0 0 12px rgba(0, 174, 255, 0.65));
        transition: .3s;
    }

        .logo img:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 18px rgba(0, 174, 255, 0.9));
        }

.menu {
    display: flex;
    gap: 30px;
}

    .menu a {
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: .3s;
    }

        .menu a:hover {
            color: #00aeff;
        }

main {
    padding-top: 90px;
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    overflow: hidden;
}

.video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

    .hero-content h1 {
        font-size: 4.2rem;
        font-weight: 800;
        line-height: 1.15;
        text-transform: uppercase;
        letter-spacing: 2px;
        max-width: 1100px;
        margin-bottom: 25px;
    }

    .hero-content p {
        max-width: 850px;
        font-size: 1.3rem;
        line-height: 1.7;
        color: #d8d8d8;
        margin-bottom: 40px;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-whatsapp {
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-primary {
    background: #00aeff;
    color: #fff;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 20px rgba(0, 174, 255, .4);
    }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

    .btn-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 20px rgba(37, 211, 102, .4);
    }

/* PÁGINAS */

.pagina {
    min-height: 80vh;
    padding: 80px 8%;
}

    .pagina h1 {
        font-size: 42px;
        margin-bottom: 20px;
        color: #00aeff;
    }

    .pagina p {
        font-size: 20px;
        line-height: 1.7;
    }

.botao-principal {
    display: inline-block;
    margin-top: 25px;
    background: #00aeff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
}

/* WHATSAPP */

.whatsapp-fixo {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    z-index: 999;
    transition: .3s;
}

    .whatsapp-fixo:hover {
        transform: scale(1.05);
    }

/* MOBILE */

@media (max-width: 768px) {

    .topo {
        height: auto;
        padding: 14px 4%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .logo {
        justify-content: center;
        width: 100%;
    }

        .logo img {
            height: 64px;
        }

    .menu {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 22px;
        overflow-x: auto;
        padding: 8px 6px 10px;
        scrollbar-width: none;
    }

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

        .menu a {
            font-size: 15px;
            white-space: nowrap;
            flex: 0 0 auto;
            text-align: center;
        }

            .menu a.ativo::after {
                bottom: -6px;
            }

    main {
        padding-top: 155px;
    }

    .hero {
        height: calc(100vh - 155px);
    }

    .hero-content h1 {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 95%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .btn-primary,
    .btn-whatsapp {
        width: 100%;
    }

    .pagina {
        padding: 50px 5%;
    }

        .pagina h1 {
            font-size: 32px;
        }

        .pagina p {
            font-size: 18px;
        }

    .whatsapp-fixo {
        right: 15px;
        bottom: 15px;
        padding: 14px 20px;
    }
}
/* =========================
   DIFERENCIAIS HOME
========================= */

.diferenciais-home {
    padding: 100px 8%;
    background: #050816;
}

    .diferenciais-home h2 {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 60px;
    }

.lista-diferenciais {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.diferencial {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,174,255,0.15);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

    .diferencial span {
        font-size: 2rem;
    }

    .diferencial p {
        color: #d8d8d8;
        font-size: 1.1rem;
        line-height: 1.5;
    }

@media(max-width:768px) {
    .diferenciais-home {
        padding: 60px 5%;
    }

        .diferenciais-home h2 {
            font-size: 2rem;
        }

    .lista-diferenciais {
        grid-template-columns: 1fr;
    }
}
/* =========================
   SERVIÇOS HOME
========================= */

.servicos-home {
    padding: 100px 8%;
    background: #07101f;
}

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

.servicos-home h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
}

.subtitulo {
    text-align: center;
    color: #cfcfcf;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.cards-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.card-servico {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,174,255,0.15);
    border-radius: 20px;
    padding: 35px;
    transition: .3s;
}

    .card-servico:hover {
        transform: translateY(-8px);
        border-color: #00aeff;
        box-shadow: 0 0 25px rgba(0,174,255,0.15);
    }

.icone {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-servico h3 {
    margin-bottom: 15px;
    color: #00aeff;
}

.card-servico p {
    line-height: 1.7;
    color: #d5d5d5;
}

@media(max-width:768px) {

    .servicos-home {
        padding: 60px 5%;
    }

        .servicos-home h2 {
            font-size: 2rem;
        }
}
/* =========================
   CTA HOME
========================= */

.cta-home {
    padding: 100px 8%;
    background: linear-gradient(135deg, #001f3f, #050816);
    text-align: center;
}

    .cta-home h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .cta-home p {
        font-size: 1.2rem;
        color: #d8d8d8;
        margin-bottom: 35px;
    }

.btn-cta {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(37, 211, 102, .45);
    }

@media(max-width:768px) {
    .cta-home {
        padding: 70px 5%;
    }

        .cta-home h2 {
            font-size: 2rem;
        }

        .cta-home p {
            font-size: 1rem;
        }
}
/* =========================
   PÁGINA SERVIÇOS
========================= */

.pagina-servicos {
    padding: 100px 8%;
    background: #050816;
    min-height: 100vh;
}

.titulo-pagina {
    text-align: center;
    margin-bottom: 70px;
}

    .titulo-pagina h1 {
        font-size: 3.5rem;
        color: #00aeff;
        margin-bottom: 20px;
    }

    .titulo-pagina p {
        max-width: 850px;
        margin: auto;
        color: #d8d8d8;
        font-size: 1.2rem;
        line-height: 1.7;
    }

.grid-servicos-detalhes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.servico-detalhe {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,174,255,0.18);
    border-radius: 22px;
    padding: 40px;
    transition: .3s;
}

    .servico-detalhe:hover {
        transform: translateY(-8px);
        border-color: #00aeff;
        box-shadow: 0 0 30px rgba(0,174,255,.18);
    }

    .servico-detalhe span {
        font-size: 3rem;
        display: block;
        margin-bottom: 20px;
    }

    .servico-detalhe h2 {
        color: #00aeff;
        margin-bottom: 18px;
    }

    .servico-detalhe p {
        color: #d8d8d8;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .servico-detalhe ul {
        list-style: none;
        margin-bottom: 30px;
    }

        .servico-detalhe ul li {
            margin-bottom: 10px;
            color: #ffffff;
        }

            .servico-detalhe ul li::before {
                content: "✓ ";
                color: #25d366;
                font-weight: bold;
            }

    .servico-detalhe a {
        display: inline-block;
        background: #25d366;
        color: #ffffff;
        padding: 14px 26px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: bold;
    }

@media(max-width:768px) {
    .pagina-servicos {
        padding: 70px 5%;
    }

    .titulo-pagina h1 {
        font-size: 2.4rem;
    }

    .grid-servicos-detalhes {
        grid-template-columns: 1fr;
    }
}
/* =========================
   FOOTER
========================= */

.footer {
    background: #02060f;
    border-top: 1px solid rgba(0,174,255,.15);
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 60px 8%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

.footer-coluna h3 {
    color: #00aeff;
    margin-bottom: 20px;
}

.footer-coluna p,
.footer-coluna li {
    color: #cfcfcf;
    line-height: 1.8;
}

.footer-coluna ul {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
    color: #8f8f8f;
}

@media(max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 5%;
    }
}
/* =========================
   CONTATO
========================= */

.contato-page {
    min-height: 100vh;
    padding: 100px 8%;
    background: #050816;
}

.contato-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    margin-top: 60px;
}

.info-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,174,255,.15);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 20px;
}

    .info-card h3 {
        color: #00aeff;
        margin-bottom: 10px;
    }

    .info-card p {
        color: #d5d5d5;
    }

.btn-contato-whatsapp {
    display: block;
    width: 100%;
    text-align: center;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
}

.contato-formulario {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,174,255,.15);
    border-radius: 22px;
    padding: 40px;
}

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

    .contato-formulario input,
    .contato-formulario textarea {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 12px;
        padding: 16px;
        color: white;
        font-size: 16px;
    }

        .contato-formulario input:focus,
        .contato-formulario textarea:focus {
            outline: none;
            border-color: #00aeff;
        }

    .contato-formulario button {
        background: #00aeff;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 18px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
    }

        .contato-formulario button:hover {
            opacity: .9;
        }

@media(max-width:768px) {

    .contato-page {
        padding: 70px 5%;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }
}
.contato-formulario select {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-size: 16px;
}

    .contato-formulario select option {
        color: #000;
    }

    .contato-formulario select:focus {
        outline: none;
        border-color: #00aeff;
    }
/* =========================
   SOBRE NÓS
========================= */

.sobre-page {
    min-height: 100vh;
    padding: 100px 8%;
    background: #050816;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 35px;
    margin-top: 60px;
}

.sobre-texto,
.sobre-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,174,255,.15);
    border-radius: 22px;
    padding: 40px;
}

    .sobre-texto h2,
    .sobre-card h3,
    .tecnologias h2,
    .sobre-cta h2 {
        color: #00aeff;
        margin-bottom: 20px;
    }

    .sobre-texto p,
    .sobre-card p {
        color: #d8d8d8;
        line-height: 1.8;
        margin-bottom: 15px;
    }

.tecnologias {
    margin-top: 70px;
    text-align: center;
}

.tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .tech-grid span {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(0,174,255,.2);
        padding: 14px 22px;
        border-radius: 40px;
        color: #ffffff;
    }

.sobre-cta {
    margin-top: 80px;
    text-align: center;
    background: linear-gradient(135deg, #001f3f, #050816);
    border-radius: 25px;
    padding: 60px 30px;
}

    .sobre-cta a {
        display: inline-block;
        background: #25d366;
        color: white;
        padding: 16px 34px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
    }

@media(max-width:768px) {
    .sobre-page {
        padding: 70px 5%;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
MENU ATIVO
========================= */

.menu a.ativo {
    color: #00aeff;
    font-weight: 700;
    position: relative;
}

    .menu a.ativo::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 2px;
        background: #00aeff;
    }
.cta-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: #d8d8d8;
    font-size: 1.1rem;
    margin-top: 25px;
}

    .cta-info span {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(0,174,255,.15);
        padding: 14px 24px;
        border-radius: 40px;
    }
/* =========================
   PORTFÓLIO CHAMADA
========================= */

.portfolio-chamada {
    padding: 80px 8%;
    background: #050816;
}

.portfolio-card {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, rgba(0,174,255,.18), rgba(37,211,102,.10));
    border: 1px solid rgba(0,174,255,.25);
    border-radius: 28px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 0 35px rgba(0,174,255,.10);
}

.portfolio-texto span {
    color: #25d366;
    font-weight: bold;
}

.portfolio-texto h2 {
    font-size: 2.4rem;
    margin: 15px 0;
    color: #ffffff;
}

.portfolio-texto p {
    color: #d8d8d8;
    line-height: 1.7;
    margin-bottom: 30px;
}

.portfolio-texto a {
    display: inline-block;
    background: #00aeff;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.portfolio-destaque {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    padding: 35px;
    text-align: center;
}

    .portfolio-destaque h3 {
        color: #00aeff;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }

    .portfolio-destaque p {
        color: #d8d8d8;
        line-height: 1.6;
    }

@media(max-width:768px) {
    .portfolio-card {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        text-align: center;
    }

    .portfolio-texto h2 {
        font-size: 2rem;
    }
}
/* =========================
   ALUGAR SISTEMA
========================= */

.alugar-page {
    min-height: 100vh;
    padding: 100px 8%;
    background: #050816;
}

.alugar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.sistema-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,174,255,.18);
    border-radius: 24px;
    padding: 42px;
    transition: .3s;
}

    .sistema-card.destaque {
        background: linear-gradient(135deg, rgba(0,174,255,.18), rgba(37,211,102,.08));
    }

    .sistema-card:hover {
        transform: translateY(-8px);
        border-color: #00aeff;
        box-shadow: 0 0 30px rgba(0,174,255,.18);
    }

    .sistema-card span {
        font-size: 3.5rem;
        display: block;
        margin-bottom: 22px;
    }

    .sistema-card h2 {
        color: #00aeff;
        margin-bottom: 18px;
    }

    .sistema-card p {
        color: #d8d8d8;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .sistema-card ul {
        list-style: none;
        margin-bottom: 30px;
    }

        .sistema-card ul li {
            color: #ffffff;
            margin-bottom: 10px;
        }

            .sistema-card ul li::before {
                content: "✓ ";
                color: #25d366;
                font-weight: bold;
            }

    .sistema-card a {
        display: inline-block;
        background: #00aeff;
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: bold;
    }

@media(max-width:768px) {
    .alugar-page {
        padding: 70px 5%;
    }

    .alugar-grid {
        grid-template-columns: 1fr;
    }
}
.sistema-img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #07111f;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,180,255,.25);
    box-shadow: 0 0 25px rgba(0,180,255,.15);
    transition: .3s;
    padding: 10px;
}

.sistema-card:hover .sistema-img {
    transform: scale(1.03);
}

.sistema-card {
    overflow: hidden;
}
/* =======================================
   DETALHE DOS SISTEMAS
======================================= */

.sistema-detalhe-page {
    padding: 80px 0;
}

.sistema-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.sistema-hero-texto span {
    color: #00b7ff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.sistema-hero-texto h1 {
    color: #00b7ff;
    font-size: 52px;
    margin: 20px 0;
}

.sistema-hero-texto p {
    color: #dcdcdc;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sistema-hero-texto a {
    display: inline-block;
    background: #00b7ff;
    color: white;
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}

.sistema-hero-imagem img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,183,255,.25);
}

.sistema-beneficios {
    margin-bottom: 80px;
}

    .sistema-beneficios h2 {
        text-align: center;
        color: #00b7ff;
        margin-bottom: 40px;
    }

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

.beneficio-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,183,255,.20);
    padding: 25px;
    border-radius: 18px;
}

    .beneficio-card h3 {
        color: #00b7ff;
        margin-bottom: 15px;
    }

    .beneficio-card p {
        color: #dcdcdc;
    }

.sistema-video {
    text-align: center;
    margin-bottom: 80px;
}

    .sistema-video h2 {
        color: #00b7ff;
        margin-bottom: 20px;
    }

    .sistema-video p {
        color: #dcdcdc;
        margin-bottom: 30px;
    }

    .sistema-video video {
        width: 100%;
        max-width: 1000px;
        border-radius: 20px;
        border: 1px solid rgba(0,183,255,.25);
    }

.sistema-plano {
    text-align: center;
    padding: 50px;
    border-radius: 25px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,183,255,.20);
}

    .sistema-plano h2 {
        color: #00b7ff;
        margin-bottom: 20px;
    }

    .sistema-plano p {
        color: #dcdcdc;
        max-width: 800px;
        margin: auto;
    }

.plano-itens {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

    .plano-itens span {
        background: rgba(0,183,255,.10);
        padding: 12px 18px;
        border-radius: 10px;
    }

.sistema-plano a {
    display: inline-block;
    margin-top: 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: bold;
}

@media(max-width:900px) {

    .sistema-hero {
        grid-template-columns: 1fr;
    }

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

    .sistema-hero-texto h1 {
        font-size: 38px;
    }
}
.plano-locacao {
    margin-top: 60px;
    padding: 50px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(135deg,#041a33,#072648);
    border: 1px solid rgba(0,180,255,.25);
    box-shadow: 0 0 35px rgba(0,180,255,.15);
}

.badge-plano {
    display: inline-block;
    background: #00b4ff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.plano-locacao h2 {
    color: #00b4ff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.plano-locacao p {
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.vantagens-locacao {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 35px;
}

.vantagem-item {
    background: rgba(255,255,255,.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0,180,255,.15);
}

.btn-locacao {
    display: inline-block;
    background: linear-gradient(90deg,#00b4ff,#00d4ff);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .btn-locacao:hover {
        transform: translateY(-3px);
    }
/* =========================
   PLANO DE LOCAÇÃO
========================= */

.plano-locacao {
    margin-top: 70px;
    padding: 55px 45px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0,174,255,.18), rgba(37,211,102,.10));
    border: 1px solid rgba(0,174,255,.30);
    box-shadow: 0 0 35px rgba(0,174,255,.18);
}

.badge-plano {
    display: inline-block;
    background: #00aeff;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 22px;
}

.plano-locacao h2 {
    color: #00aeff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.plano-locacao p {
    max-width: 850px;
    margin: 0 auto 35px;
    color: #d8d8d8;
    line-height: 1.7;
}

.vantagens-locacao {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-bottom: 35px;
}

.vantagem-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(0,174,255,.18);
    border-radius: 14px;
    padding: 16px;
    color: #ffffff;
    font-weight: 600;
}

.btn-locacao {
    display: inline-block;
    background: #25d366;
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

    .btn-locacao:hover {
        transform: translateY(-3px);
    }
/* =========================
   PLANO DE LOCAÇÃO
========================= */

.plano-locacao {
    margin-top: 70px;
    padding: 55px 45px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0,174,255,.18), rgba(37,211,102,.10));
    border: 1px solid rgba(0,174,255,.30);
    box-shadow: 0 0 35px rgba(0,174,255,.18);
}

.badge-plano {
    display: inline-block;
    background: #00aeff;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 22px;
}

.plano-locacao h2 {
    color: #00aeff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.plano-locacao p {
    max-width: 850px;
    margin: 0 auto 35px;
    color: #d8d8d8;
    line-height: 1.7;
}

.vantagens-locacao {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-bottom: 35px;
}

.vantagem-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(0,174,255,.18);
    border-radius: 14px;
    padding: 16px;
    color: #ffffff;
    font-weight: 600;
}

.btn-locacao {
    display: inline-block;
    background: #25d366;
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

    .btn-locacao:hover {
        transform: translateY(-3px);
    }

