
:root {
    /* =====================================================
       IMPERIAL SOLUÇÕES — IDENTIDADE VISUAL
       Cores extraídas da logo:
       Amarelo: #FFB010
       Preto:   #050505
       Branco:  #FFFFFF
    ===================================================== */

    --yellow: #FFB010;
    --yellow-dark: #D99000;
    --yellow-light: #FFC43D;

    --black: #050505;
    --black-soft: #101010;
    --dark: #181818;

    --cream: #F5F4EF;
    --white: #FFFFFF;

    --gray: #70706C;
    --gray-light: #A2A29D;

    --border: rgba(5, 5, 5, .12);

    --container: 1240px;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: auto;
}

.section {
    padding: 130px 0;
}


/* =====================================================
   HEADER — IMPERIAL SOLUÇÕES
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    z-index: 1000;

    background: #050505 !important;
    color: #ffffff !important;

    border-bottom: 1px solid rgba(255, 176, 16, .12);

    transition: background .3s ease, box-shadow .3s ease;
}

.header.scrolled {
    background: #050505 !important;
    color: #ffffff !important;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, .28);
}

.nav {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo oficial */

.header .logo {
    display: flex;
    align-items: center;

    padding: 6px 12px;
    margin-left: -12px;

    height: 76px;
}

.header .logo img {
    width: 230px !important;
    height: 85px !important;

    max-width: 230px !important;
    max-height: 85px !important;

    object-fit: contain;
    object-position: left center;

    display: block;
    flex-shrink: 0;
}


/* Menu */

.header .menu {
    display: flex;
    align-items: center;
    gap: 34px;

    font-size: 13px;
    font-weight: 700;
}

.header .menu a {
    color: rgba(255, 255, 255, .78) !important;
    opacity: 1 !important;

    transition: color .2s ease;
}

.header .menu a:hover {
    color: #FFB010 !important;
}


/* Botão de orçamento */

.header .nav-button {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 21px;

    background: #FFB010 !important;
    color: #050505 !important;

    border: 1px solid #FFB010 !important;

    font-size: 12px;
    font-weight: 900;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.header .nav-button:hover {
    background: #ffffff !important;
    color: #050505 !important;
    border-color: #ffffff !important;

    transform: translateY(-2px);
}

.header .nav-button span {
    font-size: 16px;
}


/* Menu mobile */

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    width: 42px;
    height: 42px;

    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: #FFB010;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;
    padding-top: 130px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 42%,
            rgba(255, 176, 16, .18),
            transparent 31%
        ),
        var(--cream);
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: 15%;
    border: 1px solid rgba(255, 176, 16, .25);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -300px;
    top: 2%;
    border: 1px solid rgba(255, 176, 16, .12);
    border-radius: 50%;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -220px;
    top: 100px;
    border-radius: 50%;
    background: rgba(255, 176, 16, .10);
    filter: blur(90px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--yellow-dark);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--yellow);
}

.hero h1 {
    font-size: clamp(58px, 7vw, 100px);
    line-height: .94;
    letter-spacing: -.065em;
    font-weight: 800;
    max-width: 720px;
}

.hero h1 strong {
    display: block;
    color: var(--yellow-dark);
    font-weight: 800;
}

.hero-content > p {
    max-width: 530px;
    margin-top: 30px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 17px 24px;
    font-size: 12px;
    font-weight: 800;
    transition: .3s ease;
}

.btn span {
    font-size: 17px;
}

.btn-primary {
    background: var(--black);
    color: var(--yellow);
    border: 1px solid var(--black);
}

.btn-primary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--border);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    border-color: rgba(255, 176, 16, .5);
}

