/* =========================================================
   ALVERNAZ PROGRAMAÇÕES
   style.css
   ========================================================= */

:root {
    --bg: #050a12;
    --bg-2: #07111f;
    --bg-3: #0b1829;

    --blue: #176bff;
    --blue-light: #4d9cff;
    --cyan: #43dcff;

    --white: #ffffff;

    --text: #d8e4f2;
    --muted: #8fa3ba;

    --border: rgba(255, 255, 255, 0.10);

    --green: #25d366;

    --shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #f8faff;
    color: #101827;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(5, 10, 18, 0.82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(5, 10, 18, 0.96);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav {
    min-height: 76px;

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

    gap: 30px;
}


/* =========================================================
   LOGO OFICIAL
   ========================================================= */

.logo-link {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    height: 66px;
}

.logo-img {
    display: block;

    width: 230px;
    height: 58px;

    object-fit: contain;
    object-position: left center;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.015);

    filter:
        drop-shadow(0 0 9px rgba(23, 107, 255, 0.20));
}


/* =========================================================
   MENU DESKTOP
   ========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.desktop-nav a {
    position: relative;

    color: #c5d2e1;

    font-size: 0.93rem;

    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    height: 2px;
    width: 0;

    bottom: -8px;
    left: 0;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.btn {
    min-height: 48px;

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

    gap: 10px;

    padding: 0 24px;

    border-radius: 10px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.btn svg {
    width: 18px;
    height: 18px;
}

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

.btn-nav {
    color: white;

    border:
        1px solid rgba(77, 156, 255, 0.55);

    background:
        rgba(23, 107, 255, 0.08);
}

.btn-nav:hover {
    border-color: var(--cyan);

    background:
        rgba(23, 107, 255, 0.16);
}

.btn-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            #176bff,
            #39c9ef
        );

    box-shadow:
        0 13px 32px rgba(23, 107, 255, 0.27);
}

.btn-primary:hover {
    box-shadow:
        0 18px 40px rgba(23, 107, 255, 0.38);
}

.btn-secondary {
    color: white;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    background:
        rgba(255, 255, 255, 0.035);
}

.btn-secondary:hover {
    border-color:
        rgba(67, 220, 255, 0.40);

    background:
        rgba(255, 255, 255, 0.07);
}


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

.mobile-menu-button {
    display: none;

    border: none;
    background: transparent;

    color: white;

    cursor: pointer;
}

.mobile-menu {
    display: none;
}


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

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 145px 0 90px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 83% 25%,
            rgba(23, 107, 255, 0.28),
            transparent 29%
        ),
        radial-gradient(
            circle at 9% 76%,
            rgba(67, 220, 255, 0.09),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #04080e,
            #07111f 55%,
            #0a1c35
        );
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size: 44px 44px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    right: -320px;
    bottom: -340px;

    background:
        rgba(23, 107, 255, 0.14);

    filter: blur(120px);
}

.hero-content {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 70px;

    align-items: center;

    position: relative;

    z-index: 2;
}


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

.tag {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    border:
        1px solid rgba(77, 156, 255, 0.25);

    background:
        rgba(23, 107, 255, 0.07);

    border-radius: 999px;

    color: var(--cyan);

    padding: 8px 14px;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.tag-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 12px var(--cyan);
}

.hero h1 {
    margin-top: 22px;

    max-width: 760px;

    color: white;

    font-size:
        clamp(2.8rem, 5vw, 5rem);

    letter-spacing: -3px;

    line-height: 1.03;
}

.hero h1 > span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #5ea6ff,
            #43dcff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-text > p {
    max-width: 650px;

    margin-top: 25px;

    color: #b2c0d1;

    font-size: 1.08rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 27px;
}

.hero-info span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #91a6bd;

    font-size: 0.87rem;
}

.hero-info svg {
    width: 15px;
    height: 15px;

    color: var(--cyan);
}


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

.hero-card {
    position: relative;
}

.browser {
    padding: 12px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 23px;

    background:
        rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: var(--shadow);

    transform:
        perspective(1100px)
        rotateY(-7deg)
        rotateX(3deg);

    transition:
        transform 0.4s ease;
}

.browser:hover {
    transform:
        perspective(1100px)
        rotateY(-3deg)
        translateY(-5px);
}

.browser-top {
    min-height: 46px;

    display: flex;
    align-items: center;

    padding: 0 15px;

    position: relative;

    background:
        rgba(3, 8, 15, 0.9);

    border-radius:
        14px 14px 0 0;
}

.browser-dots {
    display: flex;

    gap: 7px;
}

.browser-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.26);
}

.browser-address {
    position: absolute;

    left: 50%;

    transform:
        translateX(-50%);

    color: #65788f;

    font-size: 0.65rem;
}

.browser-content {
    min-height: 410px;

    border-radius:
        0 0 14px 14px;

    padding: 29px;

    position: relative;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(67, 220, 255, 0.13),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #091321,
            #0d2647
        );
}

.mockup-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-logo {
    color: #e5effb;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.mockup-menu {
    display: flex;

    gap: 4px;
}

.mockup-menu span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #7890aa;
}

.mockup-content {
    max-width: 340px;

    position: relative;

    z-index: 2;

    margin-top: 70px;
}

.mockup-tag {
    color: var(--cyan);

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.mockup-content h3 {
    margin-top: 10px;

    font-size: 2.35rem;

    line-height: 1.05;

    letter-spacing: -1px;
}

.mockup-content h3 span {
    color: #5da5ff;
}

.mockup-content p {
    margin-top: 17px;

    color: #9bb0c6;

    font-size: 0.85rem;
}

.mockup-button {
    width: fit-content;

    margin-top: 24px;

    padding: 11px 17px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #35c8f2
        );

    font-size: 0.72rem;
    font-weight: 700;
}

.mockup-decoration {
    position: absolute;

    right: 18px;
    bottom: 30px;

    width: 155px;
    height: 160px;
}

.ui-card {
    position: absolute;

    border:
        1px solid rgba(77, 156, 255, 0.28);

    border-radius: 15px;

    background:
        rgba(31, 85, 160, 0.16);

    backdrop-filter: blur(8px);
}

.ui-card-1 {
    width: 120px;
    height: 85px;

    right: 0;
    top: 0;
}

.ui-card-2 {
    width: 95px;
    height: 70px;

    right: 35px;
    top: 50px;
}

.ui-card-3 {
    width: 75px;
    height: 50px;

    right: 5px;
    bottom: 0;
}


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

.servicos-premium {
    padding: 110px 0;

    color: white;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(23, 107, 255, 0.15),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #050a12,
            #071524 62%,
            #0a1b31
        );
}

.servicos-premium::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -220px;
    bottom: -250px;

    border-radius: 50%;

    background:
        rgba(67, 220, 255, 0.045);

    filter: blur(90px);
}

.servicos-premium .container {
    position: relative;
    z-index: 2;
}

.servicos-header {
    display: grid;

    grid-template-columns:
        1fr 0.75fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 55px;
}

.section-kicker {
    color: var(--cyan);

    font-size: 0.73rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.servicos-header h2,
.portfolio-header h2 {
    max-width: 700px;

    margin-top: 10px;

    color: white;

    font-size:
        clamp(2.4rem, 4vw, 4rem);

    line-height: 1.05;

    letter-spacing: -2px;
}

.servicos-header > p {
    color: #91a5bb;

    line-height: 1.8;
}

.servicos-lista {
    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}

.servico-item {
    display: grid;

    grid-template-columns:
        75px 1fr 230px;

    gap: 30px;

    align-items: center;

    padding: 40px 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.10);

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}

.servico-item:hover {
    padding-left: 30px;
    padding-right: 30px;

    background:
        rgba(255, 255, 255, 0.025);
}

.destaque-servico {
    background:
        linear-gradient(
            90deg,
            rgba(23, 107, 255, 0.09),
            transparent
        );
}

.servico-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(77, 156, 255, 0.23);

    border-radius: 15px;

    color: var(--cyan);

    background:
        rgba(23, 107, 255, 0.07);
}

.servico-icon svg {
    width: 26px;
    height: 26px;
}

.servico-top {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 7px;
}

.servico-numero {
    color: #536b85;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.servico-tag {
    border-radius: 999px;

    padding: 4px 9px;

    background:
        rgba(67, 220, 255, 0.08);

    color: var(--cyan);

    font-size: 0.58rem;
    font-weight: 800;

    letter-spacing: 1px;
}

.servico-conteudo h3 {
    color: white;

    font-size: 1.7rem;
}

.servico-conteudo p {
    max-width: 670px;

    margin-top: 9px;

    color: #91a5bb;
}

.servico-recursos {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 17px;
}

.servico-recursos span {
    padding: 6px 11px;

    color: #adc0d4;

    border:
        1px solid rgba(77, 156, 255, 0.17);

    border-radius: 999px;

    background:
        rgba(23, 107, 255, 0.045);

    font-size: 0.73rem;
}

.servico-acao {
    text-align: right;
}

.servico-acao small {
    display: block;

    color: #71869c;

    font-size: 0.78rem;
}

.servico-acao strong {
    display: block;

    margin: 2px 0 15px;

    color: white;

    font-size: 1.55rem;
}

.servico-acao .price-text {
    font-size: 1.25rem;
}

.servico-btn {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--cyan);

    font-size: 0.86rem;
    font-weight: 700;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.servico-btn svg {
    width: 16px;
    height: 16px;
}

.servico-btn:hover {
    color: white;

    transform: translateX(4px);
}


/* =========================================================
   TÍTULOS DE SEÇÃO
   ========================================================= */

