﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #07111d;
    color: white;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

section {
    width: 100%;
}

/* ========================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(14px);
    background: rgba(5,10,20,.35);
    transition: .4s;
}

.logo {
    font-size: 34px;
    font-weight: 800;
    color: #FF8A00;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

    nav a {
        color: white;
        font-weight: 500;
        transition: .3s;
    }

        nav a:hover {
            color: #FF8A00;
        }

.btnHeader {
    background: #FF8A00;
    padding: 13px 25px;
    border-radius: 50px;
    color: black;
    font-weight: 600;
    transition: .35s;
}

    .btnHeader:hover {
        color: black;
    }

/* ========================= */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(4,9,18,.75),rgba(4,9,18,.88)), url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=80");
        background-size: cover;
        background-position: center;
        transform: scale(1.08);
        animation: zoomHero 18s infinite alternate;
    }

@keyframes zoomHero {

    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

.heroContent {
    position: relative;
    z-index: 5;
    width: min(1200px,90%);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
}

.heroText small {
    color: #FF8A00;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.heroText h1 {
    font-size: 44px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

    .heroText h1 span {
        color: #FF8A00;
    }

.heroText p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.destaque {
    color: #FF8A00;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btnPrincipal {
    background: #FF8A00;
    color: #000;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btnPrincipal:hover {
        opacity: 0.9;
    }

.btnSecundario {
    background: transparent;
    border: 2px solid #FF8A00;
    color: #FF8A00;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btnSecundario:hover {
        background: white;
        color: #222;
    }

/* ========================= */

.phone {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.phoneBody {
    width: 300px;
    height: 550px;
    background: #111;
    border-radius: 35px;
    padding: 20px;
    color: #fff;
    animation: floatPhone 3s ease-in-out infinite;
}


@keyframes floatPhone {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.phoneTop {
    height: 80px;
    background: #FF8A00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
}

.phoneScreen {
    padding: 0px;
}

.miniCard {
    background: #f5f5f5;
    color: #222;
    padding: 18px;
    border-radius: 20px;
    margin-bottom: 18px;
}

    .miniCard h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .miniCard p {
        color: #666;
        font-size: 14px;
    }

.floatingIcon {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    font-size: 28px;
    animation: floatIcon 4s ease-in-out infinite;
}

.floating1 {
    top: 40px;
    left: -30px;
}

.floating2 {
    bottom: 50px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes floatIcon {

    50% {
        transform: translateY(-15px);
    }
}

.scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 6;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    50% {
        transform: translate(-50%,10px);
    }
}

@media(max - width:980px) {

    .heroContent {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .buttons {
        justify-content: center;
    }

    .heroText h1 {
        font-size: 48px;
    }

    nav {
        display: none;
    }
}

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .heroText h1 {
        font-size: 30px;
    }

    .buttons {
        justify-content: center;
    }

    .phoneBody {
        width: 270px;
        height: 550px;
        margin-top: 30px;
    }
}

.storySection {
    padding: 120px 8%;
    background: white;
    color: #222;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.sectionTitle {
    text-align: center;
    margin-bottom: 70px;
}

    .sectionTitle span {
        color: #ff8a00;
        font-weight: bold;
        letter-spacing: 3px;
    }

    .sectionTitle h2 {
        margin-top: 18px;
        font-size: 48px;
    }

.storyGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
}

.storyCard {
    padding: 40px;
    border-radius: 28px;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .storyCard:hover {
        transform: translateY(-15px);
    }

.storyIcon {
    font-size: 70px;
    margin-bottom: 20px;
}

.storyCard h3 {
    margin-bottom: 18px;
    font-size: 28px;
}

.storyCard p {
    line-height: 1.9;
    color: #666;
    margin-bottom: 12px;
}

.categories {
    padding: 120px 8%;
    background: #f5f7fb;
}

.categoryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.categoryCard {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    text-align: center;
}

    .categoryCard:hover {
        transform: translateY(-12px);
    }

    .categoryCard i {
        font-size: 58px;
        color: #ff8a00;
        margin-bottom: 25px;
    }

    .categoryCard h3 {
        margin-bottom: 18px;
    }

    .categoryCard p {
        color: #666;
        line-height: 1.8;
    }

.steps {
    padding: 120px 8%;
    background: #08111f;
    color: white;
}

.stepsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
}

.stepNumber {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #ff8a00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}

.step p {
    color: #d5d5d5;
    line-height: 1.8;
    margin-top: 15px;
}