.hero-info {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.hero-info > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-info strong {
    font-size: 25px;
    color: var(--yellow-dark);
}

.hero-info span {
    color: var(--gray);
    font-size:0.6em;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.4;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-card {
    width: 410px;
    height: 520px;

    background:
        linear-gradient(
            145deg,
            #181818 0%,
            #050505 65%,
            #111111 100%
        );

    color: white;
    position: relative;
    padding: 28px;

    border: 2px solid rgba(255, 176, 16, .75);

    box-shadow:
        25px 30px 80px rgba(0, 0, 0, .20),
        0 0 80px rgba(255, 176, 16, .10);

    transform: rotate(4deg);
}

.card-top,
.card-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.card-top > span:first-child {
    color: var(--yellow);
}

.status {
    display: flex;
    align-items: center;
    gap: 7px;
}

.status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 12px rgba(255, 176, 16, .8);
}

.visual-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.circle-icon {
    width: 110px;
    height: 110px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 52px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 35px;
    box-shadow: 0 0 50px rgba(255, 176, 16, .10);
}

.visual-center h3 {
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.visual-center p {
    max-width: 230px;
    margin-top: 15px;
    font-size: 11px;
    line-height: 1.7;
    opacity: .7;
}

.card-bottom {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
}

.card-bottom span:first-child {
    color: var(--yellow);
}

.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-left: 3px solid var(--yellow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.floating-one {
    left: 0;
    bottom: 100px;
}

.floating-two {
    right: -15px;
    top: 100px;
}

.floating-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card small {
    margin-top: 3px;
    color: var(--gray);
    font-size: 9px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    margin-top: 60px;
}

.about h2,
.section-heading h2,
.why h2,
.audience h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.06em;
}

.about h2 span,
.section-heading h2 span,
.why h2 span,
.audience h2 span {
    color: var(--yellow-dark);
}

.about-text {
    max-width: 520px;
}

.about-text .large {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    gap: 25px;
    margin-top: 35px;
    font-size:1.0em;
    font-weight: 800;
}

.text-link span {
    color: var(--yellow-dark);
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: var(--cream);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 65px;
}

.section-heading h2 {
    margin-top: 20px;
}

.section-heading > p {
    max-width: 350px;
    color: var(--gray);
    font-size:1.1em;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.service-card {
    background: var(--white);
    min-height: 400px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
    z-index: 2;
}

.service-card.featured {
    background: var(--black);
    color: var(--white);
    border-top: 4px solid var(--yellow);
}

.service-number {
    font-size:1.0em;
    font-weight: 800;
    opacity: .4;
}

.service-icon {
    margin-top:10px;
    width:100%;
    height: 55px;
    border: 2px solid currentColor;
    display: grid;
    place-items: center;
    font-size:1.0em;
    color: var(--yellow-dark);
	background: rgba(0, 0, 0, 0.30);
}

.service-icon2 {
    width:100%;
    border: 2px solid currentColor;
    display: grid;
    place-items: center;
    font-size:1.0em;
    color: var(--yellow-dark);
}

.featured .service-icon {
    color: var(--yellow);
}

.service-card h3 {
    font-size: 23px;
    margin-top: 30px;
    letter-spacing: -.04em;
}

.service-card p {
    margin-top: 15px;
    color: var(--gray);
    font-size:0.9em;
    line-height: 1.7;
}

.featured p {
    color: rgba(255, 255, 255, 0.60);
    -webkit-text-stroke: 0.5px #fff;
}

.service-card a {
    margin-top: auto;
    padding-top: 30px;
    font-size:0.9em;
    font-weight: 800;
    letter-spacing: .05em;
    transition: .2s;
}

.service-card a:hover {
    color: var(--yellow);
}


/* =====================================================
   WHY
===================================================== */

.why {
    background: var(--black);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 120px;
}

.why .section-label {
    color: var(--yellow);
}

.why h2 {
    margin-top: 25px;
}

.why h2 span {
    color: var(--yellow);
}

.why-intro > p {
    margin-top: 30px;
    max-width: 420px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.8;
    font-size: 14px;
}

.why .btn {
    margin-top: 35px;
}

.why-list {
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.why-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.why-icon {
    font-size:1.0em;
    color: var(--yellow);
}

.why-item h3 {
    font-size: 19px;
}

.why-item p {
    margin-top: 8px;
    color: rgba(255, 255, 255, .50);
    font-size:1.0em;
    line-height: 1.7;
}


/* =====================================================
   AUDIENCE
===================================================== */

.audience {
    background: var(--white);
}

.audience-header {
    max-width: 700px;
}

.audience-header h2 {
    margin-top: 20px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 70px;
}

.audience-card {
    min-height: 190px;
    padding: 30px;
    background: var(--cream);
    position: relative;
    border-bottom: 3px solid transparent;
    transition: .3s ease;
}

.audience-card:hover {
    background: var(--yellow);
    color: var(--black);
    border-bottom-color: var(--black);
    transform: translateY(-8px);
}

.audience-card > span {
    font-size:1.1em;
    opacity: .5;
}

.audience-card h3 {
    font-size: 30px;
    letter-spacing: -.05em;
}

.audience-card p {
    margin-top: 10px;
    color: var(--gray);
    max-width: 260px;
    font-size:1.0em;
    line-height: 1.7;
}

.audience-card:hover p {
    color: rgba(5, 5, 5, .65);
}

.arrow {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 25px;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    background: var(--white);
    padding-top: 40px;
}

.cta-box {
    padding: 100px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 176, 16, .18),
            transparent 30%
        ),
        var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 176, 16, .25);
}

.cta-box .section-label {
    color: var(--yellow);
}

.cta-box h2 {
    max-width: 800px;
    margin-top: 25px;
    font-size: clamp(45px, 6vw, 80px);
    line-height: .98;
    letter-spacing: -.06em;
}

.cta-box h2 span {
    display: block;
    color: var(--yellow);
}

.cta-box p {
    margin-top: 25px;
    color: rgba(255, 255, 255, .68);
    font-size:1.0em;
}

.btn-light {
    margin-top: 35px;
    background: var(--yellow);
    color: var(--black);
    border: 1px solid var(--yellow);
}

.btn-light:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.cta-contact {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size:0.9em;
    opacity: .7;
}

.cta-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 176, 16, .20);
    right: -150px;
    bottom: -250px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: var(--black);
    color: var(--white);
    border-top: 1px solid rgba(255, 176, 16, .20);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
}

