/* 🔹 Reset básico */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Archivo+Black&family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
}

:root {
    font-size: 62.5%;
    --font-color: #e3e3e3;
    --details: #2980b9;
    --bg: #e0e0e0;
    --bg-black: #141414;
}

a {
    text-decoration: none;
}

input {
    width: 100%;
    padding: 8px;
}

/* 🔹 Corpo */
body {
    background-color: var(--neutral-lightest);
    ;
    color: var(--font-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h2 {
    font-size: 2rem;
}

.button-voltar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff7400;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    margin-bottom: 20px;
  }
  
  .button-voltar:hover {
    background-color: #ff8000;
  }
  


  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000099;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .popup-box {
    background: #1f1f1f;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    max-width: 400px;
    width: 100%;
  }
  
  .popup-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  
  .btn-confirmar {
    background-color: #ff4d4d;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .btn-cancelar {
    background-color: #444;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  

/* 🔹 Estilo Principal */
main {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 30px;
    width: 100%;
    background: #1c1a1a;
    ;
}

.eventos-principais {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
}

.sub-title {
    font-size: 2.5rem;
    border-bottom: 1px solid var(--font-color);
    margin-bottom: 15px;
}

.divisor {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.divisor i {
    font-size: 3rem;
}

.divisor::after,
.divisor::before {
    content: '';
    display: block;
    height: 5px;
    width: 100px;
    background: #ccc;
    border-radius: 10px;
    margin: 0 10px;
}

/* 🔹 Botões */
button {
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* 🔹 Rodapé */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
    font-size: 0.9rem;
}

footer a {
    color: white;
}

/* 🔹 Seção Hero */
.hero {
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: 'Lobster', cursive;
    color: #123757;
}

.hero p {
    font-size: 2rem;
    margin: 20px 0;
    color: #666;
}

.category-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card .icon-category {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    padding: 10px;
    background-color: rgb(175, 175, 175);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #123757;
    transition: font-size 0.3s, background-color 0.3s ease-in-out;
}

.category-card .icon-category:hover {
    font-size: 5rem;
    background-color: transparent;
}

.category-card span {
    font-size: 2rem;
    color: #fff;
    transition: font-size 0.3s;
}

.category-card .icon-category:hover+span {
    font-size: 1.8rem;
}

/* 🔹 Estilo dos Eventos em Destaque */
.eventos-destaque {
    padding: 10px 0;
    border-radius: 4px;
    text-align: center;
}

.eventos-destaque h2 {
    border-bottom: 2px solid #2980b9;
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* 🔹 Carrossel de Eventos */
.carrossel-wrapper {
    display: flex;
    gap: 20px;
}

.carrossel {
    display: flex;
    overflow-x: auto;
    justify-content: space-between;
    gap: 20px;
    scroll-snap-type: x mandatory;
}

.carrossel::-webkit-scrollbar {
    display: none;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 20px;
}

.evento-card {
    width: 250px;
    background: #121212;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


.evento-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.evento-info-name {
    font-weight: 600;
    font-size: 1.5rem;
    color: #fff;
}

.evento-info-data,
.evento-info-local {
    font-size: 0.9rem;
    color: #ccc;
}

.evento-info-local {
    font-size: 1.2rem;
}

.evento-card .btn {
    display: block;
    margin-top: 10px;
    text-align: center;
    padding: 8px;
}

.evento-card:hover {
    transform: scale(1.05);
}

.evento-card img {
    height: 180px;
}

.img-evento {
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
}

/* 🔹 Estilos do Container de Autenticação */
.auth-container {
    color: #313131;
    width: 350px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🔹 Título */
.auth-container h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}


/* 🔹 Grupo de Entradas */
textarea {
    width: calc(100% - 20px);
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

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

/* 🔹 Labels */
.input-group label:not(.termos-label) {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
/* 🔹 Campos de Entrada */
.input-field {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.input-field:focus {
    border-color: #1e88e5;
    outline: none;
}

/* 🔹 Botão */
.btn-submit {
    background-color: #1e88e5;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #1565c0;
}

/* 🔹 Link de Cadastro */
.auth-container p {
    text-align: center;
    margin-top: 20px;
}

.auth-container p a {
    text-decoration: none;
    color: #1e88e5;
    font-weight: bold;
}

.auth-container p a:hover {
    text-decoration: underline;
}


/* Pagina do Evento */

/* Pagina do Evento */