/* =========================================================
   LFM CONSULTORIA DIGITAL
   STYLE.CSS
========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {
    --primary: #2419ba;
    --primary-light: #3022ef;
    --primary-dark: #1e186e;

    --blue: #1f1f1f;
    --blue-dark: #111111;
    --blue-deep: #050505;

    --dark: #151515;
    --graphite: #242424;

    --text: #5e6570;
    --text-light: #8a919c;

    --background: #f6f7f9;
    --background-alt: #eef1f5;

    --white: #ffffff;

    --whatsapp: #3022ef;
    --whatsapp-dark: #1f196a;

    --border: #000000;

    --shadow-small:
        0 8px 25px rgba(0, 0, 0, 0);

    --shadow:
        0 18px 50px rgba(0, 0, 0, 0);

    --shadow-large:
        0 30px 80px rgba(0, 0, 0, 0);

    --transition:
        0.35s ease;
}


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

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;
}


body.menu-open,
body.lightbox-open {
    overflow: hidden;
}


img {
    display: block;

    max-width: 100%;
}


a {
    text-decoration: none;
}


ul {
    list-style: none;
}


button,
input,
select,
textarea {
    font-family: inherit;
}


button {
    cursor: pointer;
}


.container {
    width: min(1180px, calc(100% - 40px));

    margin: auto;
}


.section {
    padding: 105px 0;
}


/* =========================================================
   PRELOADER
========================================================= */

.preloader {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 22px;

    color: var(--blue-dark);

    background: var(--white);

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}


.preloader.hide {
    opacity: 0;

    visibility: hidden;
}


.loader {
    width: 60px;

    height: 60px;

    border: 5px solid #edf0f4;

    border-top-color: var(--primary);

    border-right-color: var(--blue);

    border-radius: 50%;

    animation: loader 0.8s linear infinite;
}


.preloader span {
    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;
}


@keyframes loader {

    to {
        transform: rotate(360deg);
    }

}


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

.header {
    position: fixed;

    top: 0;

    left: 0;

    z-index: 1000;

    width: 100%;

    height: 92px;

    display: flex;

    align-items: center;

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

    box-shadow:
        0 5px 30px rgba(0, 25, 70, 0.06);

    transition: var(--transition);
}


.header.scrolled {
    height: 74px;

    box-shadow:
        0 8px 35px rgba(0, 25, 70, 0.12);
}


.header-container {
    height: 100%;

    display: flex;

    align-items: center;
}


/* LOGO */


.logo {
    display: flex;

    align-items: center;
}


.logo img {
    width: 205px;

    max-height: 76px;

    object-fit: contain;

    transition: var(--transition);
}


.header.scrolled .logo img {
    width: 180px;

    max-height: 60px;
}


/* MENU */


.navbar {
    margin-left: auto;
}


.nav-list {
    display: flex;

    align-items: center;

    gap: 25px;
}


.nav-link {
    position: relative;

    display: block;

    padding: 10px 0;

    color: var(--blue-dark);

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 3px;

    width: 0;

    height: 2px;

    border-radius: 10px;

    background: var(--primary);

    transition: var(--transition);
}


.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* HEADER WHATSAPP */


.header-whatsapp {
    min-height: 45px;

    margin-left: 28px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--white);

    background: var(--whatsapp);

    border-radius: 7px;

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);
}


.header-whatsapp:hover {
    transform: translateY(-2px);

    background: var(--whatsapp-dark);

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.25);
}


.header-whatsapp i {
    font-size: 18px;
}


/* MENU MOBILE */


.menu-toggle {
    display: none;

    width: 36px;

    border: 0;

    background: transparent;
}


.menu-toggle span {
    display: block;

    width: 100%;

    height: 3px;

    margin: 6px 0;

    border-radius: 5px;

    background: var(--blue-dark);

    transition: var(--transition);
}


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


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


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


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

.hero{

    position:relative;
    min-height:850px;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:#050505;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(5,5,5,.75) 0%,
        rgba(5,5,5,.55) 45%,
        rgba(5,5,5,.15) 100%
    );

    z-index:1;

}

.hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:58% 42%;

    align-items:center;

    gap:60px;

}

.hero-image img{

    width:100%;

    border-radius:22px;

    box-shadow:0 30px 90px rgba(0,0,0,.45);

}

.hero-content{

    color:#FFF;

}

.hero-content h1{

    font-size:10px;

    line-height:1.05;

}

.hero-content p{

    margin:30px 0;

    font-size:50px;

    line-height:1.8;

    color:rgba(255,255,255,.82);

}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    padding: 10px 16px;

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

    border-radius: 50px;

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

    backdrop-filter: blur(10px);

    color:
        rgba(255, 255, 255, 0.8);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.hero-badge span {
    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: var(--primary-light);

    animation: pulse 1.8s infinite;
}


@keyframes pulse {

    70% {
        box-shadow:
            0 0 0 10px
            rgba(34,197,94,0);
    }

}


.hero h1 {
    max-width: 720px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(10px, 5.4vw, 73px);

    line-height: 1.03;

    letter-spacing: -3px;
}


.hero h1 strong {
    display: block;

    color: var(--primary-light);
}


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

    margin-top: 25px;

    color:
        rgba(255, 255, 255, 0.73);

    font-size: 18px;

    line-height: 1.8;
}


.hero-benefits {
    margin: 28px 0;

    display: flex;

    flex-wrap: wrap;

    gap: 15px 25px;
}


.hero-benefits div {
    display: flex;

    align-items: center;

    gap: 9px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 13px;

    font-weight: 600;
}


.hero-benefits i {
    width: 22px;

    height: 22px;

    display: grid;

    place-items: center;

    color: var(--white);

    background: var(--primary);

    border-radius: 50%;

    font-size: 10px;
}


.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


/* BOTÕES */


.button {
    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: none;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 800;

    transition: var(--transition);
}


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


.button-primary {
    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary-dark)
        );

    box-shadow:
        0 15px 35px
        rgba(25,135,84,0.25);
}


.button-primary:hover {
    box-shadow:
        0 18px 40px
        rgba(25,135,84,0.4);
}


.button-outline {
    color: var(--white);

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

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

    backdrop-filter: blur(10px);
}


.button-whatsapp {
    color: var(--white);

    background: var(--whatsapp);

    box-shadow:
        0 15px 35px
        rgba(37, 211, 102, 0.25);
}


.button-light {
    color: var(--primary);

    background: var(--white);
}


/* HERO CARD */


.hero-card {
    position: relative;

    padding: 40px;

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

    border-radius: 22px;

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

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.22);
}


.hero-card::before {
    content: "";

    position: absolute;

    width: 80px;

    height: 5px;

    top: 0;

    left: 40px;

    border-radius: 0 0 10px 10px;

    background: var(--primary);
}