.section-title {
    max-width: 740px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-title > span {
    color: var(--blue);

    font-size: 0.73rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 10px;

    color: #0e1726;

    font-size:
        clamp(2.2rem, 4vw, 3.4rem);

    line-height: 1.1;

    letter-spacing: -1.7px;
}

.section-title p {
    margin-top: 15px;

    color: #68798d;
}


/* =========================================================
   VANTAGENS
   ========================================================= */

.vantagens-section {
    padding: 105px 0;

    background: #f8faff;
}

.benefits {
    display: grid;

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

    gap: 20px;
}

.benefit {
    min-height: 280px;

    padding: 28px;

    position: relative;

    overflow: hidden;

    background: white;

    border:
        1px solid #e3eaf2;

    border-radius: 20px;

    box-shadow:
        0 12px 32px rgba(15, 32, 60, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.benefit:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(15, 32, 60, 0.09);

    border-color:
        rgba(23, 107, 255, 0.25);
}

.benefit-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    color: var(--blue);

    border-radius: 13px;

    background: #eef5ff;
}

.benefit-icon svg {
    width: 23px;
    height: 23px;
}

.benefit-number {
    position: absolute;

    right: 22px;
    top: 20px;

    color: #e6edf5;

    font-size: 2rem;
    font-weight: 900;
}

.benefit h3 {
    margin-top: 33px;

    color: #0f1928;

    font-size: 1.23rem;
}

.benefit p {
    margin-top: 9px;

    color: #68798d;

    font-size: 0.9rem;
}


/* =========================================================
   PROCESSO
   ========================================================= */

.process-section {
    padding: 105px 0;

    color: white;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(23, 107, 255, 0.15),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #050a12,
            #07182b
        );
}

