:root {
    --black: #080808;
    --black-soft: #111111;
    --white: #ffffff;
    --gray: #a5a5a5;
    --orange: #ffa51f;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}


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

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span,
.footer-logo span {
    color: var(--orange);
}

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

.nav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d0d0d0;
    transition: 0.3s;
}

.nav a:hover {
    color: var(--orange);
}

.nav-button {
    padding: 12px 22px;
    background: var(--orange);
    color: var(--black);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;

    transition: 0.3s;
}

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


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

.hero {
    min-height: 100vh;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 140px 7% 100px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 165, 31, 0.12),
            transparent 32%
        ),
        #080808;
}

.hero-background-number {
    position: absolute;

    top: 50%;
    left: 50%;

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

    font-size: min(75vw, 950px);

    font-weight: 900;

    line-height: 0.8;

    color: transparent;

    -webkit-text-stroke: 2px rgba(255, 165, 31, 0.08);

    user-select: none;

    z-index: 0;

    pointer-events: none;
}

.hero-lines {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    opacity: 0.25;

    background-image:
        linear-gradient(
            90deg,
            transparent 49.9%,
            rgba(255, 255, 255, 0.04) 50%,
            transparent 50.1%
        ),
        linear-gradient(
            transparent 49.9%,
            rgba(255, 255, 255, 0.04) 50%,
            transparent 50.1%
        );

    background-size: 100px 100px;

    z-index: 0;

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 1200px;

    animation: heroAppear 1s ease forwards;
}

.hero-tag {
    display: inline-block;

    margin-bottom: 28px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 5px;
}

.hero h1 {
    margin-bottom: 30px;

    font-size: clamp(55px, 9vw, 125px);

    font-weight: 900;

    line-height: 0.88;

    letter-spacing: -6px;

    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 650px;

    margin: 0 auto 42px;

    color: #a8a8a8;

    font-size: clamp(16px, 2vw, 20px);

    line-height: 1.6;
}

.hero-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.hero-bottom {
    position: absolute;

    left: 6%;
    right: 6%;
    bottom: 30px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    color: #555;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    z-index: 5;
}

.hero-scroll {
    color: var(--orange);
}


/* =========================================
   ANIMAÇÃO
   ========================================= */

@keyframes heroAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   BOTÕES
   ========================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: 0.3s;
}

.button-primary {
    background: var(--orange);
    color: var(--black);
}

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

    box-shadow:
        0 10px 35px rgba(255, 165, 31, 0.2);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);

    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}


/* =========================================
   COMPETIÇÕES
   ========================================= */

.competitions-section {
    position: relative;

    padding: 140px 6%;

    background: var(--black);

    overflow: hidden;
}


/* Cabeçalho */

.competitions-heading {
    max-width: 1000px;

    margin: 0 auto 65px;

    text-align: center;
}

.section-label {
    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.competitions-heading h2 {
    margin-bottom: 25px;

    font-size: clamp(42px, 6vw, 80px);

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;
}

.competitions-heading h2 span {
    display: block;

    color: var(--orange);
}

.competitions-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #8f8f8f;

    font-size: 17px;
}


/* =========================================
   GRID — AQUI ESTÁ A CORREÇÃO
   ========================================= */

.division-grid {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================
   CARDS
   ========================================= */

.division-card {
    position: relative;

    width: 100%;
    min-width: 0;

    height: 650px;

    overflow: hidden;

    background: #111111;

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

    isolation: isolate;

    cursor: pointer;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease;
}

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

    border-color: rgba(255, 165, 31, 0.45);
}


/* Imagem */

.division-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;

    filter: grayscale(100%);

    transform: scale(1.02);

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

.division-card:hover .division-image {
    transform: scale(1.08);

    filter: grayscale(0%);
}


/* Overlay */

.division-overlay {
    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.65) 42%,
            rgba(0, 0, 0, 0.15) 100%
        );
}


/* Número */

.division-number {
    position: absolute;

    top: 28px;
    right: 32px;

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

    font-size: 70px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: -4px;
}


/* Conteúdo */

