/* ============================================================
   Getters — Camada de modernização do layout
   Mantém a identidade: fundo escuro, acento #fcb900,
   Poppins (títulos) e Roboto (texto).
   Carregar sempre DEPOIS de style.css.
============================================================ */

:root {
    --g-accent: #fcb900;
    --g-accent-soft: rgba(252, 185, 0, 0.12);
    --g-accent-border: rgba(252, 185, 0, 0.35);
    --g-bg: #141414;
    --g-surface: rgba(255, 255, 255, 0.03);
    --g-surface-hover: rgba(255, 255, 255, 0.06);
    --g-border: rgba(255, 255, 255, 0.08);
    --g-text: #f2f2f2;
    --g-text-muted: #c2c3ca;
    --g-radius: 16px;
    --g-radius-sm: 12px;
    --g-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   Base e tipografia
============================================================ */

body {
    background: var(--g-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .main-font {
    letter-spacing: -0.02em;
}

.text-grey {
    color: var(--g-text-muted);
}

::selection {
    background-color: var(--g-accent);
    color: #111;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-left: none;
}

::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--g-accent);
}

/* Rótulo de seção (eyebrow) — mantém o amarelo, ganha hierarquia */
section p.text-pink.font-20,
.skill-box p.text-pink.font-20,
.quote-content span.text-pink.font-20 {
    font-size: 13px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

section p.text-pink.font-20::before,
.skill-box p.text-pink.font-20::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--g-accent);
    border-radius: 2px;
}

/* ============================================================
   Botões
============================================================ */

.btn {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
}

.btn.btn-rounded {
    border-radius: 50px;
}

/* Texto escuro sobre amarelo: mesmo contraste do logo (amarelo sobre preto) */
.btn.btn-pink {
    background: var(--g-accent);
    border-color: var(--g-accent);
    color: #141414 !important;
    font-weight: 600;
    box-shadow: 0 8px 24px -8px rgba(252, 185, 0, 0.5);
    transition: all 0.3s ease;
}

.btn.btn-pink:hover,
.btn.btn-pink:focus {
    background: transparent !important;
    border-color: var(--g-accent);
    color: var(--g-accent) !important;
    box-shadow: none;
    transform: translateY(-2px);
}

.btn.btn-trans {
    border: 2px solid rgba(255, 255, 255, 0.75);
    background: rgba(20, 20, 20, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.btn.btn-trans:hover {
    background: var(--g-accent) !important;
    border-color: var(--g-accent);
    color: #141414 !important;
    transform: translateY(-2px);
}

/* ============================================================
   Navbar
============================================================ */

.header-appear .navbar-top-default {
    background: rgba(16, 16, 16, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--g-border);
    box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.7);
}

.navbar-simple .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s ease;
}

.navbar-simple .navbar-nav .nav-link:hover,
.navbar-simple .navbar-nav .nav-link.active {
    color: var(--g-accent);
}

.navbar .btn.nav-button {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* ============================================================
   Hero / Slider
============================================================ */

/* Reserva a altura do hero antes de o Revolution Slider montar,
   evitando que o conteúdo abaixo "pule" (CLS) */
.slider-section,
.slider-section .rev_slider_wrapper {
    min-height: 100vh;
}

/* No mobile: centraliza, reduz e permite quebra do texto do hero
   (evita que slides alinhados à esquerda/nowrap transbordem a tela).
   Caixa de 84vw levemente à esquerda do centro + fonte reduzida garantem
   margem em ambos os lados mesmo com o deslocamento que o Revolution aplica. */
@media (max-width: 767px) {
    /* O Revolution posiciona a legenda por slide através do wrapper pai
       (.tp-parallax-wrap, com left variável) — o que desalinha o texto.
       Zeramos esse posicionamento e centralizamos a legenda na largura
       total da tela, de forma idêntica para os três slides. */
    #vertical-bullets .tp-parallax-wrap {
        left: 0 !important;
        width: 100vw !important;
    }
    #vertical-bullets .tp-loop-wrap,
    #vertical-bullets .tp-mask-wrap {
        width: 100vw !important;
        overflow: visible !important;
    }
    #vertical-bullets .tp-caption {
        position: relative !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 7vw !important;
        box-sizing: border-box !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
    }
    #vertical-bullets .tp-caption h1 {
        font-size: 20px !important;
        line-height: 1.28 !important;
        white-space: normal !important;
    }
    #vertical-bullets .tp-caption p {
        font-size: 13px !important;
        line-height: 1.45 !important;
        white-space: normal !important;
    }
    /* textos que eram alinhados à esquerda (slide 3) passam a centralizar */
    #vertical-bullets .tp-caption .text-left,
    #vertical-bullets .tp-caption h1.text-left,
    #vertical-bullets .tp-caption p.text-left {
        text-align: center !important;
    }
}

