* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #0d2b45;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7); /* Sobreposição para destacar o conteúdo */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 2s ease-out;
    position: absolute;
    z-index: 2;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    color: #f58220;
    animation: textFadeIn 1.5s ease-out;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin-top: 50px;
}

.btn {
    text-decoration: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, background-color 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    text-transform: uppercase;
}

.casa {
    background-color: #f58220;
    color: white;
}

.empresa {
    background-color: #1e3c72;
    color: white;
}

.btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(2px);
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Background Image */
body::before {
    content: "";
    background-image: url('2151948256.jpg'); /* Substitua com o caminho da sua imagem */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
}
