/* Reset básico */
:root {
    --default-font-family: futureGeisha, HalvarMittel-BlkSuSlanted, Demonsdcyberglitch-yw6GM;
}

* {
    padding: 0;
    box-sizing: border-box;
}


/* Fonts */

@font-face {
    font-family: 'Future Geisha';
    src: url('./assets/fonts/futureGeisha.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Halvar Mittel';
    src: url('./assets/fonts/HalvarMittel-BlkSuSlanted.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Demons Cyber Glitch';
    src: url('./assets/fonts/Demonsdcyberglitch-yw6GM.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Future Geisha', Halvar Mittel, Demons Cyber Glitch; 
}

h1, h2, h3, .section-title {
    font-family: 'Halvar Mittel', Demons Cyber Glitch; 
}

.special-text {
    font-family: 'Demons Cyber Glitch', Halvar Mittel; /
}

/* Estilos básicos */
body {
    font-family: Future Geisha, Halvar Mittel;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-size: cover;
    background-position: center;
}

/* Centralizar logo sem empurrar o conteúdo */
.header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Garante que a logo fique sobreposta ao conteúdo */
    margin-top: 20px; /* Ajuste conforme necessário */
}

.logo img {
    max-width: 100%;
    height: 366px;
}

/* Centralizar conteúdo principal */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    margin-top: 150px; /* Ajuste conforme necessário para deixar espaço para a logo */
}

.artists {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Ajuste o espaçamento entre os artistas e o contador */
    margin-bottom: 20px;
}

.artist img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

/* Temporizador */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
}

.countdown-item {
    text-align: center; /* Centraliza o texto em relação ao número */
}

.countdown-item .days,
.countdown-item .hours,
.countdown-item .minutes,
.countdown-item .seconds {
    background: #333;
    padding: 10px;
    border-radius: 5px;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.countdown-item .label {
    font-size: 1rem;
    color: #fff;
}

.btn-compre-agora {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    background: linear-gradient(90deg, #00d2ff, #f30b73);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: -40px;
}

.btn-compre-agora:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.event-details {
    margin-top: 20px;
    font-size: 1rem;
}


/* Seção Cyber Funk */
.cyber-funk-section {
    padding: 20px;
    text-align: center;
    color: #fff;
}

.cyber-funk-section .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #00d2ff;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 5px #00d2ff,
        0 0 10px #00d2ff,
        0 0 20px #00d2ff,
        0 0 40px #f30b73,
        0 0 80px #f30b73;
    filter: blur(1px);
}

.cyber-funk-section-list {
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 20px #f30b73,
        0 0 30px #f30b73,
        0 0 40px #f30b73,
        0 0 50px #f30b73,
        0 0 60px #f30b73,
        0 0 70px #f30b73;
    filter: blur(1px);
    text-align: center; /* Centraliza o texto horizontalmente */
}

.cyber-funk-section .section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #f30b73;
    z-index: -1;
    text-shadow: 
        0 0 20px #f30b73,
        0 0 30px #f30b73,
        0 0 40px #f30b73,
        0 0 50px #f30b73,
        0 0 60px #f30b73,
        0 0 70px #f30b73;
    filter: blur(5px);
    opacity: 0.7;
}

.cyber-funk-section .artists-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cyber-funk-section .artist-card {
    background-color: #00d2ff;
    border-radius: 10px;
    padding: 10px;
    max-width: 300px;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cyber-funk-section .artist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cyber-funk-section .artist-card img {
    width: 100%;
    border-radius: 5px;
}

.cyber-funk-section .artist-name {
    background-color: #00d2ff;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
    border-radius: 5px;
}

/* Seção Cyber Eletro */
.cyber-electro-section {
    padding: 20px;
    text-align: center;
    color: #fff;
}

.cyber-electro-section .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ff00ff;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 5px #ff00ff,
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 40px #00d2ff,
        0 0 80px #00d2ff;
    filter: blur(1px);
}

.cyber-electro-section .section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #00d2ff;
    z-index: -1;
    text-shadow: 
        0 0 20px #00d2ff,
        0 0 30px #00d2ff,
        0 0 40px #00d2ff,
        0 0 50px #00d2ff,
        0 0 60px #00d2ff,
        0 0 70px #00d2ff;
    filter: blur(5px);
    opacity: 0.7;
}

