* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        to bottom,
         #f7f1e6 0%,
         #f6f0e5 45%,
         #eef1f8 100%
    );
}

.logo {
    width: 70%;
    height: auto;
}

hr {
    width: 30%;
    height: 1px;
    border: none;
    border-radius: 999px;
    margin: 10px 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(201, 166, 75, 0.4) 20%,
        #C9A64B 50%,
        rgba(201, 166, 75, 0.4) 80%,
        transparent 100%
    );
}

.title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.description {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    text-align: center;
    max-width: 300px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.loading-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:30px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#C9A64B;
    opacity:.3;
    transition:.3s;
}

.dot.active{
    opacity:1;
    transform:scale(1.4);
}



@media (min-width: 768px) {
    .logo {
        width: 40%;
    }

    hr {
        width: 20%;
    }

    .description {
        max-width: 380px;
    }
}

@media (min-width: 1200px) {
    .logo {
        width: 25%;
    }

    .description {
        max-width: 450px;
    }

    hr {
        height: 2px;
        width: 15%;
    }
}