/* Reset completo e base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
    position: relative;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #000;
    color: white;
}

/* slid */
.slideshow {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}
/* Indicadores de debug */
.debug {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    z-index: 100;
    border-radius: 5px;
}
/* Card principal */
.card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    min-height: 600px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.089);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Logo */
.logo {
    margin: 40px 0 20px;
}

.logo img {
    max-width: 200px;
    width: 80%;
    height: auto;
}

/* Slogan */
.nem-marca {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.slogan {
    margin-bottom: 70px;
    color: rgb(233, 233, 233);
}

/* Container de botões */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Botões com alinhamento perfeito */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px 14px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Efeito hover dos botões */
.btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ícones dentro dos botões */
.btn img {
    width: 22px;
    height: 22px;
    position: absolute;
    left: 24px;
}

/* Texto dos botões */
.btn span {
    margin-left: -22px; /* Compensa o ícone */
    width: calc(100% - 22px);
    text-align: center;
}

/* Container principal para os botões */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

/* Estilo base do botão */
.btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start; /* Alinha conteúdo à esquerda */
    width: 100%;
    height: 30px;
    max-width: 100px;
    padding: 3px 3px 3px 8px; /* Mais padding à esquerda para o ícone */
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Efeito hover */
.btn-new:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


.btn-new img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 15px;
}