.cyber-electro-section .artists-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cyber-electro-section .artist-card {
    background-color: #ff00ff;
    border-radius: 10px;
    padding: 10px;
    max-width: 300px;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cyber-electro-section .artist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cyber-electro-section .artist-card img {
    width: 100%;
    border-radius: 5px;
}

.cyber-electro-section .artist-name {
    background-color: #ff00ff;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
    border-radius: 5px;
}

.btn-group {
    display: flex;
    justify-content: center; /* Centraliza os botões */
    gap: 20px; /* Espaço entre os botões */
    margin-top: 20px;
}

.btn-compre-sympla, .btn-compre-shotgun {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-compre-sympla {
    background: linear-gradient(90deg, #00d2ff, #f30b73); /* Gradiente azul para rosa */
}

.btn-compre-shotgun {
    background: linear-gradient(90deg, #f30b73, #00d2ff); /* Gradiente rosa para azul */
}

.btn-compre-sympla:hover, .btn-compre-shotgun:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


/* Footer */
.site-footer {
    color: #fff;
    padding: 40px 20px;
    text-align: left;
    position: relative;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    min-width: 150px;
    text-align: left;
    margin-right: 40px; /* Espaçamento adicional à direita da logo */
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-contact {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-contact h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.footer-contact p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 2px solid #00d2ff;
    border-radius: 5px;
    font-size: 1rem;
    background-color: transparent;
    color: #fff;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.btn-enviar {
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #00d2ff, #f30b73);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
}

.btn-enviar:hover {
    background: linear-gradient(90deg, #00a6e3, #d2165e);
}

.footer-social {
    flex: 1;
    min-width: 150px;
    text-align: right;
}

.footer-social a {
    display: inline-block;
    color: #ff00ff;
    margin-left: 10px;
    font-size: 30px;
}

.footer-social a:hover {
    color: #00d2ff;
}

.social-icon img {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-contact,
    .footer-social {
        min-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo img,
    .social-icon img {
        margin-bottom: 10px;
    }
}


/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .cyber-funk-section-list {
        font-size: 1.5rem; /* Ajusta o tamanho da fonte para telas menores */
        padding: 0 15px;
    }

    .cyber-funk-section-list span {
        display: block; /* Faz com que cada span ocupe uma linha inteira */
        margin-bottom: 10px; /* Adiciona espaçamento entre as linhas */
    }
    .cyber-funk-section-list span::before {
        content: ""; 
    }
    

    .footer-contact,
    .footer-logo,
    .footer-social {
        min-width: 92%;
        text-align: center;
        margin-bottom: 0px;
    }

    .footer-logo img,
    .social-icon img {
        margin-bottom: 10px;
    }
}



/* Responsividade para Mobile */
@media (max-width: 768px) {
    .cyber-funk-section .artists-grid,
    .cyber-electro-section .artists-grid {
        flex-direction: column;
    }

    .cyber-funk-section .artist-card,
    .cyber-electro-section .artist-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
}


/* Responsividade para Mobile */
@media (max-width: 768px) {
    .artists-grid {
        flex-direction: column;
    }

    .artist-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
}



/* Responsividade */
@media (max-width: 768px) {
    .artists {
        flex-direction: column;
    }

    .artist {
        margin-bottom: 20px;
    }

    .countdown-timer {
        flex-direction: column;
        gap: 5px;
    }

    .btn-compre-agora {
        padding: 10px;
    }
    .logo img {
        max-width: 100%;
        height: 175px;
    }

    .artists {
        flex-direction: column;
    }

    .artist {
        margin-bottom: 20px;
    }

    .countdown-timer {
        flex-direction: row; /* Altera para row para que os itens fiquem lado a lado */
        justify-content: center; /* Centraliza os itens */
        gap: 10px; /* Ajuste o espaçamento entre os itens */
    }

    .btn-compre-agora {
        padding: 10px;
    }

    .logo {
        width: 200px; /* ajuste conforme necessário */
        margin-top: 40px;
        margin-bottom: -57px; /* espaço entre a logo e o iframe */
    }

    .cyber-funk-section-list .section-title:nth-child(1)::before {
        content: "ACESSO GRATUITO!";
    }

    .cyber-funk-section-list .section-title:nth-child(2)::before {
        content: "LISTA VIP";
    }

    .cyber-funk-section-list .section-title:nth-child(3)::before {
        content: "LUGARES LIMITADOS!";
    }

    /* Esconde o texto original */
    .cyber-funk-section-list .section-title {
        visibility: hidden;
    }

    /* Mostra o novo texto */
    .cyber-funk-section-list .section-title::before {
        visibility: visible;
        display: block;
    }
}

/* Background para desktop */
@media (min-width: 769px) {
    body {
        background-image: url('../img/backgroundDesktop.webp');
    }
}

/* Background para mobile */
@media (max-width: 768px) {
    body {
        background-image: url('../img/backgroundMobile.webp');
    }
}
