/********** SAAS PRO THEME **********/
:root {
    --primary: #22c55e;
    --primary-dark: #15803d;
    --accent: #60a5fa;

    --background: #020617;
    --card: #0f172a;

    --text: #f1f5f9;
    --text-light: #94a3b8;

    --border: #1e293b;
}

/********** RESET **********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/********** BODY **********/
body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

body.menu-open{
    overflow:hidden;
}

/* =========================================================
NAVBAR
========================================================= */

.navbar{
    position:fixed;

    top:20px;
    left:0;

    width:100%;

    z-index:999;
    
    padding:0 5%;
}

/* CONTAINER */
.navbar-container{
    max-width:1320px;

    height:76px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 24px;

    border-radius:24px;

    background:
    rgba(8,8,8,.72);

    backdrop-filter:
    blur(18px);

    border:
    1px solid rgba(255,255,255,.06);

    box-shadow:
    0 10px 40px rgba(0,0,0,.28);
}

/* =========================================================
LOGO
========================================================= */

.navbar-logo{
    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;
}

/* IMG */
.navbar-logo img{
    width:42px;
    height:42px;
    border-radius: 10px;
    object-fit:contain;
}

/* TEXT */
.navbar-logo span{
    color:#fff;

    font-size:22px;
    font-weight:800;

    letter-spacing:-1px;
}

/* =========================================================
MENU
========================================================= */

.navbar-menu{
    display:flex;
    align-items:center;
    gap:34px;

    list-style:none;
}

/* LINKS */
.navbar-menu a{
    position:relative;

    color:#cbd5e1;

    text-decoration:none;

    font-size:14px;
    font-weight:600;

    transition:.25s ease;
}

/* HOVER */
.navbar-menu a:hover{
    color:#fff;
}

/* UNDERLINE */
.navbar-menu a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    border-radius:999px;

    background:#31aa35;

    transition:.3s ease;
}

.navbar-menu a:hover::after{
    width:100%;
}

/* =========================================================
ACTIONS
========================================================= */

.navbar-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

/* LOGIN */
.navbar-login{
    color:#cbd5e1;

    text-decoration:none;

    font-size:14px;
    font-weight:600;

    transition:.25s ease;
}

.navbar-login:hover{
    color:#fff;
}

/* CTA */
.navbar-cta{
    height:48px;

    padding:0 22px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #31aa35,
        #49d84f
    );

    color:#fff;

    font-size:14px;
    font-weight:700;

    transition:.3s ease;

    box-shadow:
    0 14px 30px rgba(49,170,53,.22);
}

.navbar-cta:hover{
    transform:
    translateY(-3px);

    box-shadow:
    0 18px 35px rgba(49,170,53,.32);
}

/* =========================================================
MOBILE BUTTON
========================================================= */

.navbar-toggle{
    display:none;

    width:48px;
    height:48px;

    border:none;
    outline:none;

    cursor:pointer;

    border-radius:14px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.06);
}

.navbar-toggle span{
    display:block;

    width:20px;
    height:2px;

    margin:5px auto;

    border-radius:999px;

    background:#fff;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px){

    .navbar{
        top:14px;
    }

    .navbar-container{
        height:72px;

        padding:0 18px;
    }

    .navbar-menu{
        display:none;
    }

    .navbar-login{
        display:none;
    }

    .navbar-toggle{
        display:block;
    }

}

@media(max-width:768px){

    .navbar{
        padding:0 4%;
    }

    .navbar-container{
        border-radius:20px;
    }

    .navbar-logo span{
        font-size:20px;
    }

    .navbar-cta{
        display:none;
    }

}

/********** HERO **********/
/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 100px;
    background:
        radial-gradient(circle at top left, rgba(49,170,53,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,255,150,.08), transparent 30%),
        #050816;
}

/* BG */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 90%);
}

/* CONTAINER */
.hero-container {
    width: min(1400px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

    position: relative;
    z-index: 2;
}

/* LEFT */
.hero-content {
    max-width: 650px;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 999px;

    color: #dbeafe;
    font-size: 14px;

    backdrop-filter: blur(10px);

    margin-bottom: 30px;
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #31aa35;

    box-shadow: 0 0 20px #31aa35;
}

/* TITLE */
.hero-title {
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 700;

    color: white;

    margin-bottom: 25px;
}

.hero-title span {
    color: #31aa35;
}

/* DESCRIPTION */
.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #94a3b8;

    margin-bottom: 40px;

    max-width: 580px;
}

/* BUTTONS */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;

    margin-bottom: 50px;
}