.footer-brand p {
    margin-top: 20px;
    max-width: 250px;
    color: rgba(255, 255, 255, .40);
    font-size: 11px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size:0.7em;
    color: rgba(255, 255, 255, .60);
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-copy {
    text-align: right;
    color: rgba(255, 255, 255, .35);
    font-size: 9px;
    line-height: 1.7;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 15px;

    background: var(--yellow);
    color: var(--black);

    border: 1px solid var(--black);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .20);

    font-size: 10px;
    font-weight: 900;

    transition: .25s ease;
}

.whatsapp:hover {
    background: var(--black);
    color: var(--yellow);
    transform: translateY(-3px);
}

.whatsapp b {
    font-size: 17px;
}


/* =====================================================
   ANIMAÇÕES
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   MOBILE MENU
===================================================== */

@media (max-width: 1050px) {

    .header {
        height: 78px;
    }

    .nav {
        height: 78px;
    }

    .header .logo {
        height: 68px;
        padding: 5px 8px;
        margin-left: -8px;
    }

    .header .logo img {
        
    }

    .header .menu {
        display: none;
    }

    .header .menu.mobile-open {
        display: flex;

        position: absolute;
        top: 78px;
        left: 0;

        width: 100%;

        padding: 25px;

        flex-direction: column;
        align-items: flex-start;
        gap: 20px;

        background: #050505 !important;
        color: #ffffff !important;

        border-top: 1px solid rgba(255, 176, 16, .20);

        box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    }

    .header .menu.mobile-open a {
        color: #ffffff !important;
        opacity: 1 !important;
    }

    .header .menu.mobile-open a:hover {
        color: #FFB010 !important;
    }

    .header .nav-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 85px 0;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-info {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 430px;
    }

    .main-card {
        width: 290px;
        height: 390px;
    }

    .floating-one {
        left: -5px;
        bottom: 50px;
    }

    .floating-two {
        right: -5px;
        top: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 350px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 55px 30px;
    }

    .cta-contact {
        flex-direction: column;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-copy {
        text-align: left;
    }

    .whatsapp span {
        display: none;
    }

    .logo {
        padding: 3px 6px;
    }

    .logo img {
        width: 56px;
        height: 56px;
    }
}


/* =====================================================
   ACESSIBILIDADE / REDUÇÃO DE MOVIMENTO
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* =====================================================
   FOOTER — LOGO COMPACTA
===================================================== */

.footer {
   
}

.footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 186px;
    height: 186px;

    padding: 5px;
    flex-shrink: 0;
}

