:root {
    --green: #16a34a;
    --green-dark: #0b6b32;
    --green-light: #22c55e;
    --dark: #07130c;
    --dark-2: #0c1f13;
    --text: #172019;
    --text-light: #6b756e;
    --white: #ffffff;
    --gray: #f4f7f5;
    --border: #e3e9e5;
    --whatsapp: #25d366;
    --telegram: #229ed9;
    --radius: 18px;
}
/* =====================================================
   RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
button {
    font-family: inherit;
}
/* =====================================================
   CONTAINER
===================================================== */
.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}
/* =====================================================
   NAVBAR
===================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.navbar-content {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 150px;
}
.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 600;
}
.nav-links a {
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--green);
}
.nav-button {
    background: var(--green);
    color: white;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}
.nav-button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}
.menu-toggle,
.mobile-menu {
    display: none;
}
/* =====================================================
   HERO
===================================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    background:
        linear-gradient(
            135deg,
            #07130c 0%,
            #0c2816 55%,
            #0e4622 100%
        );
    color: white;
}
.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(
            35deg,
            transparent 45%,
            white 46%,
            white 48%,
            transparent 49%
        );
    background-size: 80px 80px;
}
.hero-content {
    position: relative;
    min-height: 680px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}
.hero-text {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 30px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    max-width: 700px;
}
.hero h1 span {
    display: block;
    color: #4ade80;
}
.hero-description {
    max-width: 620px;
    margin-top: 25px;
    color: #c9d6cd;
    font-size: 18px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s;
}
.button:hover {
    transform: translateY(-2px);
}
.button-icon {
    font-size: 20px;
}
.button-whatsapp {
    background: var(--whatsapp);
    color: white;
}
.button-whatsapp:hover {
    background: #20bd5a;
}
.button-telegram {
    background: var(--telegram);
    color: white;
}
.button-telegram:hover {
    background: #168dcc;
}
.hero-note {
    margin-top: 17px;
    color: #9cad9f;
    font-size: 12px;
}
/* =====================================================
   CELULAR
===================================================== */
.hero-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.phone {
    width: 320px;
    padding: 12px;
    background: #111;
    border: 6px solid #222;
    border-radius: 35px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45);
}
.phone-top {
    width: 90px;
    height: 20px;
    background: #222;
    border-radius: 0 0 15px 15px;
    margin: -12px auto 10px;
}
.phone-screen {
    height: 520px;
    overflow: hidden;
    border-radius: 23px;
    background: #e8eee9;
    color: #172019;
    position: relative;
}
.chat-header {
    height: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #0d6b34;
    color: white;
}
.chat-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    font-size: 20px;
}
.chat-header-info {
    display: flex;
    flex-direction: column;
}
.chat-header strong {
    font-size: 14px;
}
.chat-header small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
}
.demo-messages {
    height: calc(100% - 70px);
    padding: 22px 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-message {
    width: 94%;
    max-height: 420px;
    align-self: center;
    padding: 22px 19px;
    background: white;
    border-radius: 7px 20px 20px 20px;
    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.09);
    font-size: 13px;
    line-height: 1.55;
    animation: messageIn 0.55s ease-out;
}
.demo-message-title {
    display: block;
    margin-bottom: 13px;
    color: var(--green);
    font-weight: 800;
    font-size: 15px;
}
.demo-message-team {
    display: block;
    margin-bottom: 11px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    color: #172019;
}
.demo-message-line {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
}
.demo-message-tv {
    display: block;
    margin-top: 14px;
    margin-bottom: 7px;
    padding-top: 11px;
    border-top: 1px solid #e7ebe8;
    font-weight: 800;
    font-size: 13px;
}
.demo-message-free {
    color: var(--green);
    font-weight: 800;
}
@keyframes messageIn {
    from {
        opacity: 0;
        transform:
            translateY(25px)
            scale(0.97);
    }
    to {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}
/* =====================================================
   SEÇÕES
===================================================== */
.section {
    padding: 110px 0;
}
.section-heading {
    max-width: 720px;
    margin: 0 auto 65px;
    text-align: center;
}
.section-label {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}
.section-heading h2 {
    margin-top: 10px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -2px;
}
.section-heading h2 span {
    color: var(--green);
}
.section-heading p {
    margin-top: 17px;
    color: var(--text-light);
    font-size: 17px;
}
/* =====================================================
   COMO FUNCIONA
===================================================== */
.steps {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 30px;
}
.step {
    position: relative;
    padding: 35px;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.step-number {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #d8e4dc;
    font-size: 13px;
    font-weight: 800;
}
.step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: white;
    font-size: 30px;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.05);
}
.step h3 {
    font-size: 19px;
}
.step p {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 14px;
}
/* =====================================================
   FUTEBOL BRASILEIRO
===================================================== */
.teams-section {
    background: var(--gray);
}
.teams-content {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-light);
    font-size: 16px;
}
/* =====================================================
   RECURSOS
===================================================== */
.section-dark {
    background: var(--dark);
    color: white;
}
.section-heading-light p {
    color: #9daf9f;
}
.features {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 18px;
}
.feature-card {
    padding: 30px;
    background:
        rgba(255, 255, 255, 0.045);
    border:
        1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition:
        transform 0.2s,
        background 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    background:
        rgba(255, 255, 255, 0.07);
}
.feature-icon {
    font-size: 30px;
    margin-bottom: 15px;
}
.feature-card h3 {
    font-size: 18px;
}
.feature-card p {
    margin-top: 8px;
    color: #9daf9f;
    font-size: 14px;
}
/* =====================================================
   SCREENSHOTS
===================================================== */
.screenshots-section {
    background: var(--gray);
}
.slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slides {
    position: relative;
    width: min(760px, 90%);
    height: 620px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(90px) scale(0.82);
    transition: all 0.45s ease;
    filter: blur(1.5px);
    z-index: 0;
}
.slide img {
    width: min(360px, 72vw);
    max-height: 620px;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 26px 60px rgba(10, 16, 18, 0.22);
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.04);
}
.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    z-index: 3;
}
.slide.prev {
    opacity: 0.48;
    transform: translateX(-140px) scale(0.88);
    filter: blur(0.8px);
    z-index: 2;
}
.slide.next {
    opacity: 0.48;
    transform: translateX(140px) scale(0.88);
    filter: blur(0.8px);
    z-index: 2;
}
.slide.hidden {
    opacity: 0;
    transform: translateX(0) scale(0.7);
    z-index: 1;
}
.slider-button {
    position: absolute;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--green);
    font-size: 34px;
    cursor: pointer;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.2s,
        background 0.2s;
}
.slider-button:hover {
    transform: scale(1.08);
    background: #f8faf9;
}
.slider-prev {
    left: 0;
}
.slider-next {
    right: 0;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 50%;
    background: #cbd5ce;
    cursor: pointer;
}
.dot.active {
    background: var(--green);
    transform: scale(1.3);
}
@keyframes fade {
    from {
        opacity: 0.2;
        transform: scale(0.99);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* =====================================================
   CTA
===================================================== */
.cta {
    padding: 110px 0;
    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );
    color: white;
    text-align: center;
}
.cta .section-label {
    color: #bbf7d0;
}
.cta h2 {
    max-width: 800px;
    margin: 15px auto;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}
.cta h2 span {
    display: block;
    color: #d9fbe4;
}
.cta p {
    max-width: 620px;
    margin: 20px auto 30px;
    color: #dcfce7;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.button-large {
    min-width: 210px;
}
/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #061009;
    color: white;
}
/*
    OS DOIS BLOCOS PRINCIPAIS DO FOOTER
*/
.footer-main {
    min-height: 230px;
    padding: 55px 0;
    display: grid;
    grid-template-columns:
        1fr 1fr;
    align-items: center;
    gap: 80px;
}
/* =====================================================
   BLOCO DO DESENVOLVEDOR
===================================================== */
.developer-block {
    display: flex;
    align-items: center;
    gap: 25px;
}
.developer-photo-wrapper {
    position: relative;
    flex-shrink: 0;
}
.developer-photo-wrapper::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border:
        1px solid
        rgba(74, 222, 128, 0.4);
}
.developer-photo {
    display: block !important;
    width: 105px !important;
    height: 105px !important;
    min-width: 105px !important;
    min-height: 105px !important;
    max-width: 105px !important;
    max-height: 105px !important;
    object-fit: cover;
    border-radius: 50%;
    border:
        3px solid
        rgba(255, 255, 255, 0.18);
    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.35);
}
.developer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.developer-label {
    color: #4ade80;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}
.developer-info h3 {
    margin-top: 3px;
    color: white;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.developer-info p {
    max-width: 330px;
    margin-top: 5px;
    color: #94a59a;
    font-size: 12px;
    line-height: 1.5;
}
.developer-info p strong {
    color: #d9fbe4;
}
/* =====================================================
   BOTÃO LINKEDIN
===================================================== */
.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 13px;
    border-radius: 8px;
    background:
        rgba(255, 255, 255, 0.06);
    border:
        1px solid
        rgba(255, 255, 255, 0.1);
    color: #dce7df;
    font-size: 11px;
    font-weight: 700;
    transition:
        background 0.2s,
        transform 0.2s;
}
.linkedin-button:hover {
    background:
        rgba(10, 102, 194, 0.2);
    transform: translateY(-2px);
}
.linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #0a66c2;
    color: white;
    font-size: 11px;
    font-weight: 800;
}
/* =====================================================
   BLOCO DA MARCA / NAVEGAÇÃO
===================================================== */
.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
    width: 130px;
    height: auto;
}
.footer-navigation p {
    margin-top: 10px;
    color: #849488;
    font-size: 12px;
}
/* =====================================================
   LINKS
===================================================== */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    color: #aebbb2;
    font-size: 12px;
    font-weight: 500;
}
.footer-links a {
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}
.footer-linkedin {
    color: #60a5fa !important;
    font-weight: 700;
}
.footer-linkedin:hover {
    color: #93c5fd !important;
}
/* =====================================================
   FOOTER BOTTOM
===================================================== */
.footer-bottom {
    padding: 20px 0;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
    color: #69766d;
    font-size: 12px;
}
.footer-bottom span {
    margin: 0 5px;
}
/* =====================================================
   TABLET
===================================================== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 70px 0;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-preview {
        margin-top: 20px;
    }
    .steps,
    .features {
        grid-template-columns: 1fr;
    }
    .step {
        max-width: 500px;
        margin: auto;
    }
    .features {
        max-width: 600px;
        margin: auto;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .developer-block {
        max-width: 600px;
    }
}
/* =====================================================
   CELULAR
===================================================== */
@media (max-width: 600px) {
    .navbar-content {
        height: 68px;
    }
    .logo {
        width: 125px;
    }
    .nav-button {
        padding: 9px 13px;
        font-size: 12px;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 40px;
        height: 40px;
        margin-left: auto;
        padding: 8px;
        border: 1px solid var(--border);
        border-radius: 9px;
        background: var(--white);
        cursor: pointer;
    }
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: transform 0.2s, opacity 0.2s;
    }
    .menu-toggle.is-open span:first-child {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-open span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }
    .mobile-menu {
        position: absolute;
        top: 68px;
        left: 4%;
        right: 4%;
        display: grid;
        gap: 4px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s, transform 0.2s;
    }
    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .mobile-menu a {
        padding: 11px 12px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
    }
    .mobile-menu a:hover {
        background: var(--gray);
    }
    .mobile-menu-cta {
        background: var(--green);
        color: var(--white);
        text-align: center;
    }
    /* HERO */
    .hero h1 {
        letter-spacing: -2px;
    }
    .hero-description {
        font-size: 16px;
    }
    .button {
        width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
    }
    /* CELULAR */
    .phone {
        width: 290px;
    }
    .phone-screen {
        height: 500px;
    }
    .demo-message {
        width: 94%;
        padding: 18px 16px;
        font-size: 12px;
    }
    .demo-message-title {
        font-size: 13px;
    }
    .demo-message-team {
        font-size: 15px;
    }
    .demo-message-line {
        font-size: 12px;
        margin-bottom: 5px;
    }
    /* SEÇÕES */
    .section {
        padding: 80px 0;
    }
    .section-heading {
        margin-bottom: 45px;
    }
    /* SCREENSHOTS */
    .slides {
        width: 100%;
        height: 540px;
        overflow: hidden;
    }
    .slide img {
        width: min(290px, 78vw);
        max-height: 540px;
    }
    .slide.prev {
        opacity: 0;
        transform: translateX(0) scale(0.92);
    }
    .slide.next {
        opacity: 0;
        transform: translateX(0) scale(0.92);
    }
    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    .slider-prev {
        left: 2px;
    }
    .slider-next {
        right: 2px;
    }
    /* CTA */
    .cta {
        padding: 80px 0;
    }
    /* FOOTER */
    .footer-main {
        padding: 45px 0;
        gap: 40px;
    }
    .developer-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .developer-info {
        align-items: center;
    }
    .developer-photo {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
        min-height: 90px !important;
        max-width: 90px !important;
        max-height: 90px !important;
    }
    .developer-info h3 {
        font-size: 24px;
    }
    .developer-info p {
        max-width: 320px;
    }
    .footer-navigation {
        align-items: center;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        gap: 14px;
    }
}