.division-content {
    position: absolute;

    left: 45px;
    right: 45px;
    bottom: 45px;

    z-index: 2;
}

.division-category {
    margin-bottom: 12px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 4px;
}

.division-content h3 {
    margin-bottom: 15px;

    font-size: clamp(55px, 6vw, 90px);

    font-weight: 900;

    line-height: 0.85;

    letter-spacing: -4px;
}

.division-content p {
    max-width: 500px;

    margin-bottom: 28px;

    color: #c0c0c0;

    font-size: 16px;

    line-height: 1.6;
}


/* Botão */

.division-button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 8px;

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

    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.division-button span {
    font-size: 18px;
}


/* =========================================
   FILIAÇÃO / APP / CONTATO
   ========================================= */

.section {
    padding: 130px 8%;

    position: relative;

    text-align: center;
}

.section h2 {
    font-size: clamp(38px, 5vw, 70px);

    line-height: 1;

    letter-spacing: -3px;

    text-transform: uppercase;

    margin-bottom: 30px;
}

.section h2 span {
    color: var(--orange);
}

.section p {
    max-width: 760px;

    margin: 0 auto 20px;

    color: var(--gray);

    font-size: 18px;
}

.about,
.affiliation,
.contact {
    background: var(--black-soft);
}

.app-section {
    background: var(--black);
}

.app-coming {
    display: inline-block;

    margin-top: 35px;

    padding: 12px 25px;

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

    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;
}


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

.footer {
    padding: 50px 8%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

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

    background: #050505;
}

.footer-logo {
    font-size: 24px;

    font-weight: 900;
}

.footer p {
    color: #666;

    font-size: 12px;
}


/* =========================================
   DESKTOP
   ========================================= */

@media (min-width: 901px) {

    .division-grid {
        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 22px;
    }

}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .division-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 22px;
    }

    .division-card {
        height: 580px;
    }

}


/* =========================================
   CELULAR
   ========================================= */

@media (max-width: 600px) {

    .header {
        height: 70px;

        padding: 0 20px;
    }

    .nav-button {
        padding: 10px 15px;
    }

    .hero {
        padding: 120px 20px 100px;
    }

    .hero-background-number {
        font-size: 100vw;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 80px);

        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-bottom {
        left: 20px;
        right: 20px;
    }

    .hero-bottom span:first-child {
        max-width: 180px;
    }

    .button {
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
    }

    .competitions-section {
        padding: 90px 18px;
    }

    .competitions-heading h2 {
        letter-spacing: -2px;
    }

    .division-card {
        height: 520px;
    }

    .division-content {
        left: 28px;
        right: 28px;
        bottom: 30px;
    }

    .division-content h3 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .division-number {
        top: 22px;
        right: 22px;

        font-size: 55px;
    }

    .footer {
        flex-direction: column;

        text-align: center;
    }

    }
/* =========================================
   SOBRE A QUA4TRO
   ========================================= */

.about-section {
    padding: 150px 7%;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;

    background: #111111;

    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}


/* LADO ESQUERDO */

.about-left {
    position: sticky;
    top: 140px;
}

.about-left h2 {
    max-width: 650px;

    font-size: clamp(50px, 6vw, 90px);

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 900;
}

.about-left h2 span {
    display: block;

    color: #ffa51f;
}


/* LADO DIREITO */

.about-right {
    padding-top: 45px;
}

.about-right > p {
    max-width: 700px;

    color: #999999;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.about-right .about-intro {
    color: #ffffff;

    font-size: clamp(22px, 2.5vw, 32px);

    font-weight: 700;

    line-height: 1.4;
}


/* PILARES */