.footer-brand .footer-logo img {
    width: 156px !important;
    height: 156px !important;

    max-width: 156px !important;
    max-height: 156px !important;

    object-fit: contain;
    display: block;
}

.footer-brand p {
    margin: 0;
    max-width: 210px;
    color: rgba(255, 255, 255, .42);
    font-size:0.9em;
    line-height: 1.6;
}

.footer-links {
    align-items: center;
}

.footer-copy {
    align-self: center;
}

@media (max-width: 700px) {

    .footer {
        padding: 40px 0 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand {
        gap: 16px;
    }

    .footer-brand .footer-logo {
        width: 55px;
        height: 55px;
    }

    .footer-brand .footer-logo img {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }
}

/* =====================================================
   BANNERS — IMPERIAL SOLUÇÕES
===================================================== */

.home-banners {
    width: 100%;
    background: var(--black);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    background: var(--black);
}

.banner-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;

    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* Overlay */

.banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, .88) 0%,
            rgba(5, 5, 5, .68) 45%,
            rgba(5, 5, 5, .35) 100%
        );

    z-index: 1;
}


/* Conteúdo */

.banner-content {
    position: relative;
    z-index: 3;

    color: var(--white);

    padding-top: 20px;
    padding-bottom: 20px;
}

.banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;

    color: var(--yellow);
}

.banner-kicker::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--yellow);
}


.banner-content h2 {
    max-width: 800px;

    margin-top: 25px;

    font-size: clamp(48px, 6vw, 82px);
    line-height: .98;

    letter-spacing: -.06em;
    font-weight: 800;
}

.banner-content h2 strong {
    display: block;
    color: var(--yellow);
}


.banner-content p {
    max-width: 500px;

    margin-top: 25px;

    color: rgba(255, 255, 255, .68);

    font-size: 15px;
    line-height: 1.7;
}


/* Botão */

.banner-content .btn {
    margin-top: 32px;
}


/* Setas */

.banner-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 5;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    background: rgba(5, 5, 5, .55);

    border: 1px solid rgba(255, 176, 16, .35);

    color: var(--yellow);

    font-size: 22px;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.banner-arrow:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.banner-prev {
    left: 25px;
}

.banner-next {
    right: 25px;
}


/* Indicadores */

.banner-dots {
    position: absolute;

    z-index: 5;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 9px;
}

.banner-dot {
    width: 28px;
    height: 3px;

    padding: 0;

    background: rgba(255, 255, 255, .35);

    border: 0;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}

.banner-dot.active {
    width: 50px;
    background: var(--yellow);
}


/* =====================================================
   CORREÇÃO DAS ANIMAÇÕES REVEAL
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
		
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   BANNERS — TABLET
===================================================== */

@media (max-width: 1050px) {

    .banner-slider {
        height: 500px;
    }

    .banner-content h2 {
        font-size: clamp(44px, 7vw, 68px);
    }

    .banner-arrow {
        width: 46px;
        height: 46px;
    }

}



/* =====================================================
   BANNERS — CELULAR
===================================================== */