.scroll-down {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 20, 20, 0.55);
    border: 1px solid var(--g-border);
    border-radius: 50px;
    padding: 10px 22px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

/* A seta é absoluta no tema original e escapava da pílula */
.scroll-down i {
    position: static;
    padding-left: 0;
    font-size: 15px;
    line-height: 1;
}

.scroll-down:hover {
    border-color: var(--g-accent-border);
    color: var(--g-accent) !important;
}

.social-icons .social-icon {
    transition: all 0.3s ease;
}

.social-icons .social-icon:hover {
    color: var(--g-accent);
    transform: translateY(-3px);
}

/* ============================================================
   Sobre — cards de serviços (g-service-card)
============================================================ */

.g-services-row {
    margin-top: 64px;
}

.g-service-card {
    position: relative;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    padding: 38px 30px 32px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--g-border);
    border-radius: 18px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

/* Linha de topo que acende no hover */
.g-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(252, 185, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Brilho radial no canto superior direito */
.g-service-card::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(252, 185, 0, 0.16), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.g-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--g-accent-border);
}

.g-service-card:hover::before,
.g-service-card:hover::after {
    opacity: 1;
}

/* Numeração fantasma */
.g-card-num {
    position: absolute;
    top: 20px;
    right: 26px;
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
    transition: -webkit-text-stroke-color 0.35s ease;
    user-select: none;
}

.g-service-card:hover .g-card-num {
    -webkit-text-stroke-color: rgba(252, 185, 0, 0.55);
}

/* Badge do ícone */
.g-card-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: var(--g-accent-soft);
    border: 1px solid var(--g-accent-border);
    color: var(--g-accent);
    margin-bottom: 22px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.g-card-icon svg {
    width: 30px;
    height: 30px;
}

.g-service-card:hover .g-card-icon {
    transform: translateY(-4px) rotate(-4deg);
    box-shadow: 0 12px 28px -10px rgba(252, 185, 0, 0.45);
}

.g-service-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--g-text);
    line-height: 1.45;
    margin-bottom: 10px;
}

.g-service-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.g-service-card {
    cursor: pointer;
}

.g-card-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease, gap 0.3s ease;
}

.g-card-more i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.g-service-card:hover .g-card-more {
    color: var(--g-accent);
}

.g-service-card:hover .g-card-more i {
    transform: translateX(4px);
}

@media (max-width: 575px) {
    .g-service-card {
        padding: 30px 24px 26px;
    }
}

/* ============================================================
   Modais dos serviços
============================================================ */

.g-service-modal {
    max-width: 640px;
    width: 92%;
    background: #181818;
    border: 1px solid var(--g-border);
    border-radius: 18px;
    padding: 44px 44px 40px;
    text-align: left;
    box-shadow: var(--g-shadow);
    animation: gModalIn 0.5s cubic-bezier(0.16, 0.84, 0.3, 1) both;
}

/* Entrada: modal surge com fade + leve zoom, conteúdo em cascata */
@keyframes gModalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.94); }
    to   { opacity: 1; transform: none; }
}

@keyframes gModalChildIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

.g-service-modal > * {
    animation: gModalChildIn 0.5s ease both;
}

.g-service-modal > *:nth-child(1) { animation-delay: 0.14s; }
.g-service-modal > *:nth-child(2) { animation-delay: 0.19s; }
.g-service-modal > *:nth-child(3) { animation-delay: 0.24s; }
.g-service-modal > *:nth-child(4) { animation-delay: 0.29s; }
.g-service-modal > *:nth-child(5) { animation-delay: 0.34s; }
.g-service-modal > *:nth-child(6) { animation-delay: 0.39s; }
.g-service-modal > *:nth-child(7) { animation-delay: 0.44s; }

@media (prefers-reduced-motion: reduce) {
    .g-service-modal,
    .g-service-modal > * {
        animation: none !important;
    }
}

.g-service-modal .g-card-icon {
    margin-bottom: 18px;
}

.g-modal-kicker {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--g-accent);
    margin-bottom: 8px;
}

.g-service-modal h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--g-text);
    margin-bottom: 16px;
}