.hero-card-label {
    display: block;

    margin-bottom: 17px;

    color: var(--primary-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.hero-card h2 {
    font-family:
        "Montserrat",
        sans-serif;

    font-size: 31px;

    line-height: 1.2;
}


.hero-card h2 strong {
    color: var(--primary-light);
}


.hero-card-items {
    margin-top: 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.hero-card-items div {
    min-height: 110px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 12px;

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

    border-radius: 12px;

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

    transition: var(--transition);
}


.hero-card-items div:hover {
    transform: translateY(-5px);

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


.hero-card-items i {
    color: var(--primary-light);

    font-size: 23px;
}


.hero-card-items span {
    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   SOLUTIONS STRIP
========================================================= */

.solutions-strip {
    position: relative;

    z-index: 10;

    background: var(--white);

    box-shadow:
        0 12px 35px
        rgba(0, 25, 70, 0.08);
}


.solutions-strip-container {
    display: grid;

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


.solutions-strip-container > div {
    min-height: 120px;

    padding: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    border-right:
        1px solid var(--border);
}


.solutions-strip-container > div:last-child {
    border-right: none;
}


.solutions-strip i {
    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    color: var(--primary);

    background: #eaf7ef;

    border-radius: 12px;

    font-size: 21px;
}


.solutions-strip span,
.solutions-strip strong {
    display: block;
}


.solutions-strip strong {
    margin-bottom: 5px;

    color: var(--blue-dark);

    font-size: 15px;
}


.solutions-strip span {
    font-size: 12px;

    color: var(--text-light);
}


/* =========================================================
   SECTION HEADERS
========================================================= */

.section-header {
    max-width: 780px;

    margin: 0 auto 60px;

    text-align: center;
}


.section-subtitle {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.section-header h2,
.projects-header h2,
.about-content h2,
.advantages-content h2,
.contact-content h2 {
    color: var(--blue-dark);

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(31px, 4vw, 47px);

    line-height: 1.15;

    letter-spacing: -1.5px;
}


.section-header h2 strong,
.projects-header h2 strong,
.about-content h2 strong,
.contact-content h2 strong {
    color: var(--primary);
}


.section-header > p {
    max-width: 670px;

    margin: 18px auto 0;

    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--background);
}


.services-grid {
    display: grid;

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

    gap: 24px;
}


.service-card {
    position: relative;

    min-height: 365px;

    padding: 35px 30px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 17px;

    background: var(--white);

    box-shadow: var(--shadow-small);

    transition: var(--transition);
}


.service-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(25,135,84,0.3);

    box-shadow: var(--shadow);
}


.service-card.featured {
    color: var(--white);

    border: none;

    background:

        radial-gradient(
            circle at 100% 0%,
            rgba(34,53,197,0.28),
            transparent 35%
        ),

        linear-gradient(
            145deg,
            var(--blue-deep),
            var(--blue)
        );
}


.featured-label {
    position: absolute;

    top: 19px;

    right: -42px;

    padding: 8px 50px;

    color: var(--white);

    background: var(--primary);

    font-size: 8px;

    font-weight: 800;

    transform: rotate(45deg);
}


.service-icon {
    width: 62px;

    height: 62px;

    margin-bottom: 25px;

    display: grid;

    place-items: center;

    color: var(--primary);

    background: #f6b505;

    border-radius: 14px;

    font-size: 25px;
}


.featured .service-icon {
    color: var(--white);

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


.service-card h3 {
    margin-bottom: 15px;

    color: var(--blue-dark);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 20px;
}


.featured h3 {
    color: var(--white);
}


.service-card p {
    margin-bottom: 20px;

    font-size: 13px;

    line-height: 1.75;
}


.featured p {
    color:
        rgba(255, 255, 255, 0.72);
}


.service-card ul {
    margin-bottom: 22px;
}


.service-card li {
    position: relative;

    margin-bottom: 9px;

    padding-left: 18px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 12px;
}


.service-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--primary-light);
}


.service-link {
    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;
}


.featured .service-link {
    color: var(--white);
}


.service-link i {
    transition: var(--transition);
}


.service-link:hover i {
    transform: translateX(5px);
}


/* SOCIAL CARD */


.social-card {
    grid-column: 1 / -1;

    min-height: auto;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 25px;

    padding: 30px 35px;
}


.social-card .service-icon {
    margin: 0;
}


.social-card h3 {
    margin-bottom: 7px;
}


.social-card p {
    max-width: 650px;

    margin: 0;
}


/* =========================================================
   ABOUT
========================================================= */

.about-container {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


.about-visual {
    position: relative;
}


.about-main-card {
    min-height: 520px;

    padding: 50px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--white);

    text-align: center;

    border-radius: 22px;

    background:

        radial-gradient(
            circle at 100% 0,
            rgba(34,49,197,0.38),
            transparent 35%
        ),

        linear-gradient(
            145deg,
            var(--blue-deep),
            var(--blue)
        );

    box-shadow: var(--shadow-large);
}


.about-main-card > i {
    margin-bottom: 30px;

    color: var(--primary-light);

    font-size: 70px;
}


.about-main-card h3 {
    font-family:
        "Montserrat",
        sans-serif;

    font-size: 28px;
}


.about-main-card span {
    margin: 10px 0;

    color: var(--primary-light);

    font-size: 25px;

    font-weight: 800;
}


.about-floating-card {
    position: absolute;

    right: -35px;

    bottom: 45px;

    width: 170px;

    height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--white);

    border:
        7px solid var(--white);

    border-radius: 50%;

    background: var(--primary);

    box-shadow: var(--shadow);
}


.about-floating-card strong {
    font-family:
        "Montserrat",
        sans-serif;

    font-size: 37px;
}


.about-floating-card span {
    max-width: 100px;

    text-align: center;

    font-size: 11px;
}


.about-content h2 {
    margin-bottom: 25px;
}


.about-content > p {
    margin-bottom: 17px;

    line-height: 1.85;
}


.about-features {
    margin: 30px 0;
}


.about-features > div {
    display: flex;

    gap: 15px;

    margin-bottom: 22px;
}


.about-features i {
    margin-top: 3px;

    color: var(--primary);

    font-size: 20px;
}


.about-features span,
.about-features strong {
    display: block;
}


.about-features strong {
    margin-bottom: 5px;

    color: var(--blue-dark);
}


.about-features span {
    font-size: 13px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects {
    overflow: hidden;

    background: var(--blue-deep);
}


.projects-header {
    margin-bottom: 50px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;
}


.projects-header > div:first-child {
    max-width: 720px;
}


.projects-header h2 {
    color: var(--white);
}


.carousel-buttons {
    display: flex;

    gap: 10px;
}


.carousel-buttons button {
    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    color: var(--white);

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

    border-radius: 50%;

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

    transition: var(--transition);
}


.carousel-buttons button:hover {
    border-color: var(--primary);

    background: var(--primary);
}


.projects-carousel {
    display: flex;

    gap: 25px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;

    cursor: grab;
}


.projects-carousel::-webkit-scrollbar {
    display: none;
}


.projects-carousel:active {
    cursor: grabbing;
}


.project-card {
    flex:
        0 0
        calc(33.333% - 17px);

    overflow: hidden;

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

    border-radius: 16px;

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

    transition: var(--transition);
}


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

    border-color:
        rgba(34,197,94,0.45);
}


.project-image {
    position: relative;

    height: 300px;

    overflow: hidden;
}


.project-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.project-card:hover img {
    transform: scale(1.08);
}


.project-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 30%,
            rgba(2, 13, 37, 0.75)
        );

    transition: var(--transition);
}


.project-card:hover
.project-image::after {
    background:
        rgba(2, 13, 37, 0.7);
}


.project-watermark {
    position: absolute;

    z-index: 3;

    left: 18px;

    bottom: 18px;

    padding: 8px 12px;

    color: var(--white);

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

    border-radius: 5px;

    background:
        rgba(3, 19, 52, 0.65);

    backdrop-filter: blur(10px);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.project-view {
    position: absolute;

    z-index: 5;

    top: 50%;

    left: 50%;

    padding: 12px 17px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--white);

    border: none;

    border-radius: 7px;

    background: var(--primary);

    opacity: 0;

    transform:
        translate(-50%, -35%);

    transition: var(--transition);

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;
}


.project-card:hover
.project-view {
    opacity: 1;

    transform:
        translate(-50%, -50%);
}


.project-info {
    padding: 23px;
}


.project-info span {
    color: var(--primary-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


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

    color: var(--white);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 17px;
}


/* DOTS */


.carousel-dots {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 8px;
}


.carousel-dot {
    width: 8px;

    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

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

    transition: var(--transition);
}


.carousel-dot.active {
    width: 25px;

    border-radius: 10px;

    background: var(--primary);
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    background: var(--background);
}


.process-grid {
    display: grid;

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

    gap: 20px;
}


.process-card {
    position: relative;

    min-height: 300px;

    padding: 35px 27px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    box-shadow: var(--shadow-small);

    transition: var(--transition);
}


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

    box-shadow: var(--shadow);
}


.process-card > span {
    position: absolute;

    top: 15px;

    right: 20px;

    color: #edf0f4;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 55px;

    font-weight: 800;
}


.process-card > i {
    position: relative;

    z-index: 2;

    width: 60px;

    height: 60px;

    margin-bottom: 28px;

    display: grid;

    place-items: center;

    color: var(--white);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary-dark)
        );

    font-size: 23px;
}


