/*==================================================
MISTER BACON
Premium Landing Page
==================================================*/
:root {
    --primary: #b67a2d;
    --primary-dark: #8d5e20;
    --black: #0b0b0b;
    --black2: #111;
    --black3: #1b1b1b;
    --white: #fff;
    --gray: #999;
    --border: rgba(255, 255, 255, .08);
    --radius: 18px;
    --transition: .35s;
    --container: 1280px;
    --title: 'Outfit', sans-serif;
    --text: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--text);
    background: var(--black);
    color: #fff;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    padding: 6px 0;
}

nav a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #d69a2d;
    transform: translateX(-50%);
    transition: .35s;
}

nav a:hover {
    color: #fff;
}

nav a:hover::before {
    width: 100%;
}

a {
    text-decoration: none;
    color: #fff;
}

.container {
    width: min(var(--container), 92%);
    margin: auto;
}

/*======================================
HEADER
======================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .4s;
    padding: 22px 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

header.active {
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 200px;
}

.btn-header {
    padding: 14px 24px;
    border-radius: 40px;
    background: var(--primary);
    transition: .3s;
}

.btn-header:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

/*======================================
HERO
======================================*/
.hero {
    height: 100vh;
}

.heroSlider {
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.swiper-slide img.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomHero 12s linear infinite;
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .40),
            rgba(0, 0, 0, .70));
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
}

.subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero p {
    color: #ddd;
    font-size: 20px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 40px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 16px;
    background: linear-gradient(135deg, #d69a2d, #b67823);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(198, 133, 45, .25);
    border: 1px solid rgba(255, 255, 255, .08);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-25deg);
    transition: .8s;
}

.btn:hover::before {
    left: 140%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(198, 133, 45, .4);
}

.btn:active {
    transform: translateY(0);
}

.btn i {
    margin-right: 12px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: .4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

/*======================================
FEATURES
======================================*/
.features {
    padding: 90px 0;
    background: #5e110f;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    padding: 45px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #181818;
    transition: .35s;
}

.feature h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
}

.feature h3 i {
    color: var(--gold);
    font-size: 34px;
    transition: .35s;
}

.feature:hover h3 i {
    transform: rotate(-10deg) scale(1.15);
    color: #ffbe55;
}

.feature:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
}

.feature h3 {
    margin-bottom: 18px;
    font-size: 24px;
}

.feature p {
    color: #bdbdbd;
    line-height: 1.8;
}

/*======================================
TÍTULOS
======================================*/
.title {
    text-align: center;
    margin-bottom: 70px;
}

.title span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title h2 {
    margin-top: 15px;
    font-size: 48px;
}

/*======================================
PRODUTOS
======================================*/
.product-showcase {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #111;
    overflow: hidden;
}

.product-showcase:nth-child(even) {
    background: #171717;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.reverse .product-text {
    order: 2;
}

.reverse .product-image {
    order: 1;
}

.product-text h2 {
    font-size: 66px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 60px;
    letter-spacing: -1px;
    font-family: var(--title);
}

.product-text p {
    color: #bdbdbd;
    font-size: 20px;
    margin-bottom: 25px;
}

.product-image {
    text-align: center;
}

.product-image {
    position: relative;
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(214, 138, 41, .35),
            rgba(214, 138, 41, .08),
            transparent 70%);
    filter: blur(90px);
}

.product-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    filter:
        drop-shadow(0 45px 45px rgba(0, 0, 0, .45)) drop-shadow(0 0 45px rgba(214, 138, 41, .18));
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }
}

.product-image img {
    animation: floating 6s ease-in-out infinite;
}

.product-showcase::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(214, 138, 41, .12),
            transparent 70%);
}

.product-image img {
    width: 100%;
    max-width: 650px;
    transition: .6s;
    border-radius: 40px 0 40px;
}

.product-image img:hover {
    transform: scale(1.05);
}

.product-showcase {
    position: relative;
    background: #090909;
    overflow: hidden;
}

.product-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/smoke.png") center/cover no-repeat;
    opacity: .12;
    mix-blend-mode: screen;
    animation: smokeMove 40s linear infinite;
}

