/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container principal */
.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
}

/* Seção de boas-vindas */
.welcome-section {
    background-color: #ffffff;
}

.welcome-text {
    color: rgb(186, 30, 52);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Container dos botões */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Botões */
.btn {
    width: 100%;
    max-width: 400px;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: rgb(186, 30, 52);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(186, 30, 52, 0.3);
}

.btn-primary:hover {
    background-color: rgb(166, 20, 42);
    box-shadow: 0 6px 12px rgba(186, 30, 52, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(186, 30, 52, 0.3);
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .welcome-text {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .btn {
        font-size: 16px;
        padding: 16px 25px;
    }
}

/* Responsividade para smartphones */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .logo-container {
        margin-bottom: 30px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .welcome-text {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .btn {
        font-size: 15px;
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .buttons-container {
        gap: 15px;
    }
}