.process-card h3 {
    margin-bottom: 13px;

    color: var(--blue-dark);

    font-family:
        "Montserrat",
        sans-serif;
}


.process-card p {
    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   ADVANTAGES
========================================================= */

.advantages {
    color: var(--white);

    background:

        radial-gradient(
            circle at 10% 100%,
            rgba(34,197,94,0.24),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            var(--blue-deep),
            var(--blue)
        );
}


.advantages-container {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 80px;

    align-items: center;
}


.advantages-content h2 {
    margin-bottom: 22px;

    color: var(--white);
}


.advantages-content h2 strong {
    display: block;

    color: var(--primary-light);
}


.advantages-content p {
    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.7);

    line-height: 1.8;
}


.advantages-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}


.advantage-card {
    min-height: 210px;

    padding: 28px;

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

    border-radius: 15px;

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

    backdrop-filter: blur(10px);

    transition: var(--transition);
}


.advantage-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(34,197,94,0.5);

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


.advantage-card i {
    margin-bottom: 20px;

    color: var(--primary-light);

    font-size: 27px;
}


.advantage-card h3 {
    margin-bottom: 11px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 16px;
}


.advantage-card p {
    color:
        rgba(255, 255, 255, 0.62);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
    background: var(--white);
}


.testimonials-grid {
    display: grid;

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

    gap: 25px;
}


