/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7d833, #1c95ad);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loading-slogan {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1c95ad;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #1c95ad;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid #f7d833;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-desktop {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #1c95ad;
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1c95ad;
    margin: 3px 0;
    transition: 0.3s;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-auth {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background: #1c95ad;
    color: white;
}

.btn-register {
    background: #ed1847;
    color: white;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-mobile {
    display: none;
    background: white;
    border-top: 1px solid #eee;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-menu {
    list-style: none;
    padding: 20px 0;
}

.nav-mobile-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.nav-mobile-link:hover {
    background: #f8f9fa;
}

/* Main Content */
.main {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
}

.section {
    display: none;
    padding: 40px 0;
}

.section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #1c95ad;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2rem;
    color: #1c95ad;
    margin-bottom: 10px;
}

/* Buttons */
.btn-primary {
    background: #1c95ad;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: #f7d833;
    color: #1c95ad;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-danger {
    background: #ed1847;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Section Cards */
.section-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

/* Image Slider */
.slider-container {
    position: relative;
    height: 400px;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 15px;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #f7d833;
}

/* Live Section */
.live-section {
    margin-bottom: 40px;
}

.live-info {
    text-align: center;
    margin-bottom: 30px;
}

.live-info h2 {
    color: #1c95ad;
    margin-bottom: 10px;
}

.viewers-count {
    background: #ed1847;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stream-container {
    background: #000;
    border-radius: 15px;
    aspect-ratio: 16/9;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stream-placeholder {
    text-align: center;
    color: white;
    padding: 40px;
}

.stream-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.stream-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.interaction-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.message-container,
.birthday-container {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.message-container h3,
.birthday-container h3 {
    color: #1c95ad;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group textarea,
.input-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    resize: vertical;
}

.input-group textarea {
    min-height: 80px;
}

.platforms-section {
    text-align: center;
}

.platforms-section h3 {
    color: #1c95ad;
    margin-bottom: 20px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.platform-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.platform-button:hover {
    transform: translateY(-2px);
}

.platform-button.youtube { background: #ed1847; }
.platform-button.facebook { background: #1877f2; }
.platform-button.instagram { background: #e4405f; }
.platform-button.tv { background: #1c95ad; }

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

.platform-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.platform-tag {
    background: #f7d833;
    color: #1c95ad;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 2rem;
    color: #1c95ad;
    margin-bottom: 5px;
}

.about-section h3 {
    font-size: 1.2rem;
    color: #ed1847;
    font-style: italic;
    margin-bottom: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: #1c95ad;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.menu-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.menu-item span {
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Content Preview */
.content-preview {
    margin-bottom: 40px;
}

.content-section {
    margin-bottom: 50px;
}

.section-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.content-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.content-card-body {
    padding: 20px;
}

.content-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.content-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.content-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.8rem;
}

.category-tag {
    background: #f7d833;
    color: #1c95ad;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.content-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

/* Report Section */
.report-section {
    margin-bottom: 40px;
}

.report-card {
    border-left: 4px solid #ed1847;
}

.report-types {
    margin: 20px 0;
    text-align: left;
}

.report-types h4 {
    color: #333;
    margin-bottom: 10px;
}

.report-types ul {
    list-style: none;
    padding-left: 10px;
}

.report-types li {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

.anonymous-text {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 15px;
}

/* Search and Filter */
.search-filter-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #1c95ad;
}

.search-btn {
    background: #1c95ad;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #157a94;
}

.categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    background: #f0f0f0;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
    background: #1c95ad;
    color: white;
}

/* Jogos Section */
.intro-section {
    text-align: center;
    margin-bottom: 40px;
}

.intro-section h2 {
    color: #1c95ad;
    margin-bottom: 15px;
}

.features-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.features-section h3 {
    text-align: center;
    color: #1c95ad;
    margin-bottom: 25px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Denúncias Section */
.info-section {
    margin-bottom: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ed1847;
}

.info-card h2 {
    color: #1c95ad;
    margin-bottom: 15px;
}

.report-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    color: #1c95ad;
    margin-bottom: 15px;
}

.toggle-buttons {
    display: flex;
    gap: 10px;
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    background: #f9f9f9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.toggle-btn.active {
    background: #1c95ad;
    color: white;
    border-color: #1c95ad;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1c95ad;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.report-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.report-type-btn {
    padding: 12px;
    border: 2px solid #ddd;
    background: #f9f9f9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
}

.report-type-btn.active,
.report-type-btn:hover {
    background: #ed1847;
    color: white;
    border-color: #ed1847;
}

.urgency-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.urgency-btn {
    padding: 12px;
    border: 2px solid #ddd;
    background: #f9f9f9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.urgency-btn.active {
    background: #f7d833;
    color: #1c95ad;
    border-color: #f7d833;
}

.privacy-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #e8f4f8;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.privacy-icon {
    font-size: 1.5rem;
    color: #1c95ad;
}

.privacy-notice p {
    color: #1c95ad;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.emergency-section {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.emergency-section h3 {
    color: #ed1847;
    margin-bottom: 20px;
}

.emergency-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.emergency-btn {
    background: #ed1847;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #d41643;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: #1c95ad;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 30px;
}

.modal-body img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-body h3 {
    color: #1c95ad;
    margin-bottom: 15px;
}

.modal-body p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}

.modal-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.modal-category {
    background: #f7d833;
    color: #1c95ad;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #f7d833;
    margin-bottom: 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    background: #1c95ad;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f7d833;
    color: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.hidden { display: none; }
.visible { display: block; }