.about-pillars {
    margin-top: 65px;

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

.about-pillar {
    display: grid;

    grid-template-columns: 60px 190px 1fr;

    gap: 25px;

    align-items: center;

    padding: 28px 0;

    border-bottom: 1px solid rgba(255,255,255,0.12);

    transition: 0.3s ease;
}

.about-pillar:hover {
    padding-left: 12px;
}

.about-pillar > span {
    color: #ffa51f;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.about-pillar h3 {
    font-size: 15px;

    font-weight: 900;

    letter-spacing: 1px;
}

.about-pillar p {
    color: #777777;

    font-size: 14px;

    margin: 0;
}


/* =========================================
   SOBRE — RESPONSIVO
   ========================================= */

@media (max-width: 900px) {

    .about-section {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 100px 25px;
    }

    .about-left {
        position: static;
    }

    .about-right {
        padding-top: 0;
    }

}


@media (max-width: 600px) {

    .about-section {
        padding: 90px 20px;
    }

    .about-left h2 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .about-pillar {
        grid-template-columns: 35px 1fr;

        gap: 15px;
    }

    .about-pillar p {
        grid-column: 2;
    }

}
/* =========================================
   ECOSSISTEMA QUA4TRO
   ========================================= */

.ecosystem-section {
    padding: 150px 7%;

    background: #080808;

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


/* CABEÇALHO */

.ecosystem-heading {
    max-width: 950px;

    margin: 0 auto 70px;

    text-align: center;
}

.ecosystem-heading h2 {
    font-size: clamp(48px, 6vw, 85px);

    line-height: 0.92;

    letter-spacing: -5px;

    font-weight: 900;

    margin-bottom: 25px;
}

.ecosystem-heading h2 span {
    display: block;

    color: #ffa51f;
}

.ecosystem-heading > p {
    max-width: 650px;

    margin: 0 auto;

    color: #8c8c8c;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   GRID
   ========================================= */

.ecosystem-grid {
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

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

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

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


/* =========================================
   CARDS
   ========================================= */

.ecosystem-card {
    position: relative;

    min-height: 320px;

    padding: 42px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background: #0d0d0d;

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

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

    overflow: hidden;

    transition: 0.4s ease;
}

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

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

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

    transition: 0.5s ease;
}

.ecosystem-card:hover {
    background: #141414;

    transform: translateY(-5px);
}

.ecosystem-card:hover::before {
    transform: scale(1.8);
}


/* NÚMEROS */

.ecosystem-number {
    position: absolute;

    top: 32px;
    left: 40px;

    color: #ffa51f;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* TÍTULOS */

.ecosystem-card h3 {
    position: relative;

    margin-bottom: 15px;

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

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 900;
}


/* TEXTO */

.ecosystem-card p {
    position: relative;

    max-width: 360px;

    color: #858585;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   CARD TECNOLOGIA
   ========================================= */

.ecosystem-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(255,165,31,0.12),
            #0d0d0d 60%
        );
}

.ecosystem-card-featured h3 {
    color: #ffa51f;
}

.ecosystem-badge {
    position: absolute;

    top: 28px;
    right: 28px;

    padding: 7px 12px;

    border: 1px solid rgba(255,165,31,0.5);

    color: #ffa51f;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* =========================================
   RESPONSIVO
   ========================================= */

@media (max-width: 1000px) {

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

}


@media (max-width: 650px) {

    .ecosystem-section {
        padding: 90px 18px;
    }

    .ecosystem-heading h2 {
        letter-spacing: -3px;
    }

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

    .ecosystem-card {
        min-height: 270px;

        padding: 32px;
    }

    .ecosystem-number {
        top: 25px;
        left: 30px;
    }

}
/* =========================================
   FILIAÇÃO QUA4TRO
   ========================================= */

.affiliation-section {
    padding: 150px 7%;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(255,165,31,0.08),
            transparent 30%
        ),
        #111111;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* =========================================
   CABEÇALHO
   ========================================= */

.affiliation-top {
    max-width: 1500px;

    margin: 0 auto 80px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;
}

.affiliation-heading h2 {
    font-size: clamp(50px, 6vw, 90px);

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -5px;
}

.affiliation-heading h2 span {
    display: block;

    color: #ffa51f;
}

.affiliation-intro p {
    max-width: 600px;

    color: #8d8d8d;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 15px;
}

.affiliation-intro p:first-child {
    color: #ffffff;

    font-size: 21px;

    font-weight: 700;
}


/* =========================================
   BENEFÍCIOS
   ========================================= */

.benefits-grid {
    max-width: 1500px;

    margin: 0 auto 70px;

    display: grid;

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

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

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

.benefit {
    min-height: 220px;

    padding: 32px;

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

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

    transition: 0.3s ease;
}

.benefit:hover {
    background: rgba(255,165,31,0.05);
}

.benefit > span {
    display: block;

    margin-bottom: 45px;

    color: #ffa51f;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.benefit h3 {
    margin-bottom: 10px;

    font-size: 18px;

    font-weight: 900;
}

.benefit p {
    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   OPÇÕES DE FILIAÇÃO
   ========================================= */

.affiliation-options {
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.affiliation-option {
    min-height: 220px;

    padding: 40px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    background: #080808;

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

    transition: 0.4s ease;
}

.affiliation-option:hover {
    transform: translateY(-6px);

    border-color: rgba(255,165,31,0.55);

    background: #0d0d0d;
}

.option-category {
    display: block;

    margin-bottom: 12px;

    color: #ffa51f;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}

.affiliation-option h3 {
    margin-bottom: 10px;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;
}

.affiliation-option p {
    max-width: 430px;

    color: #777777;

    font-size: 14px;

    line-height: 1.6;
}

.option-arrow {
    color: #ffa51f;

    font-size: 40px;

    transition: 0.3s ease;
}

.affiliation-option:hover .option-arrow {
    transform: translateX(8px);
}


/* =========================================
   FILIAÇÃO — RESPONSIVO
   ========================================= */

@media (max-width: 1000px) {

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

}


@media (max-width: 800px) {

    .affiliation-top {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .affiliation-options {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .affiliation-section {
        padding: 90px 18px;
    }

    .affiliation-heading h2 {
        letter-spacing: -3px;
    }

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

    .benefit {
        min-height: 190px;
    }

    .affiliation-option {
        min-height: 200px;

        padding: 28px;
    }

}
/* =========================================
   APP QUA4TRO
   ========================================= */

.app-showcase {
    position: relative;

    min-height: 850px;

    padding: 140px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(255,165,31,0.10),
            transparent 30%
        ),
        #080808;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* =========================================
   TEXTO APP
   ========================================= */

.app-info {
    position: relative;

    z-index: 3;

    max-width: 700px;
}

.app-info h2 {
    margin-bottom: 30px;

    font-size: clamp(50px, 6vw, 90px);

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -5px;
}

.app-info h2 span {
    display: block;

    color: #ffa51f;
}

.app-info > p {
    max-width: 620px;

    margin-bottom: 18px;

    color: #858585;

    font-size: 17px;

    line-height: 1.7;
}

.app-info .app-intro {
    color: #ffffff;

    font-size: clamp(21px, 2vw, 28px);

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================
   FUNCIONALIDADES
   ========================================= */

.app-features {
    margin-top: 40px;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.app-features span {
    padding: 9px 13px;

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

    color: #8d8d8d;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.app-status {
    margin-top: 35px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #ffa51f;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.app-status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ffa51f;

    box-shadow:
        0 0 15px rgba(255,165,31,0.8);
}


/* =========================================
   VISUAL DO CELULAR
   ========================================= */

.app-visual {
    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.phone {
    position: relative;

    width: 290px;
    height: 590px;

    padding: 10px;

    border: 2px solid #292929;

    border-radius: 42px;

    background: #050505;

    box-shadow:
        0 40px 100px rgba(0,0,0,0.8);

    z-index: 3;

    transform: rotate(5deg);

    transition: 0.5s ease;
}

.phone:hover {
    transform:
        rotate(0deg)
        translateY(-10px);
}

.phone-top {
    position: absolute;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;
}

.phone-speaker {
    width: 70px;
    height: 5px;

    border-radius: 10px;

    background: #222;
}

.phone-screen {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at center,
            rgba(255,165,31,0.14),
            transparent 40%
        ),
        #080808;
}

.phone-logo {
    position: absolute;

    top: 55px;

    font-size: 20px;

    font-weight: 900;

    letter-spacing: -1px;
}

.phone-logo span {
    color: #ffa51f;
}

.phone-message {
    text-align: center;

    color: #ffffff;

    font-size: 30px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;
}

.phone-message strong {
    color: #ffa51f;
}

.phone-nav {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    height: 75px;

    display: grid;

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

    background: #0d0d0d;

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

.phone-nav div {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    color: #666;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}

.phone-nav span {
    color: #ffa51f;

    font-size: 15px;
}


/* =========================================
   ELEMENTOS DE FUNDO
   ========================================= */

.phone-glow {
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: rgba(255,165,31,0.10);

    filter: blur(70px);

    z-index: 0;
}

.app-background-number {
    position: absolute;

    right: -20px;

    font-size: 620px;

    font-weight: 900;

    line-height: 1;

    color: transparent;

    -webkit-text-stroke:
        2px rgba(255,165,31,0.07);

    z-index: 1;

    pointer-events: none;
}


/* =========================================
   APP — RESPONSIVO
   ========================================= */

@media (max-width: 950px) {

    .app-showcase {
        grid-template-columns: 1fr;

        gap: 70px;

        padding: 100px 25px;
    }

    .app-info {
        margin: 0 auto;

        text-align: center;
    }

    .app-info > p {
        margin-left: auto;
        margin-right: auto;
    }

    .app-features,
    .app-status {
        justify-content: center;
    }

}


@media (max-width: 600px) {

    .app-showcase {
        padding: 90px 20px;
    }

    .app-info h2 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .app-visual {
        min-height: 520px;
    }

    .phone {
        width: 240px;
        height: 490px;
    }

    .phone-message {
        font-size: 25px;
    }

    .app-background-number {
        font-size: 430px;

        right: -150px;
    }

}
/* =========================================
   PATROCINADORES / PARCEIROS
   ========================================= */

.partners-section {
    padding: 150px 7%;

    background: #111111;

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


/* CABEÇALHO */

.partners-heading {
    max-width: 1050px;

    margin: 0 auto 75px;

    text-align: center;
}

.partners-heading h2 {
    margin-bottom: 28px;

    font-size: clamp(48px, 6vw, 85px);

    line-height: 0.92;

    letter-spacing: -5px;

    font-weight: 900;
}

.partners-heading h2 span {
    display: block;

    color: #ffa51f;
}

.partners-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #8c8c8c;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   ÁREA PRINCIPAL
   ========================================= */

.partners-showcase {
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

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

    background: #080808;
}


/* BLOCO ESQUERDO */

.partners-main {
    position: relative;

    min-height: 520px;

    padding: 60px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;

    border-right: 1px solid rgba(255,255,255,0.10);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,165,31,0.14),
            transparent 35%
        ),
        #080808;
}

.partners-main::before {
    content: "4";

    position: absolute;

    top: -80px;
    right: 30px;

    color: transparent;

    -webkit-text-stroke:
        2px rgba(255,165,31,0.08);

    font-size: 500px;

    font-weight: 900;

    line-height: 1;

    pointer-events: none;
}

.partners-small {
    position: relative;

    margin-bottom: 20px;

    color: #ffa51f;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}

.partners-main h3 {
    position: relative;

    max-width: 750px;

    margin-bottom: 25px;

    font-size: clamp(45px, 5vw, 75px);

    line-height: 0.92;

    letter-spacing: -4px;

    font-weight: 900;
}

.partners-main h3 strong {
    display: block;

    color: #ffa51f;
}

.partners-main p {
    position: relative;

    max-width: 600px;

    margin-bottom: 35px;

    color: #888888;

    font-size: 16px;

    line-height: 1.7;
}


/* BOTÃO */

.partners-button {
    position: relative;

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 16px 22px;

    background: #ffa51f;

    color: #080808;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}

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

.partners-button span {
    font-size: 18px;
}


/* =========================================
   PROPRIEDADES COMERCIAIS
   ========================================= */

.partners-properties {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-property {
    min-height: 170px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-right: 1px solid rgba(255,255,255,0.08);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s ease;
}

.partner-property:hover {
    background: rgba(255,165,31,0.06);
}

.partner-property span {
    color: #ffa51f;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.partner-property h4 {
    font-size: 18px;

    font-weight: 900;

    letter-spacing: -0.5px;
}


/* =========================================
   ÁREA DE LOGOS
   ========================================= */

.partners-logos {
    max-width: 1500px;

    margin: 20px auto 0;

    padding: 32px;

    text-align: center;

    border: 1px dashed rgba(255,165,31,0.25);
}

.partners-logos span {
    color: #666666;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;
}


/* =========================================
   RESPONSIVO
   ========================================= */

@media (max-width: 950px) {

    .partners-showcase {
        grid-template-columns: 1fr;
    }

    .partners-main {
        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

}


@media (max-width: 600px) {

    .partners-section {
        padding: 90px 18px;
    }

    .partners-heading h2 {
        letter-spacing: -3px;
    }

    .partners-main {
        min-height: 470px;

        padding: 35px 28px;
    }

    .partners-main h3 {
        letter-spacing: -3px;
    }

    .partners-main::before {
        font-size: 380px;

        right: -100px;
    }

    .partners-properties {
        grid-template-columns: 1fr;
    }

    .partner-property {
        min-height: 130px;
    }

}
/* =========================================
   CONTATO
   ========================================= */

.contact-section {
    padding: 150px 7%;

    background: #080808;
}


.contact-heading {
    max-width: 1000px;

    margin: 0 auto 70px;

    text-align: center;
}


.contact-heading h2 {
    margin-bottom: 25px;

    font-size: clamp(50px, 6vw, 90px);

    line-height: 0.9;

    letter-spacing: -5px;

    font-weight: 900;
}


.contact-heading h2 span {
    display: block;

    color: #ffa51f;
}


.contact-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #888888;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   REDES SOCIAIS
   ========================================= */

.social-grid {
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

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

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

    border-left: 1px solid rgba(255,255,255,0.10);
}


.social-card {
    position: relative;

    min-height: 280px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    border-right: 1px solid rgba(255,255,255,0.10);

    border-bottom: 1px solid rgba(255,255,255,0.10);

    background: #0c0c0c;

    transition: 0.4s ease;
}


.social-card:hover {
    background: #141414;

    transform: translateY(-6px);
}


.social-type {
    position: absolute;

    top: 30px;
    left: 35px;

    color: #ffa51f;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}


.social-card h3 {
    margin-bottom: 8px;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: -2px;
}


.social-card p {
    color: #777777;

    font-size: 13px;
}


.social-arrow {
    position: absolute;

    right: 30px;
    bottom: 30px;

    color: #ffa51f;

    font-size: 28px;

    transition: 0.3s ease;
}


.social-card:hover .social-arrow {
    transform: translateX(7px);
}


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

.footer-final {
    padding: 80px 7% 35px;

    background: #050505;

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


.footer-top {
    max-width: 1500px;

    margin: 0 auto 70px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.footer-brand .footer-logo {
    margin-bottom: 15px;

    font-size: 38px;

    font-weight: 900;

    letter-spacing: -2px;
}


.footer-brand .footer-logo span {
    color: #ffa51f;
}


.footer-brand p {
    color: #666666;

    font-size: 14px;
}


.footer-links {
    display: grid;

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

    gap: 40px;
}


.footer-links > div {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.footer-links span {
    margin-bottom: 8px;

    color: #ffa51f;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}


.footer-links a {
    color: #777777;

    font-size: 13px;

    transition: 0.3s;
}


.footer-links a:hover {
    color: #ffffff;
}


.footer-bottom {
    max-width: 1500px;

    margin: 0 auto;

    padding-top: 30px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

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


.footer-bottom p,
.footer-bottom a {
    color: #555555;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.footer-bottom a:hover {
    color: #ffa51f;
}


/* =========================================
   CONTATO / FOOTER RESPONSIVO
   ========================================= */

@media (max-width: 1000px) {

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

}


@media (max-width: 800px) {

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

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding: 90px 18px;
    }

    .contact-heading h2 {
        letter-spacing: -3px;
    }

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

    .social-card {
        min-height: 220px;
    }

    .footer-final {
        padding: 65px 20px 30px;
    }

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

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
    }

}
/* REDES — 3 CARDS POR LINHA */

.social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1000px) {

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

}

@media (max-width: 600px) {

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

}
/* =========================================
   DOWNLOAD APP
   ========================================= */

.app-download-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 28px;

    padding: 17px 24px;

    background: #ffa51f;

    color: #080808;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}

.app-download-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(255,165,31,0.20);
}

.app-download-button span {
    font-size: 18px;
}


@media (max-width: 950px) {

    .app-download-button {
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 600px) {

    .app-download-button {
        width: 100%;
    }

}
/* =========================================
   AÇÕES DO HEADER
   ========================================= */

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

.nav-app-button {
    padding: 11px 18px;

    border: 1px solid #ffa51f;

    color: #ffa51f;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.nav-app-button:hover {
    background: #ffa51f;
    color: #080808;
}


/* MOBILE */

@media (max-width: 600px) {

    .header-actions {
        gap: 6px;
    }

    .nav-app-button,
    .nav-button {
        padding: 9px 11px;

        font-size: 9px;
    }

}
/* iOS — EM BREVE */

.app-ios-note {
    margin-top: 16px;

    color: #777777;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}
/* =========================================
   3 MODALIDADES
   ========================================= */

@media (min-width: 1001px) {

    .division-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .division-content h3 {
        font-size: clamp(42px, 4vw, 64px);
    }

}


/* =========================================
   SEPTA 7
   ========================================= */

.septa-card {
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255,165,31,0.12),
            transparent 35%
        ),
        #101010;
}

.division-logo-image {
    position: absolute;

    top: 42%;
    left: 50%;

    width: 55%;
    max-width: 280px;
    height: auto;

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

    object-fit: contain;

    z-index: -1;

    /* VISUAL APAGADO */
    filter: grayscale(100%) brightness(0.65);
    opacity: 0.45;

    transition:
        transform 0.6s ease,
        filter 0.6s ease,
        opacity 0.6s ease;
}

septa-card:hover .division-logo-image,
.septa-card:focus-within .division-logo-image,
.septa-card:active .division-logo-image {
    transform:
        translate(-50%, -50%)
        scale(1.08);

    filter: grayscale(0%) brightness(1);

    opacity: 1;
}
/* =========================================
   LOGO SEPTA 7
   ========================================= */

.septa-logo {
    object-fit: contain !important;

    width: 70% !important;
    height: 70% !important;

    top: 15% !important;
    left: 15% !important;

    pointer-events: none;
}
/* =========================================
   REDES — 5 CARDS
   ========================================= */

.social-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1200px) {

    .social-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 800px) {

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

}

@media (max-width: 600px) {

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

}
/* =========================================
   APP — PWA / PLATAFORMAS
   ========================================= */

.app-platforms {
    margin-top: 18px;

    display: flex;

    align-items: center;

    gap: 8px;
}

.app-platforms span {
    padding: 7px 11px;

    border: 1px solid rgba(255,165,31,0.30);

    color: #ffa51f;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* GUIA DE INSTALAÇÃO */

.app-install-guide {
    max-width: 620px;

    margin-top: 30px;

    display: grid;

    grid-template-columns: repeat(2, minmax(0,1fr));

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

    border-left: 1px solid rgba(255,255,255,0.10);
}

.app-install-guide > div {
    padding: 20px;

    border-right: 1px solid rgba(255,255,255,0.10);

    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.app-install-guide strong {
    display: block;

    margin-bottom: 8px;

    color: #ffa51f;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.app-install-guide p {
    margin: 0;

    color: #777777;

    font-size: 11px;

    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 950px) {

    .app-platforms {
        justify-content: center;
    }

    .app-install-guide {
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

}


@media (max-width: 600px) {

    .app-install-guide {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   E-MAIL DE CONTATO
   ========================================= */

.contact-email {
    display: inline-block;

    margin-top: 25px;

    color: #ffa51f;

    font-size: clamp(16px, 2vw, 22px);

    font-weight: 900;

    letter-spacing: 1px;

    border-bottom: 1px solid rgba(255,165,31,0.4);

    padding-bottom: 5px;

    transition: 0.3s ease;
}

.contact-email:hover {
    color: #ffffff;
    border-color: #ffffff;
}
