/* Corpo e Cabeçalho */
body {
    background: linear-gradient(135deg, #0d1117, #1e1e1e);
    background-attachment: fixed;
    animation: gradientAnimation 15s infinite;
    color: #ffffff;
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2 {
    font-family: 'Audiowide', sans-serif;
    color: #ff7a18;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

header {
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    padding-left: 60px;
    color: #2a7ae4;
    box-shadow: 0 4px 8px rgba(11, 4, 107, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: top 0.3s, background-color 0.3s;
}

header.hidden {
    top: -100px;
}

/* Ícone de Menu */
#menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#menu-icon:hover {
    background-color: rgba(42, 122, 228, 0.7);
}

#menu-icon span {
    width: 35px;
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#menu-icon.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#menu-icon.active span:nth-child(2) {
    opacity: 0;
}

#menu-icon.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Menu Lateral */
#side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1500;
    transition: left 0.3s ease;
}

#side-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#side-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
    display: block;
}

#side-menu ul li a:hover {
    background-color: #e46e2a;
    transform: translateX(10px);
}

/* Menu Aberto */
#side-menu.open {
    left: 0;
}

/* Seção de Chamada */
.chamada {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8), rgba(51, 51, 51, 0.8));
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.chamada:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 25px rgba(42, 122, 228, 0.3);
}

.chamada-texto {
    margin: 5%;
    max-width: 800px;
}

.chamada h2 {
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
}

.chamada p {
    font-size: 20px;
    color: #f0f0f0;
    line-height: 1.6;
}

.video {
    padding-right: 25px;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.video iframe {
    border-radius: 15px;
    width: 100%;
    max-width: 800px;
    height: 450px;
}

/* Seções de Conteúdo */

/* Transição suave entre as seções */
section {
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateY(50px);
}
  
section.visible {
    opacity: 1;
    transform: translateY(0);
}

.moni-custo {
    padding: 40px 20px;
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.7), rgba(51, 51, 51, 0.7));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.monitores {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 0;
}

.monitores img {
    opacity: 0.7;
    height: 250px;
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 10px;
}

.monitores img:hover {
    opacity: 1;
    transform: scale(1.05);
    border: 2px solid #2a7ae4;
}

.beneficio {
    color: #2a7ae4;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.beneficio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #2a7ae4, #ff7a18);
    border-radius: 3px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; /* Esconde a barra de rolagem */
}

.carousel {
    display: flex;
    gap: 20px; /* Espaçamento entre as imagens */
    scroll-behavior: smooth; /* Rolagem suave */
    overflow-x: hidden; /* Esconde o overflow horizontal */
    padding: 20px 0;
}

.carousel img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(42, 122, 228, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.carousel-btn:hover {
    background-color: #ff7a18;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Seção de Contato */
.contato-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.contato-container p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(42, 122, 228, 0.2), rgba(255, 122, 24, 0.2));
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(42, 122, 228, 0.5);
    background: linear-gradient(135deg, rgba(42, 122, 228, 0.4), rgba(255, 122, 24, 0.4));
}

.social-link i {
    font-size: 20px;
}

.social-link:nth-child(1) i {
    color: #E1306C; /* Instagram */
}

.social-link:nth-child(2) i {
    color: #FF0000; /* YouTube */
}

.social-link:nth-child(3) i {
    color: #7289DA; /* Discord */
}

/* Copyright */
.copyright {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.7;
}

/* Ícones nos títulos */
.beneficio i, h2 i {
    margin-right: 10px;
    color: #ff7a18;
}

/* Rodapé */
footer {
    background: linear-gradient(90deg, #2a7ae4, #121212);
    color: #ffffff;
    text-align: center;
    padding: 30px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

footer a {
    text-decoration: none;
    color: #ff7a18;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

footer a img {
    transition: transform 0.3s ease;
    vertical-align: middle;
}

footer a img:hover {
    transform: scale(1.2);
}

/* Botão de Voltar ao Topo */
#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background: radial-gradient(circle, #2a7ae4, #121212);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

#topBtn:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 15px rgba(42, 122, 228, 0.8);
}

/* Media Queries */
@media (max-width: 1024px) {
    .chamada {
        flex-direction: column;
        padding: 40px 20px;
    }

    .chamada h2 {
        font-size: 28px;
    }

    .chamada p {
        font-size: 18px;
    }

    .video iframe {
        width: 100%;
        height: auto;
    }

    .monitores img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px;
        padding-left: 80px;
    }

    nav h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .chamada {
        padding: 30px 15px;
        text-align: center;
        margin: 10px;
    }

    .chamada h2 {
        font-size: 24px;
    }

    .chamada p {
        font-size: 16px;
    }

    .monitores {
        flex-direction: column;
        align-items: center;
    }

    .monitores img {
        height: 180px;
        width: 100%;
        max-width: 300px;
    }
    
    .carousel img {
        width: 250px;
    }

    .carousel-btn {
        font-size: 18px;
        padding: 10px;
    }
    
    .beneficio {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px;
        padding-left: 80px;
    }
    
    nav h1 {
        font-size: 28px;
    }

    .chamada {
        padding: 20px 15px;
        margin: 10px;
    }

    .chamada h2 {
        font-size: 20px;
    }

    .chamada p {
        font-size: 14px;
    }

    .monitores img {
        height: 150px;
        width: 100%;
    }

    .carousel img {
        width: 220px;
    }
    
    .beneficio {
        font-size: 20px;
    }

    footer p {
        font-size: 16px;
    }
}

/* Seção de Destaques */
.destaques-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.destaque-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.destaque-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 122, 228, 0.4);
}

.destaque-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.destaque-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.destaque-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destaque-card:hover .destaque-img img {
    transform: scale(1.1);
}

.destaque-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(90deg, #2a7ae4, #ff7a18);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.destaque-content {
    padding: 20px;
}

.destaque-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #fff;
}

.destaque-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.destaque-btn {
    display: inline-block;
    background: linear-gradient(90deg, #2a7ae4, #ff7a18);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.destaque-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(42, 122, 228, 0.5);
}

/* Seção de Notícias */
.noticias-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.noticia-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42, 122, 228, 0.4);
}

.noticia-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.noticia-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-img img {
    transform: scale(1.1);
}

.noticia-data {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.noticia-content {
    padding: 20px;
}

.noticia-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #fff;
}

.noticia-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.noticia-btn {
    display: inline-block;
    background: linear-gradient(90deg, #2a7ae4, #ff7a18);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.noticia-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(42, 122, 228, 0.5);
}

/* Seção FAQ */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid #007bff;
    border-radius: 25px;
    background: transparent;
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: #007bff;
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #343a40;
}

.toggle-icon {
    font-size: 24px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Seção de Contato */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item i {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

.info-item h3 {
    margin: 10px 0;
    color: #343a40;
}

.info-item p {
    color: #6c757d;
    margin: 0;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #343a40;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

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

.submit-btn {
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .faq-categories {
        flex-wrap: wrap;
    }
    
    .category-btn {
        width: calc(50% - 10px);
    }
}

/* Mensagens de Feedback */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideIn 0.5s ease;
}

.message.success {
    background: linear-gradient(135deg, #00ff88, #00a1ff);
    color: white;
}

.message.error {
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
}

.message i {
    font-size: 24px;
}

.message p {
    margin: 0;
    font-size: 16px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