.g-service-modal p {
    font-family: 'Roboto', sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--g-text-muted);
    margin-bottom: 22px;
}

.g-modal-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.g-modal-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.g-modal-list li:last-child {
    border-bottom: none;
}

.g-modal-list li i {
    color: var(--g-accent);
    font-size: 13px;
    margin-right: 12px;
}

.g-modal-actions {
    text-align: left;
}

.g-service-modal .fancybox-close-small {
    color: rgba(255, 255, 255, 0.6);
    top: 12px;
    right: 12px;
}

.g-service-modal .fancybox-close-small:hover {
    color: var(--g-accent);
}

@media (max-width: 575px) {
    .g-service-modal {
        padding: 32px 24px 28px;
    }

    .g-service-modal h3 {
        font-size: 22px;
    }
}

/* ============================================================
   Sobre — cards antigos (about-box, mantido para outras páginas)
============================================================ */

.about-box {
    background: var(--g-surface);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    padding: 44px 28px 36px;
    margin-bottom: 24px;
    height: calc(100% - 24px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-box:hover {
    background: var(--g-surface-hover);
    border-color: var(--g-accent-border);
    transform: translateY(-6px);
}

.about-main-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--g-accent-soft);
    border: 1px solid var(--g-accent-border);
    margin-bottom: 8px;
}

.about-box .about-main-icon i {
    color: var(--g-accent);
    font-size: 34px;
    line-height: 1;
}

.about-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--g-text);
    line-height: 1.45;
    margin-bottom: 0;
}

.about-box:hover .about-main-icon {
    transform: translateY(-6px);
}

/* ============================================================
   Stats / barras de habilidades
============================================================ */

.stats-bg {
    background-size: cover;
}

.progress {
    height: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-top: 0.8rem;
}

.progress-bar.bg-pink,
.progress .progress-bar {
    background: linear-gradient(90deg, #e0a400, var(--g-accent)) !important;
    border-radius: 50px;
}

.custom-progress h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.custom-progress .numscroller {
    color: var(--g-accent);
    font-weight: 700;
}

.owl-split .team-img {
    border-radius: var(--g-radius);
}

.owl-split .hover-effect {
    border-radius: var(--g-radius);
    overflow: hidden;
    margin: 24px;
    box-shadow: var(--g-shadow);
}

/* ============================================================
   Portfólio
============================================================ */

/* Pills de filtro */
.nav-pills .nav-link,
.nav-pills .nav-link.nav-link {
    border-radius: 50px;
    border: 1px solid var(--g-border);
    background: var(--g-surface);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 0.6rem 1.7rem;
    transition: all 0.25s ease;
}

.nav-pills .nav-link:hover {
    border-color: var(--g-accent-border);
    color: var(--g-accent);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--g-accent);
    border-color: var(--g-accent);
    color: #141414;
    font-weight: 600;
}

/* Grade com respiro e cantos arredondados */
.da-thumbs li {
    width: calc(33.333% - 16px);
    margin: 8px;
    border-radius: var(--g-radius-sm);
    overflow: hidden;
    border: 1px solid var(--g-border);
    background: var(--g-surface);
    transition: border-color 0.3s ease;
}

.da-thumbs li:hover {
    border-color: var(--g-accent-border);
}

.da-thumbs > li .overlay {
    background-color: rgba(12, 12, 12, 0.9);
    opacity: 1;
}