.hero-btn-primary,
.hero-btn-secondary {
    height: 58px;
    padding: 0 28px;

    border-radius: 16px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    font-weight: 700;

    transition: .25s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #31aa35, #00ff88);
    color: #03120a;

    box-shadow: 0 15px 40px rgba(49,170,53,.25);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
}

.hero-btn-secondary {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: white;

    backdrop-filter: blur(12px);
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-size: 26px;
    color: white;
}

.hero-stat span {
    color: #64748b;
    font-size: 14px;
}

/* RIGHT */
.hero-visual {
    position: relative;
}

.hero-dashboard {
    position: relative;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 28px;

    overflow: hidden;

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.5),
        0 0 80px rgba(49,170,53,.08);
}

/* TOP */
.hero-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 22px;

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.hero-dots-ui {
    display: flex;
    gap: 8px;
}

.hero-dots-ui span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

/* LIVE */
.hero-live {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #cbd5e1;
    font-size: 13px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;

    box-shadow: 0 0 15px #00ff88;
}

/* IMAGE */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    display: block;
}

/* MINI CARDS */
.hero-mini-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 14px;

    background: rgba(8,12,22,.85);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    padding: 14px 18px;

    border-radius: 18px;

    color: white;

    box-shadow: 0 10px 40px rgba(0,0,0,.4);
}

.hero-mini-card strong {
    display: block;
    font-size: 18px;
}

.hero-mini-card span {
    font-size: 13px;
    color: #94a3b8;
}

.hero-mini-card-1 {
    top: 30px;
    left: -40px;
}

.hero-mini-card-2 {
    bottom: 30px;
    right: -40px;
}

.mini-icon {
    width: 44px;
    height: 44px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(49,170,53,.12);

    color: #31aa35;
}

/* RESPONSIVO */
@media (max-width: 991px) {

    .hero {
        padding-top: 110px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .hero-mini-card-1 {
        left: 10px;
    }

    .hero-mini-card-2 {
        right: 10px;
    }

}

/* LAYOUT */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ========================= */
/* CAROUSEL */
/* ========================= */

.hero-carousel {
    max-width: 520px;
    position: relative;
}

.hero-slide {
    display: none;
    animation: fade 0.6s ease;
}

.hero-slide.active {
    display: block;
}

.hero-slide h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-slide h1 span {
    color: var(--primary);
}

.hero-slide p {
    color:  var(--text-light);
    margin-bottom: 30px;
}

/* CTA */
.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.hero-btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
}

.hero-btn-secondary {
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
}

/* DOTS */
.hero-dots {
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
}

/* ========================= */
/* LOGO AREA */
/* ========================= */

.hero-logo-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DASHBOARD */
.hero-dashboard {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 520px;

    box-shadow: 
        0 40px 120px rgba(0,0,0,0.6),
        0 10px 40px rgba(0,0,0,0.4);

    transform: perspective(1000px) rotateY(-8deg);
    transition: 0.4s;
}

.hero-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* IMG */
.hero-dashboard img {
    width: 100%;
    display: block;
}

/* OVERLAY GRADIENT */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(2,6,23,0.8),
        rgba(2,6,23,0.2)
    );
}

/* TAGS */
.hero-tags {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-tags span {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

/* GLOW */
.hero-logo-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 70%);
    filter: blur(90px);
    z-index: -1;
}
/* GLOW EFFECT */
.hero-logo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(49,170,53,0.3), transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

