* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: #000;
    text-decoration: none;
}

:root {
    --black: #070707;
    --dark: #111111;
    --yellow: #f6c400;
    --gold: #ffb703;
    --white: #ffffff;
    --gray: #cfcfcf;
    --soft-dark: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url("../image/back-b4live.png");
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    color: var(--white);
}

.hero {
    min-height: 100vh;
    position: relative;
    padding: 55px 7%;
}
.hero-content h1{
    line-height:1.15;
    margin-bottom:30px;
}

.numbers{
    background: linear-gradient(
        135deg,
        #b78700 0%,
        #d29e00 50%,
        #ffff6a 100%
    );

    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 7%;
    position: relative;
    z-index: 10;
}

.number-card{
    min-width: 220px;
    text-align: center;
    background: #ffffff;
    box-shadow: 2px 2px 3px #000;
    backdrop-filter: blur(6px);
    padding: 25px;
    border-radius: 18px;
    transition: .4s;
}

.number-card:hover{
    transform: translateY(-10px);
    background: #ffffff;
    color: #fff;
}

.number-card span{
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #111;
}

.number-card h3{
    color: #111;
    margin-top: 10px;
    font-size: 1.1rem;
}

.impact-bar{

    border-radius: 15px;
    color:#363636;
    font-weight: 600;
    font-size: 1.2rem;
    display:flex;
    justify-content:center;
    gap:40px;

    padding:20px;
    flex-wrap:wrap;

    border: 1px solid #DAA520;;
    border-bottom:1px solid rgba(246,196,0,.5);
}

.impact-bar{
    width: 100%;
    padding: 28px 20px;
    background: linear-gradient(200deg, #07111f, #0d2b45, #000000);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.impact-info{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.impact-info div{
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    padding: 18px 14px;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    transition: .3s ease;
}

.impact-info div:hover{
    transform: translateY(-6px);
    background: rgba(255,255,255,.18);
    box-shadow: 0 14px 30px rgba(0,0,0,.28);
}

.impact-info i{
    display: block;
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #ffd166;
}

/* Tablet */
@media (max-width: 900px){
    .impact-info{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celular */
@media (max-width: 520px){
    .impact-bar{
        padding: 22px 14px;
    }

    .impact-info{
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .impact-info div{
        font-size: .9rem;
        padding: 16px 12px;
    }
}
.navbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--yellow);
    font-size: 1.2rem;
}

.logo {
    width: 280px;
    height: 120px;
    object-fit: contain;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover {
    color: var(--yellow);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-top: 150px;
    animation: fadeUp 1s ease forwards;
}
.hero::after{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    overflow: hidden;
    top:50%;

    transform:translateY(-50%);

    background: radial-gradient(
        rgba(246,196,0,.15),
        transparent 70%
    );

    pointer-events:none;
}

.btn-secondary{
    background: rgba(255,255,255,.05);

    backdrop-filter: blur(8px);

    border: 1px solid rgba(246,196,0,.5);
}

.tag {
    font-size: 1.5rem;
    color: var(--yellow);
    font-weight: bold;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin: 20px 0;
    line-height: 1.05;
}

.hero-content p {
    color: var(--gray);
    font-size: 1.2rem;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dev-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(246,196,0,.25);
}

.btn-primary,
.btn-secondary {
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid var(--yellow);
    color: var(--yellow);
}

.btn-secondary:hover {
    background: var(--yellow);
    color: var(--black);
}

.section {
    padding: 90px 7%;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title span {
    color: var(--yellow);
    font-weight: bold;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 10px;
}

.about p,
.contact p {
    max-width: 850px;
    margin: auto;
    color: var(--gray);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.dropdown-box {
    max-width: 900px;
    margin: auto;
}

.dev-info{
    margin-top: 15px;
}

.dev-info ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.dev-info li{
    position: relative;
    padding: 8px 0 8px 30px;
    color: var(--gray);
    font-size: 1rem;
    border-bottom: 1px solid rgba(246,196,0,.10);
    transition: .3s;
}

.dev-info li:last-child{
    border-bottom: none;
}

.dev-info li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background: var(--yellow);
    border-radius: 50%;
    font-size: .8rem;
}

.dev-info li:hover{
    color: #fff;
    padding-left: 35px;
}

details {
    background: var(--soft-dark);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
}

summary {
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--yellow);
}

summary i {
    margin-right: 10px;
}

details p {
    margin-top: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/*=========================================DEVELOPER*/
.dev-grid-bnr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dev-card-bnr,
.idea-grid div {
    background: linear-gradient(145deg, #151515, #080808);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(246,196,0,.18);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
    transition: .3s;
}

.dev-card-bnr:hover,
.idea-grid div:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
}

.dev-card-bnr img {
    width:100%;
    max-width:340px;
    object-fit: cover;
    border: 4px solid var(--yellow);
    margin-bottom: 20px;
}
.idea-grid-bnr {
    grid-template-columns: repeat(3, 1fr);
}
.dev-card-bnr a {
    color: #FFFFFF;
}
.dev-card-bnr a:hover {
    color: #FFFFFF;
}

@media(max-width: 850px) {

    .dev-grid-bnr {
        grid-template-columns: 1fr;
    }
}
/*=========================================DEVELOPER*/

.dev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.dev-card,
.idea-grid div {
    background: linear-gradient(145deg, #151515, #080808);
    padding: 30px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(246,196,0,.18);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
    transition: .3s;
}

.dev-card:hover,
.idea-grid div:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
}

.dev-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--yellow);
    margin-bottom: 20px;
}

.dev-card h3,
.idea-grid h3 {
    color: var(--yellow);
    margin-bottom: 12px;
}

.dev-card p,
.idea-grid p {
    color: var(--gray);
    line-height: 1.7;
}

.idea-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.idea-grid i {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom:25px;
}

.social-links {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-links-a {
    color: var(--black);
    background: #25D366;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 30px;
    font-weight: bold;
    transition: .3s;
}

.social-links-b {
    color: var(--black);
    background: var(--yellow);
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 30px;
    font-weight: bold;
    transition: .3s;
}

.social-links a{
    width:220px;
}
.social-links a:hover {
    transform: translateY(-4px);
}

footer {
    text-align: center;
    padding: 25px;
    background: #020202;
    color: var(--gray);
    border-top: 1px solid rgba(255,255,255,.08);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 850px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content {
        margin-top: 90px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .dev-grid,
    .idea-grid {
        grid-template-columns: 1fr;
    }
}