.testimonial-card {
    padding: 32px;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    box-shadow: var(--shadow-small);

    transition: var(--transition);
}


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

    box-shadow: var(--shadow);
}


.testimonial-stars {
    margin-bottom: 20px;

    color: var(--primary-light);

    font-size: 12px;
}


.testimonial-card > p {
    min-height: 100px;

    color: var(--text);

    font-size: 14px;

    font-style: italic;

    line-height: 1.8;
}


.testimonial-author {
    margin-top: 25px;

    display: flex;

    align-items: center;

    gap: 13px;
}


.testimonial-author > span {
    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    color: var(--white);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--blue)
        );

    font-weight: 800;
}


.testimonial-author strong,
.testimonial-author small {
    display: block;
}


.testimonial-author strong {
    margin-bottom: 3px;

    color: var(--blue-dark);

    font-size: 13px;
}


.testimonial-author small {
    color: var(--text-light);

    font-size: 10px;
}


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

.cta {
    padding: 70px 0;

    color: var(--white);

    background:

        linear-gradient(
            110deg,
            var(--primary-dark),
            var(--primary),
            var(--primary-light)
        );
}


.cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.cta-container > div {
    max-width: 720px;
}


.cta-container span {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.cta-container h2 {
    margin: 10px 0;

    font-family:
        "Montserrat",
        sans-serif;

    font-size:
        clamp(28px, 4vw, 42px);
}


.cta-container p {
    color:
        rgba(255, 255, 255, 0.76);
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: var(--background);
}


.contact-container {
    display: grid;

    grid-template-columns:
        1fr 0.85fr;

    gap: 80px;

    align-items: center;
}


.contact-content h2 {
    margin-bottom: 25px;
}


.contact-content > p {
    max-width: 550px;

    line-height: 1.8;
}


.contact-features {
    margin-top: 35px;
}


.contact-features > div {
    margin-bottom: 20px;

    display: flex;

    align-items: center;

    gap: 15px;
}


.contact-features i {
    width: 52px;

    height: 52px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    color: var(--primary);

    border-radius: 12px;

    background: var(--white);

    box-shadow: var(--shadow-small);

    font-size: 20px;
}


.contact-features span,
.contact-features strong,
.contact-features small {
    display: block;
}


.contact-features small {
    margin-bottom: 4px;

    color: var(--text-light);

    font-size: 9px;

    letter-spacing: 1px;
}


.contact-features strong {
    color: var(--blue-dark);

    font-size: 14px;
}


/* FORM */


.contact-form-wrapper {
    padding: 40px;

    border-radius: 18px;

    background: var(--white);

    box-shadow: var(--shadow);
}


.contact-form h3 {
    color: var(--blue-dark);

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 23px;
}


.contact-form > p {
    margin: 8px 0 25px;

    font-size: 13px;
}


.form-group {
    margin-bottom: 17px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--blue-dark);

    font-size: 11px;

    font-weight: 800;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    color: var(--text);

    border:
        1px solid var(--border);

    border-radius: 7px;

    outline: none;

    background: #fbfcfd;

    transition: var(--transition);
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(25,135,84,0.1);
}