@keyframes smokeMove {
    from {
        transform: scale(1.2) translateX(-5%);
    }

    to {
        transform: scale(1.3) translateX(5%);
    }
}

.product-image {
    position: relative;
}

.product-image::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(214, 133, 41, .55) 0%,
            rgba(214, 133, 41, .18) 35%,
            rgba(214, 133, 41, .05) 60%,
            transparent 80%);
    filter: blur(80px);
    z-index: 0;
}

.product-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%,
            rgba(255, 170, 70, .10),
            transparent 45%);
    pointer-events: none;
}

.product-showcase {
    box-shadow:
        inset 0 0 180px rgba(0, 0, 0, .85);
}

.product-badge {
    margin-bottom: 22px;
}

@media(max-width:991px) {

    .product-showcase {
        padding: 70px 0;
        overflow: hidden;
    }

    .product-showcase .container {
        padding: 0 15px;
    }

    .product-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .product-showcase.reverse .product-content {
        flex-direction: column;
    }

    .product-text {
        order: 1;
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .product-image {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product-image img {
        width: 75%;
        max-width: 270px;
        height: auto;
    }

    .product-badge {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 18px;
        border-radius: 40px;
        font-size: .78rem;
        letter-spacing: .8px;
        margin-bottom: 18px;
    }

    .product-badge i {
        font-style: normal;
        font-size: 10px;
    }

    .subtitle {
        display: block;
        font-size: .9rem;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .product-text h2 {
        font-size: 2.4rem;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .product-text p {
        font-size: 1.05rem;
        line-height: 1.75;
        margin-bottom: 18px;
    }

    .product-text .btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .product-caption {
        margin-top: 18px;
        text-align: center;
    }

    .product-caption p {
        font-size: .72rem;
        letter-spacing: 2px;
        line-height: 1.6;
    }

    .glow {
        transform: scale(.8);
        opacity: .8;
    }

}

/* .products{
    padding:120px 0;
}
.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.product{
    background:#161616;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    border:1px solid var(--border);
}
.product img{
    height:350px;
    object-fit:cover;
    transition:.5s;
}
.product:hover{
    transform:translateY(-12px);
    border-color:var(--primary);
}
.product:hover img{
    transform:scale(1.08);
}
.product .content{
    padding:30px;
}
.product h3{
    font-size:28px;
    margin-bottom:15px;
}
.product p{
    color:#bbb;
    line-height:1.8;
} */
/*======================================
TIMELINE
======================================*/
.timeline {
    padding: 120px 0;
    background: #121212;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.step {
    text-align: center;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: .35s;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.number {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    background: var(--primary);
    margin-bottom: 25px;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.step p {
    color: #bbb;
    line-height: 1.7;
}

/*======================================
FOOTER
======================================*/
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: #999;
}

/*======================================
ANIMAÇÕES
======================================*/
@keyframes zoomHero {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

/*======================================
RESPONSIVO
======================================*/
@media(max-width:1100px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .hero h1 {
        font-size: 56px;
    }
}

@media(max-width:768px) {
    header nav {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

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

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

    .title h2 {
        font-size: 34px;
    }

    .logo img {
        width: 140px;
    }
}

/*==================================================
ETAPA 3
INSTITUCIONAL + NÚMEROS + MVV
==================================================*/
/*===============================
INSTITUCIONAL
================================*/
.institutional {
    padding: 140px 0;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.institutional::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -250px;
    top: -250px;
    background: radial-gradient(circle,
            rgba(182, 122, 45, .12),
            transparent 70%);
    pointer-events: none;
}

.institutional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/*===============================
IMAGEM
================================*/
.institutional-image {
    position: relative;
}

.institutional-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 22px;
    transition: .5s;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .45);
}

.institutional-image:hover img {
    transform: scale(1.03);
}

/*===============================
SELO +13
================================*/
.experience {
    position: absolute;
    bottom: 40px;
    left: -35px;
    width: 180px;
    background: #b67a2d;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .35);
}

.experience strong {
    display: block;
    font-size: 60px;
    line-height: 1;
    color: #fff;
}

.experience span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/*===============================
TEXTO
================================*/
.institutional-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin: 20px 0 30px;
}

.institutional-content p {
    color: #bcbcbc;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 18px;
}

.section-subtitle {
    color: #b67a2d;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
}

/*===============================
LISTA
================================*/
.institutional-list {
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.institutional-list .item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.institutional-list span {
    color: #b67a2d;
    font-size: 22px;
}

/*===============================
NÚMEROS
================================*/
.numbers {
    padding: 120px 0;
    background: #141414;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.number-card {
    background: #1c1c1c;
    border-radius: 22px;
    padding: 45px;
    text-align: center;
    transition: .35s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.number-card:hover {
    transform: translateY(-12px);
    border-color: #b67a2d;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, .35);
}

.number-card h2 {
    font-size: 68px;
    color: #b67a2d;
    margin-bottom: 12px;
    font-weight: 600;
}

.number-card span {
    color: #d8d8d8;
    font-size: 18px;
}

/*===============================
MVV
================================*/
.mvv {
    padding: 140px 0;
    background: #0f0f0f;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.mvv-card {
    background: #171717;
    border-radius: 24px;
    padding: 50px 40px;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    background: #b67a2d;
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card:hover {
    transform: translateY(-15px);
    border-color: #b67a2d;
}

.icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #b67a2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 30px;
}

.mvv-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.mvv-card p {
    color: #c7c7c7;
    line-height: 1.8;
}

.mvv-card ul {
    margin-top: 20px;
    list-style: none;
}

.mvv-card li {
    padding: 12px 0;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mvv-card li:last-child {
    border: none;
}

/*===============================
RESPONSIVO
================================*/
@media(max-width:1100px) {
    .institutional-grid {
        grid-template-columns: 1fr;
    }

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

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

    .institutional-image {
        order: 2;
    }

    .institutional-content {
        order: 1;
    }
}

@media(max-width:768px) {
    .institutional {
        padding: 90px 0;
    }

    .institutional-content h2 {
        font-size: 38px;
    }

    .institutional-image img {
        height: 420px;
    }

    .experience {
        left: 20px;
        bottom: 20px;
        width: 150px;
        padding: 20px;
    }

    .experience strong {
        font-size: 46px;
    }

    .institutional-list {
        grid-template-columns: 1fr;
    }

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

    .number-card h2 {
        font-size: 52px;
    }

    .mvv {
        padding: 90px 0;
    }

    .mvv-card {
        padding: 35px;
    }
}

/*======================================
CTA
======================================*/
.cta {
    position: relative;
    padding: 180px 0;
    background: #090909;
    overflow: hidden;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(214, 138, 41, .15),
            transparent 60%),
        url("../images/smoke.png") center/cover;
    opacity: .25;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.cta .subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
}

.cta h2 {
    color: #fff;
    font-size: clamp(42px, 5vw, 54px);
    line-height: 1.1;
    margin: 25px 0;
}

.cta p {
    color: #bdbdbd;
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid #8d5e20;
    color: #fff;
}

.btn-outline:hover {
    background: var(--gold);
    color: #f74242;
}

.cta-bg-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(120px, 18vw, 320px);
    font-weight: 900;
    color: #fff;
    opacity: .03;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 10px;
    z-index: 1;
}

/*======================================
FOOTER
======================================*/
.footer {
    position: relative;
    background: #050505;
    padding: 100px 0 35px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--gold),
            transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.footer-logo-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(214, 138, 41, .28) 0%,
            rgba(214, 138, 41, .12) 35%,
            rgba(214, 138, 41, .03) 65%,
            transparent 80%);
    filter: blur(55px);
    animation: footerGlow 5s ease-in-out infinite;
}

@keyframes footerGlow {
    0% {
        transform: scale(1);
        opacity: .45;
    }

    50% {
        transform: scale(1.08);
        opacity: .75;
    }

    100% {
        transform: scale(1);
        opacity: .45;
    }
}

.footer::after {
    content: "";
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 138, 41, .08), transparent 70%);
    filter: blur(90px);
    pointer-events: none;
}

.footer-brand img {
    max-width: 190px;
    margin-bottom: 30px;
}

.footer-tag {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
}

.footer-brand p {
    color: #bdbdbd;
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 35px;
}

.footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 18px;
}