.da-thumbs > li .overlay h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.da-thumbs > li .overlay span {
    color: var(--g-accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.search-icon {
    border: 1px solid var(--g-accent-border);
    background: var(--g-accent-soft);
    color: var(--g-accent);
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   Clientes / tecnologias
============================================================ */

/* Faixa das tecnologias em cinza um pouco mais claro que o fundo */
.clients {
    background: #1d1d1d;
    padding: 48px 0;
    margin-top: 6rem;
}

/* Carrossel ocupa toda a extensão da faixa */
.clients .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.clients .row {
    margin-left: 0;
    margin-right: 0;
}

.clients .col-md-12 {
    padding-left: 0;
    padding-right: 0;
}

.partners-slider .logo-item {
    padding: 10px 0;
}

.partners-slider .logo-item img {
    filter: grayscale(1) brightness(1.4);
    opacity: 0.55;
    max-height: 92px;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-slider .logo-item:hover img {
    filter: none;
    opacity: 1;
}

/* ============================================================
   Contato e formulários
============================================================ */

/* Mascote apoiado no formulário */
.contact-form-box {
    position: relative;
}

.g-robot {
    position: absolute;
    top: -96px;
    right: 48px;
    width: 150px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    animation: g-robot-bob 3.2s ease-in-out infinite;
}

@keyframes g-robot-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.g-robot-eye {
    transform-origin: center;
    transform-box: fill-box;
    animation: g-robot-blink 4.5s infinite;
}

@keyframes g-robot-blink {
    0%, 92%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.g-robot-light {
    animation: g-robot-pulse 1.8s ease-in-out infinite;
}

@keyframes g-robot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

@media (max-width: 991px) {
    .g-robot {
        width: 120px;
        top: -77px;
        right: 28px;
    }
}

.contact-form-box .contact-form {
    background: var(--g-surface);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    padding: 36px 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-form .form-control,
.quote-content .contact-form .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    height: 48px;
    padding: 12px 16px;
    color: var(--g-text);
    font-size: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form .form-control::placeholder,
.quote-content .contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form .form-control:focus,
.quote-content .contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--g-accent-border);
    box-shadow: 0 0 0 3px rgba(252, 185, 0, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 130px;
}

.contact-sec .contact-details h4.text-pink {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 13px;
}

/* ============================================================
   Modal de orçamento
============================================================ */

.quote-content {
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    box-shadow: var(--g-shadow);
}

/* ============================================================
   Página Sobre (standalone)
============================================================ */

.page-title {
    background: url("../images/getters/ai-banner.svg");
    background-size: cover;
    background-position: center;
}

.page-title .page-breadcrumb li a:hover {
    color: var(--g-accent);
}

.standalone-area .blog-image,
.standalone-area .blog-image.image {
    border-radius: var(--g-radius);
    overflow: hidden;
    box-shadow: var(--g-shadow);
    border: 1px solid var(--g-border);
}

.standalone-area .blog-image img {
    border-radius: 0;
}

.standalone-row .stand-img-des .para_text {
    color: var(--g-text-muted);
}

.standalone-row .stand-img-des .para_text b {
    color: var(--g-text);
}

/* ============================================================
   Página Sobre — layout intuitivo (v2)
============================================================ */

.g-about {
    overflow: hidden;
}

.g-about-section {
    padding: 84px 0;
}

.g-about-section--alt {
    background: #1a1a1a;
}

/* Cabeçalho de seção reutilizável */
.g-section-head {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.g-section-head.left {
    margin-left: 0;
    text-align: left;
}

.g-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--g-accent);
    margin-bottom: 14px;
}

.g-section-head.center .g-eyebrow::before,
.g-section-head:not(.left) .g-eyebrow::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--g-accent);
    border-radius: 2px;
}

.g-section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--g-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.g-section-head p {
    font-family: 'Roboto', sans-serif;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--g-text-muted);
    margin-bottom: 0;
}

/* Destaques (highlight tiles) do intro */
.g-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.g-highlight {
    background: var(--g-surface);
    border: 1px solid var(--g-border);
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.g-highlight:hover {
    border-color: var(--g-accent-border);
    transform: translateY(-4px);
}

.g-highlight strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--g-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.g-highlight span {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--g-text-muted);
    line-height: 1.5;
}

/* Cards de valor / diferenciais */
.g-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.g-value-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--g-border);
    border-radius: 16px;
    padding: 30px 28px;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.g-value-card:hover {
    transform: translateY(-5px);
    border-color: var(--g-accent-border);
}

.g-value-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--g-accent-soft);
    border: 1px solid var(--g-accent-border);
    color: var(--g-accent);
}

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

.g-value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--g-text);
    margin-bottom: 8px;
}

.g-value-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--g-text-muted);
    margin-bottom: 0;
}

/* Processo — como trabalhamos */
.g-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: g-step;
}

.g-step {
    position: relative;
    padding: 30px 24px;
    background: var(--g-surface);
    border: 1px solid var(--g-border);
    border-radius: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.g-step:hover {
    border-color: var(--g-accent-border);
    transform: translateY(-4px);
}

.g-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--g-accent);
    color: #141414;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Conector entre etapas (desktop) */
.g-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 53px;
    right: -24px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--g-accent-border), transparent);
}

.g-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--g-text);
    margin-bottom: 10px;
}

.g-step p {
    font-family: 'Roboto', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--g-text-muted);
    margin-bottom: 0;
}

/* Stack — chips de tecnologia */
.g-stack-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 760px;
    margin: 0 auto;
}