.form-button {
    width: 100%;
}


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

.footer {
    color:
        rgba(255, 255, 255, 0.6);

    background: #050505;
}


.footer-container {
    padding-top: 70px;

    padding-bottom: 55px;

    display: grid;

    grid-template-columns:
        1.4fr 0.7fr 0.9fr 1fr;

    gap: 50px;
}


.footer-brand img {
    width: 230px;

    margin-bottom: 20px;

    padding: 10px;

    border-radius: 8px;

    background: var(--white);
}


.footer-brand p {
    max-width: 330px;

    font-size: 12px;

    line-height: 1.8;
}


.footer h3 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: 14px;
}


.footer-column a,
.footer-column span {
    display: block;

    margin-bottom: 12px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 12px;

    transition: var(--transition);
}


.footer-column a:hover {
    color: var(--primary-light);
}


.footer-contact p {
    margin-bottom: 20px;

    font-size: 12px;

    line-height: 1.7;
}


.footer-contact a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #42dc79;

    font-weight: 800;
}


.footer-bottom {
    padding: 22px 0;

    text-align: center;

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

    font-size: 11px;
}


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

.floating-whatsapp {
    position: fixed;

    z-index: 900;

    right: 25px;

    bottom: 25px;

    min-height: 57px;

    padding: 0 21px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    border-radius: 50px;

    background: var(--whatsapp);

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

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}


.floating-whatsapp:hover {
    transform:
        translateY(-4px)
        scale(1.03);
}


.floating-whatsapp i {
    font-size: 25px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    z-index: 850;

    right: 31px;

    bottom: 95px;

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    color: var(--white);

    border: none;

    border-radius: 50%;

    background: var(--primary);

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}


.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    padding: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(1, 7, 20, 0.96);

    backdrop-filter: blur(10px);

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);
}


.lightbox.active {
    opacity: 1;

    visibility: visible;
}


.lightbox-content {
    width: min(1000px, 80vw);

    max-height: 85vh;

    overflow: hidden;

    border-radius: 12px;

    background: var(--white);

    transform: scale(0.9);

    transition: var(--transition);
}


.lightbox.active
.lightbox-content {
    transform: scale(1);
}


.lightbox-content img {
    width: 100%;

    max-height: 70vh;

    object-fit: contain;

    background: #050505;
}


.lightbox-info {
    padding: 20px 25px;
}


.lightbox-info span {
    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


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

    color: var(--blue-dark);

    font-family:
        "Montserrat",
        sans-serif;
}


.lightbox-close {
    position: absolute;

    top: 25px;

    right: 30px;

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    color: var(--white);

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

    border-radius: 50%;

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

    font-size: 20px;
}


.lightbox-navigation {
    position: absolute;

    top: 50%;

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    color: var(--white);

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

    border-radius: 50%;

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

    transform: translateY(-50%);
}


.lightbox-prev {
    left: 25px;
}