.section-title.light > span {
    color: var(--cyan);
}

.section-title.light h2 {
    color: white;
}

.section-title.light p {
    color: #91a5bb;
}

.process-grid {
    display: grid;

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

    gap: 17px;
}

.process-item {
    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, 0.085);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.028);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);

    border-color:
        rgba(67, 220, 255, 0.25);

    background:
        rgba(255, 255, 255, 0.045);
}

.process-item > span {
    color: var(--cyan);

    font-size: 0.75rem;
    font-weight: 800;
}

.process-item h3 {
    margin-top: 35px;

    font-size: 1.15rem;
}

.process-item p {
    margin-top: 9px;

    color: #8fa4ba;

    font-size: 0.88rem;
}


/* =========================================================
   PORTFÓLIO
   ========================================================= */

.projects-section {
    padding: 105px 0;

    background: #f8faff;
}

.portfolio-header {
    display: grid;

    grid-template-columns:
        1fr 0.65fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 50px;
}

.portfolio-header h2 {
    color: #0e1726;
}

.portfolio-header > p {
    color: #68798d;
}

.projects {
    display: grid;

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

    gap: 23px;
}

.project-card {
    overflow: hidden;

    background: white;

    border:
        1px solid #e1e9f2;

    border-radius: 20px;

    box-shadow:
        0 14px 35px rgba(14, 31, 55, 0.055);

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

.project-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 50px rgba(14, 31, 55, 0.1);
}

