@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body, html {
    overflow-x: hidden;
    background-image: url(/src/images/9495652.png);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}



.cabecalho {
    background-color: rgb(38, 38, 38);
}


.contact-form-section {
    padding: 40px 20px;
   
  
}

.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 950px;
    margin: 0 auto;
    margin-top: 60px;
    
}
.contact-container-info{
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.contact-info {
    flex: 1;
    max-width: 160px;
}

.contact-container-info .contact-info img{
    width: 26px;
    height: 26px;
   
}

.contact-info p {
    margin: 10px 0;
    padding-right: 50px;
    font-size: 1.1em;
    color: rgb(0, 4, 3);
}

.contact-form {
    flex: 2;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(109, 18, 18, 0.1);
}

.contact-form h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #ff7f2a;
}

.contact-form p {
    margin-bottom: 20px;
    color: #666;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;
}

.contact-form button {
    padding: 12px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

footer {
    margin-top: 400px;
}

@media screen and (max-width: 512px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        
    }

    .cabecalho{
        position: relative;
    }

    .logo-1meta {
        position: absolute;
        left: 155px;
    }

    .logo{
        width: 100px;
        height: auto;
      
    }


    .contact-container-info {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .contact-info {
        max-width: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-info p {
        font-size: 1em;
        padding: 0;
    }

    .contact-form {
        width: 90%;
        padding: 15px;
    }

    .contact-form h2 {
        font-size: 1.5em;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9em;
    }

    .contact-form button {
        font-size: 0.9em;
        padding: 10px 15px;
    }
}