 /* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
}
.contenedor {
	width: 90%;

	margin: auto;
	overflow: hidden;
}
/* ----- ----- HEADER ----- ----- */

header {
	width: 100%;
	
}


header .contenedorHero {
	position: relative;
	height: 100%;
}

header .menu {
	width: 100%;
	background-color: rgb(51, 152, 219);
	display: flex;
	justify-content: space-between;
}

header .menu a {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	display: inline-block;
	margin: 40px 20px;
	text-decoration: none;
	position: relative;
}
header .menu img {
	max-width: 120px;
}

header .menu a:hover {
	text-decoration: underline;
}

.menu-toggle{
	display: none;
}

.logo{
	padding: 10px 0 10px 10px;
}

.hero{
	width: 100%;
	background: url('../img/bacalar.jpeg'), #c6a43f;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	height: 900px;
}

.hero .textos h3 {
	font-weight: 300;
	font-size: 25px;
	font-style: italic;
}

.hero .textos .nombre span {
	font-weight: 300;
}

.textos {
	max-width: 460px;
	margin-top: -200px;
}

.textos img {
	width: 100%;
}

.hero .textos {
	width: 100%;
	color: #fff;
	position: absolute;
	top: 45%;
	left: 65%;
	
}

.hero .textos .nombre {
	font-size: 50px;
	font-weight: 600;
}

@media screen and (max-width: 1024px) {
	.hero .textos {
		top: 40%;
		left: 60%;
		max-width: 370px;

	}
}

@media screen and (max-width: 800px) {
	.hero .textos {
		max-width: 300px;
	}
}

/* Diseño para dispositivos móviles */
@media (max-width: 480px) {
	.hero {
		width: 100%;
		background: url('../img/velero.jpeg'), #281a0c;
		background-size: cover;
		background-attachment: fixed;
		background-position: -15px center;
		background-repeat: no-repeat;
		height: 800px;
	}

	.hero .textos{
		display: none;
	}

	.menu {
		flex-direction: row;
		align-items: center;
	}
	.menu.column {
		flex-direction: column;
		align-items: center;
	}
	.menu.column .menu-toggle{
		margin: 0 auto;
	}

	.menu .menu-toggle {
		display: block;
		background: none;
		border: none;
		font-size: 42px;
		cursor: pointer;
		margin: 0 20px 0 0;
	}

	.menu-items {
		display: none; /* Ocultar menú inicialmente */
		flex-direction: column;
		text-align: center;
		width: 100%;
	}

	.menu-items a {
		margin: 10px 0;
		font-size: 18px;
		text-decoration: none;
		color: #fff; /* Ajusta el color según el diseño */
	}

	.menu-items.active {
		display: flex; /* Mostrar menú cuando está activo */
	}
}


/*Sección Main*/
.tarjeta-de-servicio{
	display: flex;
	flex-wrap: wrap;
	margin: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contenido-de-servicio{
	flex: 1;
	padding: 20px;
	background-color: #f9f9f9;
}
.contenido-de-servicio h2 {
	color: #0077b6;
	margin-top: 0;
}
.contenido-de-servicio ul {
	list-style: none;
	padding: 0;
}

.contenido-de-servicio li {
	margin-bottom: 10px;
}

.precio {
	font-size: 1.5em;
	color: #0077b6;
	font-weight: bold;
}

button {
	background-color: #ffb703;
	color: #fff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 4px;
	font-size: 1em;
}

button:hover {
	background-color: #ff9505;
}

.btn-conocenos {
	display: inline-block;
	margin-top: 20px;
	padding: 6px 17px;
	background-color: #ffb703;
	color: #fff;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s;
}

.btn-conocenos:hover {
	background-color: #a8862e;
}

.servicio-img {
	flex: 1;
	overflow: hidden;
}

.servicio-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.tarjeta-de-servicio {
		flex-direction: column;
	}
	.servicio-img{
		margin: 10px
	}
	.servicio-img img {
		height: auto;
		object-fit: contain;
		
	}
}

/* ----- ----- FOOTER ----- ----- */
footer {
	background: #000;
}

footer .copyright {
	text-align: center;
	padding: 15px 0;
	color: #fff;
}

footer {
	background-color: #333;
	color: #fff;
	padding: 40px 0;
}

.footer-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 20px;
}

.footer-section {
	flex: 1;
	min-width: 200px;
}

.footer-container .footer-section:nth-child(1) {
	margin-right: 70px;
}

.footer-section h4 {
	font-size: 1.2em;
	margin-bottom: 15px;
}

.footer-section p,
.footer-section a,
.footer-section li {
	color: #bbb;
	margin: 5px 0;
	text-decoration: none;
}

.footer-section ul {
	list-style-type: none;
	padding: 0;
}

.footer-section a:hover {
	color: #fff;
}

.social-icons img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.footer-bottom {
	text-align: center;
	padding: 20px;
	font-size: 0.9em;
	border-top: 1px solid #444;
	color: #bbb;
}