@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+SK:wght@100..400&display=swap');

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    position: relative;
    background: url('/assets/eventos.png') no-repeat center top;
    background-size: cover;
    height: 50vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 0 0 25px 25px;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
}

.header-text {
    padding: 20px;
    text-align: right;
    margin-right: 20px;
}

.header-text h1 {
    color: #F3F3F3;
    font-size: 2.5em;
    margin: 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: #FAFAFA;
    flex: 1;
}

.left, .right {
    flex: 1;
    margin: 20px;
}

.address h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.address p {
    font-size: 1em;
    line-height: 1.6;
}

.address a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.address a:hover {
    text-decoration: underline;
}

.contact-form, .booking-form {
    background-color: #FFF;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(100% - 40px);
    max-width: 600px;
    border-radius: 25px;
}

.contact-form h3, .booking-form h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
}

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

.contact-form label, .booking-form label {
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea, .booking-form input {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #CCC;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button, .booking-form button {
    padding: 15px;
    background-color: #333;
    color: #FFF;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover, .booking-form button:hover {
    background-color: #555;
}

.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #FFF;
    box-sizing: border-box;
    font-size: 0.9em;
}

.bottom-footer p {
    margin: 0;
}

.bottom-footer a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
}

.bottom-footer a:hover {
    text-decoration: underline;
}

.reservation-button {
    position: absolute;
    top: 20px;
    left: 150px;
    padding: 10px 20px;
}

.reservation-button a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

.reservation-button a:hover {
    color: #ccc;
}