.lightbox-next {
    right: 25px;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

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


.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVIDADE - NOTEBOOK
========================================================= */

@media (max-width: 1100px) {

    .navbar,
    .header-whatsapp {
        display: none;
    }


    .menu-toggle {
        display: block;

        margin-left: auto;
    }


    .navbar.active {
        position: fixed;

        top: 74px;

        left: 0;

        width: 100%;

        height:
            calc(100vh - 74px);

        padding: 40px;

        display: block;

        background: var(--white);
    }


    .navbar.active .nav-list {
        flex-direction: column;

        align-items: flex-start;
    }


    .nav-link {
        font-size: 20px;
    }


    .hero-container {
        grid-template-columns:
            1.1fr 0.9fr;

        gap: 40px;
    }


    .hero-card {
        padding: 30px;
    }


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


    .social-card {
        grid-column: 1 / -1;
    }


    .project-card {
        flex:
            0 0
            calc(50% - 13px);
    }


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


    .footer-container {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   RESPONSIVIDADE - TABLET
========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 80px 0;
    }


    .header {
        height: 74px;
    }


    .logo img {
        width: 180px;

        max-height: 60px;
    }


    .hero {
        min-height: auto;

        padding-top: 74px;
    }


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

        gap: 20px;
    }


    .hero-content {
        padding:
            75px 0 30px;
    }


    .hero-card {
        margin-bottom: 70px;
    }


    .solutions-strip-container {
        grid-template-columns:
            1fr 1fr;
    }


    .solutions-strip-container > div:nth-child(2) {
        border-right: none;
    }


    .solutions-strip-container > div {
        border-bottom:
            1px solid var(--border);
    }


    .services-grid,
    .about-container,
    .advantages-container,
    .contact-container {
        grid-template-columns: 1fr;
    }


    .about-container,
    .contact-container {
        gap: 55px;
    }


    .about-visual {
        max-width: 600px;

        margin: auto;
    }


    .about-floating-card {
        right: 15px;
    }


    .social-card {
        grid-template-columns:
            auto 1fr;
    }


    .social-card .service-link {
        grid-column: 1 / -1;
    }


    .projects-header {
        align-items: center;
    }


    .project-card {
        flex:
            0 0
            calc(70% - 13px);
    }


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


    .testimonial-card > p {
        min-height: auto;
    }


    .cta-container {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   RESPONSIVIDADE - CELULAR
========================================================= */

@media (max-width: 540px) {

    .container {
        width:
            min(100% - 30px, 1180px);
    }


    .logo img {
        width: 160px;
    }


    .hero-content {
        padding-top: 60px;
    }


    .hero h1 {
        font-size: 41px;

        letter-spacing: -2px;
    }


    .hero-content > p {
        font-size: 15px;
    }


    .hero-benefits {
        flex-direction: column;

        gap: 11px;
    }


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


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


    .hero-card {
        padding: 25px 20px;
    }


    .hero-card h2 {
        font-size: 26px;
    }


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


    .solutions-strip-container {
        grid-template-columns: 1fr;
    }


    .solutions-strip-container > div {
        justify-content: flex-start;

        border-right: none;
    }


    .section-header {
        margin-bottom: 45px;
    }


    .section-header h2,
    .projects-header h2,
    .about-content h2,
    .advantages-content h2,
    .contact-content h2 {
        font-size: 31px;
    }


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


    .social-card {
        display: flex;

        flex-direction: column;

        align-items: flex-start;
    }


    .about-main-card {
        min-height: 400px;
    }


    .about-main-card h3 {
        font-size: 23px;
    }


    .about-floating-card {
        width: 130px;

        height: 130px;
    }


    .projects-header {
        flex-direction: column;

        align-items: flex-start;
    }


    .project-card {
        flex: 0 0 88%;
    }


    .project-image {
        height: 260px;
    }


    .project-view {
        opacity: 1;

        top: auto;

        bottom: 60px;

        transform:
            translateX(-50%);
    }


    .project-card:hover
    .project-view {
        transform:
            translateX(-50%);
    }


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


    .contact-form-wrapper {
        padding: 27px 20px;
    }


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

        gap: 35px;
    }


    .floating-whatsapp {
        right: 15px;

        bottom: 15px;

        width: 58px;

        height: 58px;

        min-height: 58px;

        padding: 0;

        justify-content: center;
    }


    .floating-whatsapp span {
        display: none;
    }


    .back-to-top {
        right: 23px;

        bottom: 85px;
    }


    .lightbox {
        padding: 15px;
    }


    .lightbox-content {
        width: 100%;
    }


    .lightbox-navigation {
        width: 40px;

        height: 40px;
    }


    .lightbox-prev {
        left: 8px;
    }


    .lightbox-next {
        right: 8px;
    }


    .lightbox-close {
        top: 15px;

        right: 15px;
    }

}