/* Estilos gerais */
* {
    margin: 0;
  }

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color:  rgb(224, 224, 224);
}

.header {
    background-color: #00A884;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}


.logo {
    width: 75px;
    height: 75px;
    margin-right: 10px;
}

.site-name{
    font-size: 47px;
    margin: 0px;
    font-family: 'Fjalla One', sans-serif;
    letter-spacing: 2px;
}

.main-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.instructions {
    margin-bottom: 5px;
    color: rgb(56, 56, 56);
    font-family: 'Roboto', sans-serif;
}

.instructions h1{
    margin-bottom: 5px
}

.instructions h4{
    margin-bottom: 25px
}


.dropdown {
    margin-right: 10px;
    max-width: 150px;

    color: rgb(46, 46, 46);
    border-color: rgb(207, 207, 207);
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    
    
}

.phone-number {
    width: 200px;
    margin-bottom: 10px;

    
    color: rgb(46, 46, 46);
    border-color: rgb(207, 207, 207);
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
}

.message {
    width: 100%;
    height: 100px;
    resize: vertical;
    margin-bottom: 10px;
    box-sizing: border-box;

    color: rgb(46, 46, 46);
    border-color: rgb(207, 207, 207);
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
}

.start-conversation {
    background-color: #00A884;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

    transition: background-color 0.1s ease;
}

.start-conversation:hover {
    background-color: #008069;
}

.footer {
    background-color: #00A884;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    color: #333;
    font-weight: bold;
    
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-weight: bold;
    
}

.company-name{
    color: white;
}

.social-icon{
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.linkEmpresa{
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.advertisement-top {
    /* Estilos para o anúncio acima do conteúdo principal */
    margin-bottom: 100px; /* Espaçamento entre o anúncio e o conteúdo principal */
    /* Adicione outros estilos conforme necessário */
}

.advertisement-bottom {
    /* Estilos para o anúncio abaixo do conteúdo principal */
    margin-top: 100px; /* Espaçamento entre o anúncio e o conteúdo principal */
    /* Adicione outros estilos conforme necessário */
}