/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
    font-family: "Roboto", sans-serif;
}

/* ESTRUTURA BASE */
body {
    background-color: rgb(23, 1, 44);
    color: #fff;
    padding-top: 90px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

section {
    padding: 1.5rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: rgb(32, 6, 57);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.header section {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.logo img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
}

.header p {
    font-size: 1.4rem;
    color: #f1f1f1;
    opacity: 0.9;
}

/* FUNDO ANIMADO */
.background-marquee {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.column {
    width: 120px;
}

.column marquee {
    height: 100vh;
}

.column img {
    width: 130px;
    display: block;
    margin: 20px auto;
    opacity: 0.2;
}

/* CONTEÚDO PRINCIPAL */
.conteudo {
    margin-top: 120px;
    text-align: center;
    flex: 1;
}

.conteudo p {
    display: inline-block;
    padding: 24px 24px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #2b1a00;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

/* BOTÃO COM ÍCONE */
.icone-rede {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 24px 24px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #2b1a00;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;

    width: fit-content;
    margin: 80px auto;
}

.icone-rede img {
    width: 40px;
    height: 40px;
}

/* COMO FUNCIONA */
.como-funciona {
    max-width: 1000px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.como-funciona div {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.como-funciona div:hover {
    transform: translateY(-8px);
}

/* ANIMAÇÃO */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* FOOTER */
footer {
    position: relative;
    padding: 3rem;
    background: linear-gradient(180deg, rgb(32, 6, 57), rgb(23, 1, 44));
    text-align: center;
    margin-top: 120px;
}