.project-image {
    min-height: 230px;

    display: flex;
    align-items: flex-end;

    padding:
        38px 30px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(23, 107, 255, 0.20),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #07111f,
            #0b2547
        );
}

.project-browser {
    width: 100%;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius:
        12px 12px 0 0;

    background:
        rgba(255, 255, 255, 0.07);

    box-shadow:
        0 -5px 30px rgba(0, 0, 0, 0.20);
}

.project-browser-top {
    display: flex;

    gap: 5px;

    padding: 10px;

    background:
        rgba(0, 0, 0, 0.20);
}

.project-browser-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.30);
}

.project-screen {
    height: 130px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.project-screen strong {
    color: white;

    font-size: 1.3rem;

    letter-spacing: 3px;
}

.project-screen span {
    margin-top: 4px;

    color: var(--cyan);

    font-size: 0.7rem;

    letter-spacing: 2px;
}

.project-info {
    padding: 24px;
}

.project-info > span {
    color: var(--blue);

    font-size: 0.65rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.project-info h3 {
    margin-top: 5px;

    color: #101827;

    font-size: 1.22rem;
}

.project-info p {
    margin-top: 8px;

    color: #68798d;

    font-size: 0.88rem;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.cta {
    padding: 80px 0;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #135eff,
            #27b9e4
        );
}

.cta::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -170px;
    top: -200px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);
}

.cta-content {
    display: grid;

    grid-template-columns:
        1fr auto;

    gap: 40px;

    align-items: center;

    position: relative;

    z-index: 2;

    color: white;
}

.cta-content > div > span {
    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 2px;
}

.cta h2 {
    margin-top: 8px;

    max-width: 730px;

    font-size:
        clamp(2.2rem, 4vw, 3.3rem);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.cta p {
    margin-top: 14px;

    color:
        rgba(255, 255, 255, 0.85);
}

.btn-whatsapp {
    min-width: 220px;

    color: #0e1b2f;

    background: white;

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.13);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;

    color: #159447;
}


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

footer {
    color: white;

    background: #04080e;
}

.footer-content {
    padding: 55px 0;

    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 90px;

    align-items: start;
}

.footer-brand {
    max-width: 350px;
}


/* LOGO DO FOOTER */

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo-img {
    width: 260px;
    height: auto;

    display: block;

    object-fit: contain;
    object-position: left center;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.015);

    filter:
        drop-shadow(0 0 8px rgba(23, 107, 255, 0.18));
}

.footer-brand p {
    margin-top: 15px;

    color: #74889d;

    font-size: 0.9rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: 4px;

    color: white;

    font-size: 0.88rem;
}

.footer-links a,
.footer-contact a {
    color: #8194a9;

    font-size: 0.85rem;

    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;

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

    gap: 8px;

    padding: 18px;

    color: #5f7389;

    border-top:
        1px solid rgba(255, 255, 255, 0.065);

    font-size: 0.78rem;
}


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

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 1200;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    color: white;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.35);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp svg {
    width: 26px;
    height: 26px;
}

.floating-whatsapp:hover {
    transform:
        scale(1.08)
        translateY(-2px);

    box-shadow:
        0 17px 38px rgba(37, 211, 102, 0.47);
}


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

