/* ====== RESET BÁSICO ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    background: radial-gradient(circle at top, #1a1a1a 0, #050505 45%, #000 100%);
    color: #f4f4f4;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* ====== TICKER DE NOTÍCIAS ====== */
.news-ticker {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 10px 0;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid #e63946;
}

.news-ticker::before,
.news-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.news-ticker::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.news-ticker::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.news-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 70s linear infinite;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}

.news-item {
    display: inline;
    margin-right: 40px;
}

.news-title {
    color: #ff3b3b;
}

.news-text {
    color: #ffffff;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ====== LAYOUT GERAL ====== */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

/* ====== HERO / TOPO ====== */
.hero {
    position: relative;
    padding: 40px 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-text {
    flex: 1;
    min-width: 260px;
}

.hero-title {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 1rem;
    color: #d9d9d9;
}

.hero-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 12px;
    border: 1px solid #e63946;
    color: #e63946;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ====== SCANLINE ====== */
.hero-scanline {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #e63946, transparent);
    opacity: 0.4;
    animation: scanline 4s linear infinite;
}

@keyframes scanline {
    0% { top: 0; opacity: 0.1; }
    50% { top: 100%; opacity: 0.5; }
    100% { top: 0; opacity: 0.1; }
}

/* ====== NOVO CARD DE LOGIN ====== */
.login-card {
    width: 280px;
    background: rgba(10,10,10,0.92);
    border: 1px solid rgba(230,57,70,0.5);
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 0 18px rgba(230,57,70,0.35);
    text-align: center;
}

.login-card img {
    width: 120px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px rgba(230,57,70,0.6));
}

.login-card label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-size: 0.85rem;
}

.login-card input {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
}

.login-card button {
    margin-top: 16px;
    width: 100%;
    padding: 10px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #e63946, #ff4b5c);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
}

.login-card button:hover {
    filter: brightness(1.1);
}

/* ====== CARDS DE MÓDULOS ====== */
.modules-section {
    margin-top: -10px;
}

.section-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d9d9d9;
    margin-bottom: 10px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.module-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 8px;
    padding: 12px 14px;
}

/* ====== SOBRE NÓS ====== */
.content-section {
    margin-top: 40px;
    background: rgba(8, 8, 8, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(230, 57, 70, 0.4);
    padding: 20px 24px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.content-section h2 {
    color: #e63946;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1.1rem;
}

.content-section p {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.divider {
    margin: 30px 0;
    border: none;
    border-top: 1px solid rgba(230, 57, 70, 0.4);
}

/* ====== PRODUTOS ====== */
.products-section {
    margin-top: 20px;
}

.product-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 15px;
    align-items: flex-start;
    background: rgba(5, 5, 5, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(230, 57, 70, 0.35);
    padding: 14px 16px;
    margin-bottom: 18px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
}

.product-image {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(230, 57, 70, 0.5);
}

/* ====== RODAPÉ ====== */
footer {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(230, 57, 70, 0.4);
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

footer span {
    display: block;
    margin-top: 4px;
}

.cta-wrapper {
    margin-top: 20px;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #e63946, #ff4b5c);
    color: #fff;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(230, 57, 70, 0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.9);
    filter: brightness(1.05);
}
.section-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d9d9d9;
    margin-bottom: 10px;
}

.section-title::after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #e63946, transparent);
    vertical-align: middle;
}
.module-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 8px;
    padding: 12px 14px;
    color: #f4f4f4;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(230, 57, 70, 0.35);
    border-color: rgba(230, 57, 70, 0.8);
}

.module-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff4b5c;
    margin-bottom: 4px;
}

.module-desc {
    font-size: 0.85rem;
    color: #cfcfcf;
}
.product-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 15px;
    align-items: flex-start;
    background: rgba(5, 5, 5, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(230, 57, 70, 0.35);
    padding: 14px 16px;
    margin-bottom: 18px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(230, 57, 70, 0.4);
    border-color: rgba(230, 57, 70, 0.8);
}

.product-image {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(230, 57, 70, 0.5);
    background: #111;
}