/* ANIMATION */
@keyframes fade {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media(max-width: 900px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-carousel {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-logo img {
        width: 90px;
    }

}

/********** BUTTONS **********/
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 10px 30px rgba(34,197,94,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/********** CARDS **********/
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/********** FEATURES **********/
.features{
    position:relative;

    /* padding:110px 5%; */

    background:
    linear-gradient(
        #020617
    );

    overflow:hidden;
}

/* CONTAINER */
.features-container{
    max-width:1250px;
    margin:auto;
    max-height: 1000px;
}

/* =========================================================
HEADER
========================================================= */

.features-header{
    max-width:760px;

    margin:0 auto 70px;

    text-align:center;
}

/* BADGE */
.features-badge{
    width:fit-content;

    margin:0 auto 22px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    color:#d1d5db;

    font-size:13px;
    font-weight:600;
}

.badge-dot{
    width:8px;
    height:8px;

    border-radius:50%;

    background:#31aa35;

    box-shadow:
    0 0 15px #31aa35;
}

/* TITLE */
.features-header h2{
    font-size:clamp(34px,4vw,58px);

    line-height:1.05;

    letter-spacing:-2px;

    color:#fff;

    font-weight:900;

    margin-bottom:20px;
}

/* TEXT */
.features-header p{
    max-width:650px;

    margin:auto;

    color:#94a3b8;

    font-size:16px;

    line-height:1.8;
}

/* =========================================================
GRID
========================================================= */

.features-grid{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:24px;
}

/* =========================================================
CARD
========================================================= */

.feature-card{
    position:relative;

    display:flex;
    gap:24px;

    padding:34px;

    border-radius:30px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:
    1px solid rgba(255,255,255,.06);

    transition:.35s ease;

    overflow:hidden;
}

/* HOVER */
.feature-card:hover{
    transform:
    translateY(-8px);

    border-color:
    rgba(49,170,53,.25);

    background:
    linear-gradient(
        180deg,
        rgba(49,170,53,.08),
        rgba(255,255,255,.02)
    );

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);
}

/* ICON */
.feature-icon{
    min-width:68px;
    height:68px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:
    rgba(49,170,53,.10);

    color:#31aa35;

    font-size:28px;
}

/* TAG */
.feature-tag{
    display:inline-flex;

    margin-bottom:16px;

    padding:8px 14px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.06);

    color:#d1d5db;

    font-size:12px;
    font-weight:600;
}

/* TITLE */
.feature-content h3{
    color:#fff;

    font-size:24px;

    line-height:1.2;

    font-weight:800;

    margin-bottom:14px;
}

/* TEXT */
.feature-content p{
    color:#94a3b8;

    font-size:15px;

    line-height:1.8;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px){

    .features-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .features{
        padding:90px 5%;
    }

    .features-header{
        margin-bottom:50px;
    }

    .features-header h2{
        font-size:38px;
    }

    .feature-card{
        flex-direction:column;

        padding:28px;
    }

    .feature-content h3{
        font-size:22px;
    }

}

/********** SECTION HEADER **********/
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: var(--text-light);
}