.reveal {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


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

@media (max-width: 980px) {

    .desktop-nav,
    .btn-nav {
        display: none;
    }


    /* LOGO */

    .logo-link {
        height: 60px;
    }

    .logo-img {
        width: 205px;
        height: 52px;
    }


    /* MENU */

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        flex-direction: column;

        padding:
            15px 4% 25px;

        background:
            rgba(5, 10, 18, 0.98);

        border-top:
            1px solid rgba(255, 255, 255, 0.07);
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 13px 3px;

        color: #bdcad9;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.05);
    }


    /* HERO */

    .hero-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-text {
        text-align: center;
    }

    .tag {
        margin: auto;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-info {
        justify-content: center;
    }

    .hero-card {
        max-width: 650px;

        width: 100%;

        margin: auto;
    }

    .browser {
        transform: none;
    }

    .browser:hover {
        transform: translateY(-5px);
    }


    /* SERVIÇOS */

    .servicos-header,
    .portfolio-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .servico-item {
        grid-template-columns:
            65px 1fr;
    }

    .servico-acao {
        grid-column: 2;

        text-align: left;
    }


    /* VANTAGENS / PROCESSO */

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


    /* PROJETOS */

    .projects {
        grid-template-columns: 1fr;

        max-width: 720px;

        margin: auto;
    }


    /* CTA */

    .cta-content {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .btn-whatsapp {
        margin: auto;
    }


    /* FOOTER */

    .footer-content {
        gap: 40px;
    }

    .footer-logo-img {
        width: 230px;
    }

}


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

@media (max-width: 680px) {

    /* HEADER */

    .nav {
        min-height: 68px;
    }

    .logo-link {
        height: 52px;
    }

    .logo-img {
        width: 175px;
        height: 45px;
    }

    .mobile-menu {
        top: 68px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding:
            115px 0 70px;
    }

    .hero-content {
        gap: 45px;
    }

    .hero h1 {
        font-size: 2.55rem;

        letter-spacing: -2px;
    }

    .hero-text > p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-info {
        flex-direction: column;

        gap: 8px;
    }


    /* MOCKUP */

    .browser {
        padding: 8px;

        border-radius: 18px;
    }

    .browser-address {
        display: none;
    }

    .browser-content {
        min-height: 350px;

        padding: 23px;
    }

    .mockup-content {
        margin-top: 55px;
    }

    .mockup-content h3 {
        font-size: 1.9rem;
    }

    .mockup-decoration {
        opacity: 0.5;
    }


    /* SEÇÕES */

    .servicos-premium,
    .vantagens-section,
    .process-section,
    .projects-section {
        padding: 75px 0;
    }


    /* SERVIÇOS */

    .servicos-header {
        margin-bottom: 40px;
    }

    .servicos-header h2,
    .portfolio-header h2 {
        font-size: 2.25rem;
    }

    .servico-item {
        grid-template-columns: 1fr;

        gap: 20px;

        padding:
            32px 5px;
    }

    .servico-item:hover {
        padding-left: 5px;
        padding-right: 5px;
    }

    .servico-icon {
        width: 52px;
        height: 52px;
    }

    .servico-acao {
        grid-column: 1;

        text-align: left;
    }


    /* VANTAGENS */

    .benefits,
    .process-grid {
        grid-template-columns: 1fr;
    }


    /* PORTFÓLIO */

    .project-image {
        min-height: 200px;
    }


    /* CTA */

    .cta {
        padding: 65px 0;
    }

    .cta h2 {
        font-size: 2.25rem;
    }

    .btn-whatsapp {
        width: 100%;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;

        gap: 34px;

        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-logo-link {
        display: flex;

        justify-content: center;
    }

    .footer-logo-img {
        width: 220px;

        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 2px;
    }


    /* WHATSAPP */

    .floating-whatsapp {
        width: 54px;
        height: 54px;

        right: 16px;
        bottom: 16px;
    }

}


/* =========================================================
   TELAS PEQUENAS
   ========================================================= */

@media (max-width: 430px) {

    .container {
        width: 90%;
    }

    .logo-img {
        width: 160px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .servicos-header h2,
    .portfolio-header h2 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

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

    .footer-logo-img {
        width: 200px;
    }

}