@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    background-color: #fff;
    color: #000;
}

/* Estilização da Navbar */
.navbar {
    background-color: #8A3030; /* Cor principal */
    padding: 15px 20px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 600;
}

#logo {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF8225 !important; /* Cor de destaque */
}

/* Estilização do Container Principal */
#containerMain2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    gap: 20px;
}

#containerMain2 > div {
    flex: 1;
    text-align: center;
}

.title {
    color: #8A3030; /* Cor principal */
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

h2 {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn1 {
    background-color: #FF8225; /* Cor de destaque */
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn1:hover {
    background-color: #e6751e;
}

.btn1 a {
    color: #fff;
    text-decoration: none;
}

#containerMain2 .row {
    margin: 20px 0;
}

/* Estilização da Imagem */
#formularioEspera {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsividade */
@media (max-width: 768px) {
    #containerMain2 {
        flex-direction: column;
        text-align: center;
        margin: 20px 10px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .btn1 {
        padding: 10px 20px;
        font-size: 14px;
    }

    .demo-img {
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 20px;
    }

    #logo {
        height: 30px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }
}