/********** HOW IT WORKS **********/
.how-it-works {
    padding: 80px 30px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.step {
    position: relative;
    padding: 25px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-line {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: rgba(0,0,0,0.08);
}

.step:last-child .step-line {
    display: none;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.6;
}

.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(49,170,53,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 16px;
    height: 16px;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.92rem;
    color: #666;
}

/* CTA */
.how-cta {
    text-align: center;
    margin-top: 60px;
}

/* CTA */
.how-cta {
    text-align: center;
    margin-top: 50px;
}

/* =========================================================
APP PREVIEW — CLEAN PREMIUM
========================================================= */

.app-preview-section{
    position:relative;
    overflow:hidden;

    /* padding:10px 5%; */

    background:
    radial-gradient(circle at top left,
    rgba(49,170,53,.10),
    transparent 25%),

    #050505;
}

/* WRAPPER */
.preview-wrapper{
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns: .95fr 1.05fr;

    gap:70px;
    align-items:center;
}

/* =========================================================
LEFT
========================================================= */

.preview-left{
    max-width:540px;
}

/* BADGE */
.preview-badge{
    width:fit-content;

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    color:#d1d5db;

    font-size:13px;
    font-weight:600;

    margin-bottom:24px;
}

.preview-badge i{
    color:#31aa35;
}

/* TITLE */
.preview-left h2{
    font-size:clamp(44px,4vw,72px);

    line-height:.95;

    letter-spacing:-3px;

    font-weight:900;

    color:#fff;

    margin-bottom:20px;
}

.preview-left h2 span{
    color:#31aa35;
}

/* DESC */
.preview-left p{
    color:#94a3b8;

    font-size:17px;

    line-height:1.8;

    margin-bottom:30px;
}

/* BENEFITS */
.preview-benefits{
    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin-bottom:34px;
}

.preview-benefit{
    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 16px;

    border-radius:14px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    color:#dbe4ee;

    font-size:13px;
    font-weight:600;
}

.preview-benefit i{
    color:#31aa35;
}

/* BUTTONS */
.preview-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.preview-btn-primary,
.preview-btn-secondary{
    height:56px;

    padding:0 24px;

    border-radius:18px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:14px;
    font-weight:700;

    transition:.25s ease;
}

.preview-btn-primary{
    background:
    linear-gradient(135deg,#31aa35,#49d84f);

    color:#fff;

    box-shadow:
    0 20px 40px rgba(49,170,53,.25);
}

.preview-btn-primary:hover{
    transform:translateY(-3px);
}

.preview-btn-secondary{
    color:#fff;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);
}

/* =========================================================
RIGHT
========================================================= */

.preview-right{
    position:relative;

    min-height:760px;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* PHONE */
.preview-phone{
    position:absolute;

    overflow:hidden;

    border-radius:36px;

    background:#0b0b0b;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 35px 80px rgba(0,0,0,.45);

    transition:.3s ease;
}

/* IMG */
.preview-phone img{
    width:100%;
    display:block;
}

/* MAIN */
.preview-phone-main{
    width:360px;

    z-index:5;
}

/* TOP */
.preview-phone-top{
    width:240px;

    top:20px;
    left:0;

    opacity:.9;
}

/* BOTTOM */
.preview-phone-bottom{
    width:250px;

    right:0;
    bottom:20px;

    opacity:.9;
}

/* HOVER */
.preview-phone:hover{
    transform:translateY(-6px);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .preview-wrapper{
        grid-template-columns:1fr;

        gap:60px;
    }

    .preview-left{
        max-width:100%;

        text-align:center;
    }

    .preview-badge{
        margin-inline:auto;
    }

    .preview-left p{
        max-width:700px;

        margin-inline:auto;
    }

    .preview-benefits{
        justify-content:center;
    }

    .preview-actions{
        justify-content:center;
    }

    .preview-right{
        min-height:650px;
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    /* ESCONDE VISUAL */
    .preview-right{
        display:none;
    }

    /* AJUSTA TEXTO */
    .preview-wrapper{
        grid-template-columns:1fr;
    }

    .preview-left{
        max-width:100%;
        text-align:center;
    }

    .preview-badge{
        margin-inline:auto;
    }

    .preview-left p{
        margin-inline:auto;
    }

    .preview-benefits{
        justify-content:center;
    }

    .preview-actions{
        justify-content:center;
    }

}

/********** TESTIMONIALS **********/
.testimonials{
    position:relative;

    padding:110px 5%;

    background:
    linear-gradient(
        #020617
    );

    overflow:hidden;
}

/* CONTAINER */
.testimonials-container{
    max-width:1200px;
    margin:auto;
}

/* =========================================================
HEADER
========================================================= */

.testimonials-header{
    max-width:760px;

    margin:0 auto 70px;

    text-align:center;
}

/* BADGE */
.testimonials-badge{
    width:fit-content;

    margin:0 auto 22px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    color:#d1d5db;

    font-size:13px;
    font-weight:600;
}

.badge-dot{
    width:8px;
    height:8px;

    border-radius:50%;

    background:#31aa35;

    box-shadow:
    0 0 15px #31aa35;
}

/* TITLE */
.testimonials-header h2{
    font-size:clamp(34px,4vw,58px);

    line-height:1.05;

    letter-spacing:-2px;

    color:#fff;

    font-weight:900;

    margin-bottom:20px;
}

/* TEXT */
.testimonials-header p{
    max-width:650px;

    margin:auto;

    color:#94a3b8;

    font-size:16px;

    line-height:1.8;
}

/* =========================================================
METRICS
========================================================= */

.testimonials-metrics{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:24px;
}

/* CARD */
.metric-card{
    position:relative;

    padding:32px;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:
    1px solid rgba(255,255,255,.06);

    transition:.35s ease;

    overflow:hidden;
}

/* HOVER */
.metric-card:hover{
    transform:
    translateY(-8px);

    border-color:
    rgba(49,170,53,.25);

    background:
    linear-gradient(
        180deg,
        rgba(49,170,53,.08),
        rgba(255,255,255,.02)
    );

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);
}

/* ICON */
.metric-icon{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;

    border-radius:18px;

    background:
    rgba(49,170,53,.10);

    color:#31aa35;

    font-size:24px;
}

/* TITLE */
.metric-content h3{
    color:#fff;

    font-size:22px;

    font-weight:800;

    margin-bottom:14px;
}

/* TEXT */
.metric-content p{
    color:#94a3b8;

    font-size:15px;

    line-height:1.7;
}

/* =========================================================
CTA
========================================================= */

.testimonials-cta{
    margin-top:55px;

    display:flex;
    justify-content:center;
}

/* BUTTON */
.testimonials-btn{
    height:56px;

    padding:0 30px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #31aa35,
        #49d84f
    );

    color:#fff;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:.3s ease;

    box-shadow:
    0 20px 40px rgba(49,170,53,.25);
}

.testimonials-btn:hover{
    transform:
    translateY(-4px);

    box-shadow:
    0 28px 55px rgba(49,170,53,.35);
}

/* =========================================================
RESPONSIVE
========================================================= */


@media(max-width: 992px){

    .testimonials-metrics{
        display:flex;
        flex-direction:column;

        gap:18px;
    }

    .metric-card{
        width:100%;
    }

}

@media(max-width: 768px){

    .testimonials{
        padding:70px 5%;
    }

    .testimonials-container{
        width:100%;
    }

    .testimonials-header{
        text-align:center;

        margin-bottom:35px;
    }

    .testimonials-header h2{
        font-size:32px;
        line-height:1.15;

        letter-spacing:-1px;
    }

    .testimonials-header p{
        font-size:15px;
        line-height:1.7;
    }

    /* STACK CARDS */
    .testimonials-metrics{
        display:flex;
        flex-direction:column;

        width:100%;

        gap:16px;
    }

    .metric-card{
        width:100%;

        flex-direction:column;
        align-items:flex-start;

        padding:22px;

        border-radius:22px;
    }

    .metric-icon{
        width:54px;
        height:54px;

        min-width:54px;

        font-size:20px;
    }

    .metric-content{
        width:100%;
    }

    .metric-content h3{
        font-size:18px;
        margin-bottom:8px;
    }

    .metric-content p{
        font-size:14px;
        line-height:1.6;
    }

    .testimonials-cta{
        margin-top:28px;
    }

    .testimonials-btn{
        width:100%;
        max-width:100%;
    }

}

@media(max-width:480px){

    .testimonials-header h2{
        font-size:28px;
    }

    .metric-card{
        padding:20px;
    }

}

/********** CTA **********/
.download-cta {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.download-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.download-cta p {
    max-width: 500px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.8);
}

/* BOTÃO */
.app-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    padding: 14px 18px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    color: #fff;
    text-decoration: none;

    transition: all 0.25s ease;

    max-width: 320px;
    margin: 0 auto;
}

.app-btn:hover {
    transform: translateY(-2px);
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.4);
}

.app-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.app-btn-text {
    flex: 1;
    text-align: left;
}

.app-btn-small {
    font-size: 12px;
    color: #94a3b8;
}

.app-btn-large {
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
}

.app-btn-arrow {
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.app-btn:hover .app-btn-arrow {
    transform: translateX(4px);
    color: #22c55e;
}

/* NOTA */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #e2e8f0;
    font-size: 14px;

    backdrop-filter: blur(10px);

    transition: all 0.2s ease;
}

.cta-feature:hover {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.08);
    transform: translateY(-2px);
}