.g-chip {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: var(--g-surface);
    border: 1px solid var(--g-border);
    border-radius: 50px;
    padding: 10px 22px;
    transition: all 0.25s ease;
}

.g-chip:hover {
    border-color: var(--g-accent-border);
    color: var(--g-accent);
    background: var(--g-accent-soft);
}

/* CTA final */
.g-about-cta {
    text-align: center;
    background: linear-gradient(160deg, rgba(252, 185, 0, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--g-accent-border);
    border-radius: 24px;
    padding: 60px 32px;
    max-width: 900px;
    margin: 0 auto;
}

.g-about-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--g-text);
    margin-bottom: 14px;
}

.g-about-cta p {
    font-family: 'Roboto', sans-serif;
    font-size: 16.5px;
    color: var(--g-text-muted);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

.g-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.g-cta-actions .btn-whatsapp {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.g-cta-actions .btn-whatsapp:hover {
    border-color: #25d366;
    color: #25d366 !important;
    background: transparent !important;
}

/* Responsivo — Página Sobre v2 */
@media (max-width: 991px) {
    .g-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 767px) {
    .g-about-section {
        padding: 60px 0;
    }

    .g-value-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 479px) {
    .g-highlights {
        grid-template-columns: 1fr;
    }

    .g-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Revelar ao rolar (home) — animação de "surgir"
============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
                transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--rd, 0ms);
    will-change: opacity, transform;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* Escalonamento dos cards de serviço (duas linhas) */
.g-services-row > div:nth-child(1) { --rd: 0ms; }
.g-services-row > div:nth-child(2) { --rd: 90ms; }
.g-services-row > div:nth-child(3) { --rd: 180ms; }
.g-services-row > div:nth-child(4) { --rd: 0ms; }
.g-services-row > div:nth-child(5) { --rd: 90ms; }
.g-services-row > div:nth-child(6) { --rd: 180ms; }

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================================
   Rodapé
============================================================ */

.footer {
    border-top: 1px solid var(--g-border);
    padding: 72px 0 56px;
}

.g-footer {
    padding: 72px 0 0;
}

.g-footer-top {
    padding-bottom: 48px;
    text-align: left;
}

.g-footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.g-footer-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--g-text-muted);
    max-width: 360px;
    margin-bottom: 24px;
}

.g-footer-social {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.g-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--g-border);
    background: var(--g-surface);
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    transition: all 0.3s ease;
}

.g-footer-social a:hover {
    border-color: var(--g-accent-border);
    background: var(--g-accent-soft);
    color: var(--g-accent);
    transform: translateY(-3px);
}

.g-footer-col h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--g-accent);
    margin-bottom: 22px;
}

.g-footer-col ul {
    margin: 0;
    padding: 0;
}

.g-footer-col li {
    margin-bottom: 14px;
}

.g-footer-col a {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--g-text-muted);
    transition: color 0.25s ease;
}

.g-footer-col a:hover {
    color: var(--g-accent);
}

.g-footer-col a i {
    color: var(--g-accent);
    width: 20px;
    margin-right: 6px;
    text-align: center;
}

.g-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 0;
    border-top: 1px solid var(--g-border);
}

.g-footer-bottom p {
    font-family: 'Roboto', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.g-footer-bottom a {
    font-family: 'Roboto', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease;
}

.g-footer-bottom a:hover {
    color: var(--g-accent);
}

@media (max-width: 991px) {
    .g-footer-brand {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .g-footer {
        padding-top: 56px;
    }

    .g-footer-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 36px;
    }

    .g-footer-col li:last-child {
        margin-bottom: 0;
    }

    .g-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

.footer-social a {
    border: 1px solid var(--g-border);
    background: var(--g-surface);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--g-accent-border);
    background: var(--g-accent-soft);
    color: var(--g-accent);
    transform: translateY(-3px);
}

.footer .company-about {
    color: var(--g-text-muted) !important;
    font-size: 14px;
}

/* ============================================================
   Responsivo
============================================================ */

@media (max-width: 991px) {
    .da-thumbs li {
        position: relative;
        transform: none;
        width: calc(50% - 16px);
    }

    .skill-box {
        padding: 4rem 24px;
    }
}

@media (max-width: 575px) {
    .da-thumbs li {
        width: calc(100% - 16px);
    }

    .about-box {
        padding: 36px 22px 30px;
    }

    .contact-form-box .contact-form {
        padding: 28px 20px;
    }
}