.footer a {
    color: #bdbdbd;
    transition: .35s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bdbdbd;
    text-align: left;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact i {
    color: var(--gold);
    width: 18px;
}

/*=========================
SOCIAL
=========================*/
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 20px;
    transition: .35s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(214, 138, 41, .35);
}

/*=========================
BOTTOM
=========================*/
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    color: #777;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--gold);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/*=========================
RESPONSIVO
=========================*/
@media(max-width:991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 600px;
    }

    .footer-contact li,
    .footer-contact a {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/*==================================
MARQUEE PREMIUM
==================================*/
.marquee-section {
    background: #050505;
    overflow: hidden;
    position: relative;
    padding: 22px 0;
    border-top: 1px solid rgba(214, 138, 41, .15);
    border-bottom: 1px solid rgba(214, 138, 41, .15);
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 70px;
    min-width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-content i {
    color: var(--gold);
    font-size: 20px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.product-caption {
    margin-top: 10px;
    text-align: center;
}

.caption-line {
    display: block;
    width: 70px;
    height: 2px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg,
            transparent,
            var(--gold),
            transparent);
}

.product-caption p {
    color: #9b9b9b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-caption p i {
    color: var(--gold);
    margin-right: 8px;
}

.product-caption small {
    display: block;
    margin-top: 12px;
    color: #bdbdbd;
    font-size: 14px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(214, 138, 41, .08);
    border: 1px solid rgba(214, 138, 41, .20);
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 18px;
}

/*==================================
POPUP
==================================*/
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    transition: .4s;
    z-index: 99999;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    width: 95%;
    max-width: 760px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 50px;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);
}