.cta-icon {
    color: #22c55e;
    flex-shrink: 0;
}

/* =========================================================
FOOTER — PREMIUM CLEAN
========================================================= */

.footer{
    position:relative;

    padding:90px 5% 35px;

    background:
    linear-gradient(
        180deg,
        #050505 0%,
        #020202 100%
    );

    border-top:
    1px solid rgba(255,255,255,.05);

    overflow:hidden;
}

/* CONTAINER */
.footer-container{
    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    gap:80px;
}

/* =========================================================
BRAND
========================================================= */

.footer-brand{
    max-width:420px;
}

/* LOGO */
.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;

    width:fit-content;

    margin-bottom:22px;

    text-decoration:none;
}

.footer-logo img{
    width:46px;
    height:46px;

    object-fit:contain;
}

.footer-logo span{
    color:#fff;

    font-size:24px;
    font-weight:800;

    letter-spacing:-1px;
}

/* TEXT */
.footer-brand p{
    color:#94a3b8;

    line-height:1.8;

    font-size:15px;

    margin-bottom:28px;
}

/* SOCIAL */
.footer-social{
    display:flex;
    gap:14px;
}

.footer-social-link{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    text-decoration:none;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    color:#fff;

    font-size:18px;

    transition:.3s ease;
}

.footer-social-link:hover{
    transform:
    translateY(-4px);

    background:
    rgba(49,170,53,.12);

    border-color:
    rgba(49,170,53,.25);

    color:#31aa35;
}

/* =========================================================
LINKS
========================================================= */

.footer-links{
    display:flex;
    gap:70px;
}

