/* RESET GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    background-color: #141414;
    color: #fff;
    padding: 10px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
}

.logo .rd {
    color: green;
}

.logo .flix {
    color: red;
}

/* MENU HAMBURGER - OCULTO DESKTOP */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* NAV LINKS - DESKTOP */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

/* BANNER */
.banner {
    background: linear-gradient(135deg, #111, #222);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 90%;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.banner p {
    font-size: 18px;
    color: #ccc;
}

/* CAROUSEL */
.carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.carousel-item {
    background-color: #111;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s;
}

.carousel-item img {
    width: 100%;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
}

.carousel-item:hover {
    transform: scale(1.08);
    background-color: #222;
}

.carousel-item span {
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

/* BUTTONS */
.button {
    background-color: red;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.button.green {
    background-color: green;
}

/* PROGRESS BAR */
.progress-bar {
    background-color: #555;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar-inner {
    height: 20px;
    background-color: green;
    width: 0;
}

/* TIMER */
.timer {
    color: red;
    font-weight: bold;
    margin: 10px 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        margin-top: 10px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 10px;
        border-top: 1px solid #333;
        color: #fff;
        text-decoration: none;
    }
    .banner h1 {
        font-size: 28px;
    }
    .banner p {
        font-size: 16px;
    }
}
.form-container {
    max-width: 400px;
    margin: 40px auto;
    background: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ccc;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-size: 16px;
}

.form-group input:focus {
    outline: 2px solid red;
}

.form-button {
    width: 100%;
    padding: 12px;
    background: red;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-button:hover {
    background: darkred;
}
/* TABS STYLE */
.tabs {
    display: flex;
    gap: 10px;
    margin: 30px auto;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 16px;
}

.tab-button.active,
.tab-button:hover {
    background: red;
}


.tab-button.active, .tab-button:hover {
    background: red;
}

.tab-content {
    display: none;
    background: #222;
    padding: 20px;
    border-radius: 5px;
    max-width: 800px;
    margin: 20px auto;
}

.tab-content.active {
    display: block;
}
.logo img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