@media (max-width: 700px) {

    .banner-slider {
        height: 520px;
    }

    .banner-slide {
        background-position: center;
    }

    .banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 5, 5, .90),
                rgba(5, 5, 5, .55)
            );
    }

    .banner-content {
        padding-right: 55px;
    }

    .banner-content h2 {
        margin-top: 20px;

        font-size: 43px;
        line-height: 1;
    }

    .banner-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .banner-content .btn {
        width: 100%;
        max-width: 290px;
    }

    .banner-arrow {
        width: 38px;
        height: 38px;

        font-size: 17px;
    }

    .banner-prev {
        left: 10px;
    }

    .banner-next {
        right: 10px;
    }

    .banner-dots {
        bottom: 20px;
    }

}

/* =====================================================
   GALERIA — 4 IMAGENS POR LINHA
===================================================== */

.gallery {
    background: var(--white);
}

.gallery-heading {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}


/* Todas as imagens terão exatamente o mesmo tamanho */

.gallery-item,
.gallery-item.gallery-large {
    grid-column: auto !important;
    grid-row: auto !important;

    position: relative;

    width: 100%;
    height: 280px;

    padding: 0;
    margin: 0;

    border: 0;
    overflow: hidden;

    background: var(--black);

    cursor: pointer;

    display: block;

    appearance: none;
    -webkit-appearance: none;
}


/* Imagem */

.gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform .5s ease,
        filter .5s ease;
}


/* Zoom */

.gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .15);

    opacity: 0;

    transition: opacity .3s ease;
}


.gallery-item:hover::after {
    opacity: 1;
}


.gallery-item:hover img {
    transform: scale(1.08);
}


/* Botão + */

.gallery-zoom {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--yellow);
    color: var(--black);

    font-size: 25px;
    font-weight: 700;

    z-index: 2;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   GALERIA — TABLET
===================================================== */

@media (max-width: 1000px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item,
    .gallery-item.gallery-large {
        height: 260px;
    }

}


/* =====================================================
   GALERIA — CELULAR
===================================================== */

@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item,
    .gallery-item.gallery-large {
        height: 240px;
    }

    .gallery-zoom {
        opacity: 1;
        transform: none;
    }

}

/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, .94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


.lightbox.active {
    opacity: 1;
    visibility: visible;
}


.lightbox-content {
    position: relative;

    max-width: 90vw;
    max-height: 88vh;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.lightbox-content img {
    display: block;

    max-width: 90vw;
    max-height: 82vh;

    width: auto;
    height: auto;

    object-fit: contain;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, .5);
}


.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 50px;
    height: 50px;

    border: 0;

    background: var(--yellow);
    color: var(--black);

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;
}


.lightbox-arrow {
    position: absolute;

    top: 50%;

    width: 55px;
    height: 55px;

    transform: translateY(-50%);

    border: 0;

    background: var(--yellow);
    color: var(--black);

    font-size: 35px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition:
        transform .2s ease,
        background .2s ease;
}


.lightbox-arrow:hover {
    background: var(--white);
}


.lightbox-prev {
    left: 30px;
}


.lightbox-next {
    right: 30px;
}


.lightbox-counter {
    margin-top: 15px;

    color: rgba(255, 255, 255, .7);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;
}


@media (max-width: 700px) {

    .lightbox {
        padding: 20px;
    }


    .lightbox-content img {
        max-width: 92vw;
        max-height: 75vh;
    }


    .lightbox-close {
        top: 15px;
        right: 15px;

        width: 44px;
        height: 44px;

        font-size: 26px;
    }


    .lightbox-arrow {
        width: 42px;
        height: 42px;

        font-size: 27px;
    }


    .lightbox-prev {
        left: 10px;
    }


    .lightbox-next {
        right: 10px;
    }

}

/* =====================================================
   INSTAGRAM — HEADER
===================================================== */

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-right: 8px;

    color: #ffffff;
    font-size: 18px;

    transition: .25s ease;
}

.instagram-link:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 1050px) {

    .instagram-link {
        display: block;
    }

}

.services-grid .service-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Camada preta sobre a imagem */
.services-grid .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 0;
}

/* Mantém todo o conteúdo acima da imagem */
.services-grid .service-card > * {
    position: relative;
    z-index: 1;
}