body {
    background-color: #d8e6e5;
    margin: 0;
    font-family: 'Lora', serif;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-group.full-width {
    flex-direction: column;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: calc(48% - 12px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group.full-width textarea {
    width: calc(100% - 22px);
}

.form-group input[type="submit"] {
    width: 100%;
    background-color: #404640;
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    margin-top: 10px;
}

.form-group input[type="submit"]:hover {
    background-color: #181a18;
}

@media (max-width: 600px) {
    .form-group input,
    .form-group textarea {
        width: calc(100% - 22px);
    }

    .logo-img-png {
        max-width: fit-content;
        max-height: 275px;
    }

    .navbar-brand img {
        width: 25px;
        height: 25px;
    }

    .navbar-nav .nav-link {
        padding: 10px;
    }

    .logo-img img {
        max-width: 100%;
    }

    .social-section {
        padding: 10px;
    }

    .social-h2 {
        font-size: 20px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }
}

.logo-img {
    display: block;
    margin: 1rem auto;
    text-align: center;
}

.logo-img img {
    max-width: 600px;
    height: auto;
}

.titulo {
    color: #080d0d;
    margin: 10rem 3rem 3rem;
}

.social-section {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 3rem;
}

.social-h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s;
}

.social-icons a:hover {
    color: #fff;
    background-color: #333;
    border-radius: 50%;
}

.social-icons i {
    font-size: 24px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}

.footer {
    background-color: #404640;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    padding: 20px;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ddd;
}

.social-links a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ddd;
}

.footer-bottom {
    text-align: center;
    padding: 10px 20px;
    border-top: 1px solid #666;
}

.footer-bottom p {
    margin: 0;
}


