body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.body_reserva{
	background-color: #f4f4f4;
	padding: 20px;
	display: flex;
	justify-content: center;
}

header {
    background-color: #A2A75E;
    color: #FFF;
    text-align: center;
    padding: 5px 0;
}

.logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 80px;
    margin-right: 20px;
}

nav {
    background-color: #E8E9E9;
    position: relative;
}

nav .menu-icon {
    display: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 10px 15px;
}

nav ul li a {
    text-decoration: none;
    color: #A2A75E;
	font-weight: bolder;
}

section {
    padding: 20px;
    margin: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    text-align: center;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.cta-button {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
	font-weight: bolder;
	cursor: pointer;
}

.cta-button:hover {
    background-color: #218838;
}

#reservationForm input{
	padding: 5px;
}

/* Estilos para secciones de servicios y tarifas */
#servicios, #tarifas, #reserva, #contacto, #nosotros, #cotizacion {
    padding: 20px;
    margin: 20px auto;
    max-width: 1000px;
}

#reserva{
	background-color: #F9F9F9;
}

#servicios h2, #tarifas h2, #reserva h2, #contacto h2, #nosotros h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #A5BB67;
}

.servicio, .tarifas, .descuentos {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.servicio h3, .tarifas h3, .descuentos h3 {
    color: #333;
}

.servicio ul, .tarifas ul, .descuentos ul {
    list-style-type: disc;
    margin-left: 20px;
}

.servicio p, .tarifas p, .descuentos p {
    margin: 10px 0;
}

#formulario-reserva{
	display: flex;
    flex-direction: column;
    align-items: center;
}

form input[type="text"] {
	width: 100%;
}

.section-img {
	max-width: 800px;
	width: 90%;
	position: relative;
	display: block;
	margin: 20px auto;
	border-radius: 50px;
}
.section-img:hover, .img-nosotros img:hover {
	opacity: 0.8;
}

.img-nosotros {
	display: flex;
    justify-content: center;
	gap: 6%;
}

.img-nosotros img {
	width: 45%;
	border-radius: 10px;
}

#reservationForm {
	background: #fff;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
	display: block;
	margin-top: 10px;
	font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
	width: calc(100% - 20px);
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type="submit"] {
	background-color: #28a745;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.vehicle-container {
	text-align: center;
	margin-top: 20px;
}

.vehicle-container {
	text-align: center;
	margin-top: 20px;
}

.vehicle-option {
	display: inline-block;
	border: 2px solid #ccc;
	padding: 10px;
	margin: 10px;
	text-align: center;
	cursor: pointer;
	border-radius: 8px;
	transition: border-color 0.3s ease;
}

.vehicle-option img {
	width: 100px;
	height: auto;
	border-radius: 8px;
}

.vehicle-option.selected {
	border-color: #28a745;
}


.container {
	display: flex;
	max-width: 1200px;
	width: 100%;
	flex-wrap: wrap;
}

.summary, .form-container {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin: 10px;
	flex: 1;
	box-sizing: border-box;
}

.summary {
	flex: 1;
	margin-right: 20px;
}

.summary p {
	font-weight: bolder;
}

.summary p span {
	font-weight: normal;
	color: #A2A75E;
}

.form-container {
	flex: 1;
}

#map {
	width: 100%;
	height: 300px;
	margin-top: 20px;
	border-radius: 8px;
}



@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    nav .menu-icon {
        display: block;
    }
	form input[type="text"] {
		width: 90%;
	}
	.cta-reserva{
		margin: 10px 0;
	}
	.container {
		flex-direction: column;
	}

	.summary, .form-container {
		flex: none;
		margin: 10px 0;
	}
}