.popup::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background:
        radial-gradient(circle at top,
            rgba(214, 138, 41, .12),
            transparent 60%);
    pointer-events: none;
}

.popup-header {
    text-align: center;
    margin-bottom: 40px;
}

.popup-header span {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
}

.popup-header h2 {
    margin: 18px 0;
    font-size: 48px;
    color: #fff;
}

.popup-header p {
    color: #bdbdbd;
}

.popup-close {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #1d1d1d;
    color: #fff;
    cursor: pointer;
    transition: .35s;
}

.popup-close:hover {
    background: var(--gold);
    color: #111;
    transform: rotate(90deg);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #161616;
    color: #fff;
    font-family: var(--font-text);
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 18px rgba(214, 138, 41, .18);
}

textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    margin-top: 15px;
}

.honeypot {
    display: none;
}

@media(max-width:768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .popup {
        padding: 35px 25px;
    }

    .popup-header h2 {
        font-size: 36px;
    }
}

/*==================================
TOAST
==================================*/
.toast {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111;
    color: #fff;
    padding: 18px 25px;
    border-radius: 14px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    transform: translateY(120px);
    opacity: 0;
    transition: .4s;
    z-index: 999999;
}

.toast.active {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    color: var(--gold);
    font-size: 22px;
}

/*==============================
HEADER MOBILE
==============================*/
.mobile-header {
    display: none;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, .97);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-logo {
    margin-bottom: 10px;
}

.mobile-nav-logo img {
    width: 220px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin: 14px 0;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
}

.mobile-nav a:hover {
    color: #d69a2d;
}

.mobile-buttons {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 280px;
}

.mobile-buttons .btn {
    width: 100%;
    text-align: center;
}

.mobile-close {
    position: absolute;
    right: 30px;
    top: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

@media(max-width:991px) {
    header .container {
        display: none;
    }

    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 25px;
        background: rgba(0, 0, 0, .75);
        backdrop-filter: blur(20px);
        z-index: 999;
    }

    .mobile-header img {
        width: 170px;
    }

    .mobile-toggle {
        width: 48px;
        height: 48px;
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    .mobile-toggle span {
        height: 3px;
        background: #d69a2d;
        border-radius: 50px;
        transition: .3s;
    }
}
/*==================================
WHATSAPP FLUTUANTE
==================================*/

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
    transition: .35s ease;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 35px rgba(37, 211, 102, .4);
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, .45), 0 0 0 8px rgba(37, 211, 102, .08);
    }
}
@media (max-width: 768px) {
    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float i {
        font-size: 1.7rem;
    }
}