/* COLUMN */
.footer-column{
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* TITLE */
.footer-column h4{
    color:#fff;

    font-size:16px;
    font-weight:700;

    margin-bottom:12px;
}

/* LINKS */
.footer-column a{
    color:#94a3b8;

    text-decoration:none;

    font-size:14px;

    transition:.25s ease;
}

.footer-column a:hover{
    color:#31aa35;

    transform:
    translateX(4px);
}

/* =========================================================
BOTTOM
========================================================= */

.footer-bottom{
    max-width:1300px;

    margin:60px auto 0;

    padding-top:25px;

    border-top:
    1px solid rgba(255,255,255,.06);

    display:flex;
    justify-content:space-between;
    gap:20px;

    flex-wrap:wrap;
}

.footer-bottom p{
    color:#64748b;

    font-size:13px;
}

.footer-bottom a{
    color:#31aa35;

    text-decoration:none;

    font-weight:600;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px){

    .footer-container{
        flex-direction:column;
        gap:50px;
    }

    .footer-links{
        width:100%;

        justify-content:space-between;

        gap:30px;

        flex-wrap:wrap;
    }

}

@media(max-width:768px){

    .footer{
        padding:70px 5% 30px;
    }

    .footer-logo span{
        font-size:22px;
    }

    .footer-brand p{
        font-size:14px;
    }

    .footer-links{
        flex-direction:column;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}

/********** RESPONSIVE **********/
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* CONTAINER */
.devices {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

/* BASE */
.device {
    position: absolute;
    transition: all 0.4s ease;
}

.device img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* CLIENTES */
.clients-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
    opacity: 0.7;
}

.clients-logos img {
    height: 40px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.clients-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* MÉTRICAS */
.testimonials-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    text-align: center;
}

.metric h3 {
    font-size: 2rem;
    color: var(--primary);
}

.metric p {
    font-size: 0.9rem;
    color: #666;
}

/* CARDS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #888;
}

.contact {
    padding: 100px 6%;
    background:  #020617;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* INFO */
.contact-info h2 {
    font-size: 2rem;
    margin: 15px 0;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: #111;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(34,197,94,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* FORM */
.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: #020617;
    border: 1px solid var(--border);
    color: var(--text);
    outline: none;
    font-size: 0.9rem;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    padding: 0 5px;
    font-size: 0.8rem;
    color: #999;
    transition: 0.2s;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -6px;
    font-size: 0.7rem;
    color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media(max-width: 900px){
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.about {
    padding: 120px 6%;
}

.about-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.about-header h1 {
    font-size: 2.8rem;
    margin: 15px 0;
}

.about-header h1 span {
    color: var(--primary);
}

.about-header p {
    color: var(--text-light);
}

/* CONTAINER DO LOGO */
.about-logo-box {
    width: 500px;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;
}

/* IMAGEM */
.about-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .about-logo-box {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .about-logo-box {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .about-logo-box {
        width: 220px;
        height: 220px;
    }
}

/* MAIN */
.about-main {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* VISUAL */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-card {
    background: var(--card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.about-card img {
    width: 120px;
}

.about-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* METRICS */
.about-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 80px 0;
}

.about-metrics .metric h3 {
    font-size: 2rem;
    color: var(--primary);
}

.about-metrics .metric p {
    color: var(--text-light);
}

/* MISSION */
.about-mission {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.about-mission h2 {
    margin-bottom: 10px;
}

/* DIFFERENTIAL */
.about-diff {
    margin-top: 80px;
    text-align: center;
}

.diff-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.diff-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 16px;
}

/* CTA */
.about-cta {
    margin-top: 80px;
    text-align: center;
}

/* RESPONSIVO */
@media(max-width: 900px){
    .about-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-metrics {
        flex-direction: column;
        gap: 30px;
    }
}

/* ===================================================
FIGHT CLUB SHOW
=================================================== */

/* =========================================================
FIGHT BANNER
========================================================= */

.fight-banner{
    position: relative;
    overflow: hidden;
    background: #020617;
}

/* CONTAINER */

.fight-inner{
    position: relative;

    max-width: 1500px;
    margin: auto;

    min-height: 720px;

    border: 1px solid rgba(255,255,255,.08);

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.96) 0%,
        rgba(2,6,23,.94) 45%,
        rgba(2,6,23,.45) 100%
    );

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
}

/* =========================================================
FX
========================================================= */

.fight-overlay{
    position: absolute;
    inset: 0;

    background:
    radial-gradient(circle at right, rgba(255,0,0,.18), transparent 38%);
}

.fight-red-light{
    position: absolute;

    right: -150px;
    top: 50%;

    width: 700px;
    height: 700px;

    background: rgba(255,0,0,.18);

    filter: blur(130px);

    transform: translateY(-50%);
}

/* =========================================================
LEFT
========================================================= */

.fight-left{
    position: relative;
    z-index: 2;

    padding: 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TAG */

.fight-tag{
    width: fit-content;

    padding: 10px 22px;

    border-radius: 999px;

    border: 1px solid rgba(255,0,0,.45);

    background: rgba(255,0,0,.08);

    backdrop-filter: blur(10px);

    color: #ff3b3b;

    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 3px;

    margin-bottom: 28px;
}

/* =========================================================
TITLE
========================================================= */

.fight-heading{
    display: flex;
    align-items: center;
    gap: 24px;
}

.fight-icon{
    flex-shrink: 0;

    width: 110px;
    height: 110px;

    border-radius: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(
        135deg,
        rgba(255,0,0,.25),
        rgba(255,0,0,.05)
    );

    border: 1px solid rgba(255,0,0,.25);

    color: #ff2d2d;

    font-size: 3rem;

    box-shadow:
    inset 0 0 40px rgba(255,0,0,.08),
    0 0 40px rgba(255,0,0,.08);
}

.fight-heading h2{
    margin: 0;

    font-size: clamp(3rem, 5vw, 5.6rem);

    line-height: .88;
    font-weight: 1000;

    text-transform: uppercase;
}

.fight-red{
    color: #ff2d2d;
}

.fight-white{
    color: white;
}

.fight-heading p{
    margin-top: 16px;

    color: rgba(255,255,255,.78);

    font-size: 1rem;
    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}

/* =========================================================
LINE
========================================================= */

.fight-line{
    width: 110px;
    height: 4px;

    border-radius: 999px;

    margin: 38px 0;

    background:
    linear-gradient(
        90deg,
        #ff2d2d,
        transparent
    );
}

/* =========================================================
TEXT
========================================================= */

.fight-text{
    max-width: 620px;

    color: rgba(255,255,255,.74);

    font-size: 1.12rem;
    line-height: 2;

    margin-bottom: 44px;
}

/* =========================================================
CARDS
========================================================= */

.fight-cards{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 14px;

    width: 100%;
    max-width: 560px;

    margin-bottom: 42px;
}

/* CARD */

.fight-card{
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 18px;

    border-radius: 18px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.015)
    );

    border: 1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(10px);

    overflow: hidden;

    transition: .3s ease;
}

.fight-card:hover{
    transform: translateY(-4px);

    border-color: rgba(255,0,0,.3);

    background:
    linear-gradient(
        180deg,
        rgba(255,0,0,.10),
        rgba(255,255,255,.02)
    );

    box-shadow:
    0 0 35px rgba(255,0,0,.12);
}

/* LEFT BAR */

.fight-card::before{
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background:
    linear-gradient(
        180deg,
        #ff2d2d,
        #990000
    );
}

/* ICON */

.fight-card i{
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(
        135deg,
        rgba(255,0,0,.18),
        rgba(255,0,0,.04)
    );

    border: 1px solid rgba(255,0,0,.15);

    color: #ff3b3b;

    font-size: 1.15rem;
}

/* TEXT */

.fight-card span{
    color: white;

    font-size: .88rem;
    font-weight: 800;

    line-height: 1.4;

    text-transform: uppercase;
    letter-spacing: .5px;
}

/* =========================================================
BUTTONS
========================================================= */

.fight-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.fight-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 64px;

    padding: 0 34px;

    border-radius: 18px;

    background:
    linear-gradient(
        135deg,
        #ff1e1e,
        #b80000
    );

    color: white;
    text-decoration: none;

    font-size: .95rem;
    font-weight: 900;
    letter-spacing: 1px;

    transition: .3s ease;

    box-shadow:
    0 10px 40px rgba(255,0,0,.18);
}

.fight-primary:hover{
    transform: translateY(-4px);
}

.fight-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 64px;

    padding: 0 30px;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.02);

    color: white;
    text-decoration: none;

    font-weight: 800;

    transition: .3s ease;
}

.fight-secondary:hover{
    border-color: rgba(255,0,0,.35);

    background: rgba(255,0,0,.05);
}

/* =========================================================
RIGHT
========================================================= */

.fight-right{
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* IMAGE */

.fight-right img{
    position: absolute;

    right: -80px;
    bottom: 0;

    height: 100%;
    max-height: 780px;

    object-fit: contain;

    filter:
    drop-shadow(0 0 90px rgba(255,0,0,.22));
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width: 1400px){

    .fight-left{
        padding: 70px 60px;
    }

    .fight-right img{
        right: -140px;
    }

}

@media(max-width: 1200px){

    .fight-inner{
        grid-template-columns: 1fr;
    }

    .fight-left{
        padding: 70px 50px;
    }

    .fight-right{
        min-height: 620px;
    }

    .fight-right img{
        position: relative;

        right: auto;

        width: 100%;
        max-width: 700px;
        height: auto;
    }

}

@media(max-width: 768px){

    .fight-inner{
        min-height: auto;
    }

    .fight-left{
        padding: 50px 24px;
    }

    .fight-heading{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .fight-icon{
        width: 84px;
        height: 84px;

        font-size: 2.3rem;

        border-radius: 22px;
    }

    .fight-heading h2{
        font-size: clamp(2.4rem, 12vw, 4rem);

        line-height: .92;
    }

    .fight-heading p{
        font-size: .82rem;

        letter-spacing: 2px;
    }

    .fight-line{
        margin: 28px 0;
    }

    .fight-text{
        font-size: 1rem;
        line-height: 1.8;

        margin-bottom: 34px;
    }

    .fight-cards{
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .fight-card{
        padding: 14px 16px;
    }

    .fight-card i{
        width: 42px;
        height: 42px;

        font-size: 1rem;
    }

    .fight-card span{
        font-size: .82rem;
    }

    .fight-buttons{
        flex-direction: column;
    }

    .fight-primary,
    .fight-secondary{
        width: 100%;
    }

    .fight-right{
        min-height: auto;

        padding: 20px 20px 0;
    }

    .fight-right img{
        max-width: 100%;
    }

    .fight-red-light{
        width: 420px;
        height: 420px;

        filter: blur(90px);
    }

}

@media(max-width: 480px){

    .fight-left{
        padding: 42px 18px;
    }

    .fight-heading p{
        font-size: .72rem;
    }

    .fight-text{
        font-size: .95rem;
    }

    .fight-primary,
    .fight-secondary{
        min-height: 58px;

        font-size: .82rem;

        padding: 0 20px;
    }

    .fight-card{
        border-radius: 16px;
    }

}

/* =========================================================
MOBILE FIXES — RESPONSIVIDADE PREMIUM
ADD NO FINAL DO CSS
========================================================= */

@media(max-width: 768px){

    .fight-banner{
        overflow: hidden;
    }

    .fight-inner{
        grid-template-columns: 1fr;

        min-height: auto;

        border-radius: 0;
    }

    /* BG FX */

    .fight-overlay{
        background:
        radial-gradient(
            circle at top,
            rgba(255,0,0,.16),
            transparent 55%
        );
    }

    .fight-red-light{
        width: 340px;
        height: 340px;

        top: 0;
        right: -120px;

        transform: none;

        filter: blur(80px);
    }

    /* LEFT */

    .fight-left{
        width: 100%;

        padding:
        50px
        22px
        20px;
    }

    /* TITLE */

    .fight-heading{
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;
    }

    .fight-icon{
        width: 78px;
        height: 78px;

        border-radius: 20px;

        font-size: 2rem;
    }

    .fight-heading h2{
        font-size: clamp(2.2rem, 12vw, 4rem);

        line-height: .95;
    }

    .fight-heading p{
        margin-top: 10px;

        font-size: .72rem;

        letter-spacing: 2px;

        line-height: 1.6;
    }

    /* TEXT */

    .fight-line{
        width: 70px;

        margin: 24px 0;
    }

    .fight-text{
        max-width: 100%;

        font-size: .96rem;
        line-height: 1.8;

        margin-bottom: 30px;
    }

    /* CARDS */

    .fight-cards{
        grid-template-columns: 1fr;

        gap: 12px;

        width: 100%;
        max-width: 100%;

        margin-bottom: 30px;
    }

    .fight-card{
        padding: 14px 14px;

        border-radius: 16px;

        gap: 12px;
    }

    .fight-card i{
        width: 42px;
        height: 42px;

        border-radius: 12px;

        font-size: 1rem;
    }

    .fight-card span{
        font-size: .78rem;

        line-height: 1.5;

        letter-spacing: .4px;
    }

    /* BUTTONS */

    .fight-buttons{
        flex-direction: column;

        width: 100%;

        gap: 14px;
    }

    .fight-primary,
    .fight-secondary{
        width: 100%;

        min-height: 58px;

        border-radius: 16px;

        justify-content: center;

        text-align: center;

        padding: 0 18px;

        font-size: .78rem;

        line-height: 1.4;
    }

    /* IMAGE */

    .fight-right{
        min-height: auto;

        padding:
        10px
        20px
        0;

        align-items: flex-end;
    }

    .fight-right img{
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;
        max-width: 420px;

        height: auto;

        margin: auto;

        display: block;

        object-fit: contain;

        filter:
        drop-shadow(0 0 60px rgba(255,0,0,.18));
    }

}

/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media(max-width: 480px){

    .fight-left{
        padding:
        42px
        18px
        10px;
    }

    .fight-tag{
        padding: 8px 16px;

        font-size: .62rem;

        letter-spacing: 2px;
    }

    .fight-heading h2{
        font-size: 2rem;
    }

    .fight-heading p{
        font-size: .66rem;
    }

    .fight-text{
        font-size: .9rem;
    }

    .fight-card{
        min-height: 68px;
    }

    .fight-card span{
        font-size: .72rem;
    }

    .fight-primary,
    .fight-secondary{
        min-height: 54px;

        font-size: .72rem;

        padding: 0 14px;
    }

    .fight-right{
        padding: 0 12px;
    }

    .fight-right img{
        max-width: 340px;
    }

}


