*{
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
}
#banner {
	background: url("images/Website.jpg");
	background-size: cover;
	background-position: center;
	height: 100vh;
}
.logo{
	width: 140px;
	position: absolute;
	top: 4%;
	left: 10%;
}
.banner-text {
	text-align: left;
	color: #f5e6d3;
	padding-top: 240px;
	margin-left: 7%;
}

.banner-text h1{
	font-size: 60px;
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	line-height: 1.1;
	color: #ccb27c;
}

.banner-text p{
	font-size: 15px;
	font-weight: 700;
	line-height: 3;
}

.banner-btn{
	margin: 7px auto 0;
}

.banner-btn a{
	width: 150px;
	text-decoration: none;
	display: inline-block;
	margin: 0 10px;
	padding: 12px 0;
	color: #f5e6d3;
	border: .5px solid #f5e6d3;
	text-align: center;
	position: relative;
	z-index: 1;
	transition: color 0.5s;
}

.banner-btn a span{
	width: 0%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #f5e6d3;
	z-index: -1;
	transition: 0.5s;
}

.banner-btn a:hover span{
	width: 100%;
	
}

.banner-btn a:hover{
	color: #4a2c2a;
}

#sideNav {
	width: 250px;
	height: 100vh;
	position: fixed;
	right: -250px;
	top: 0;
	background: #5b2237;
	z-index: 2;
	transition: 0.5s;
}

nav ul li {
	list-style: none;
	margin: 50px 20px;
}

nav ul li a {
	text-decoration: none;
	color: #f5e6d3;
}

#menuBtn {
	width: 50px;
	height: 50px;
	background: #5b2237;
	text-align: center;
	position: fixed;
	right: 30px;
	top: 20px;
	border-radius: 3px;
	z-index: 3;
	cursor: pointer;
}

#menuBtn img {
	width: 20px;
	margin-top: 15px;
}

@media screen and (max-width: 770px) {
	#banner {
        background-image: url("images/AppBanner.jpg"); 
		background-size: cover;
        background-position: center;
    }
	.logo {
        width: 100px;
        left: 5%;
        top: 2%;
    }
	.banner-text {
        padding-top: 120px; /* Reducimos el espacio superior */
        margin-left: 5%;
        margin-right: 5%;
        text-align: center; /* Centramos el texto para evitar que choque con la taza */
    }

    .banner-text h1 {
		padding: 20px 20px 0;
        font-size: 40px; /* Ajustamos el tamaño para que quepa bien en el ancho */
        line-height: 1.2;
	}
	.banner-text p {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 10px;
        padding: 0 10px;
        border-radius: 5px;
    }
	.banner-btn a {
		display: block;
		margin: 20px auto;
	}
	
}

/*--Sobre Nosotros---*/

#features {
	width: 100%;
	padding: 70px 0;
	background: #f5e6d3;
}

.title-text {
	text-align: center;
	padding-bottom: 70px;
}

.title-text p{
	margin: auto;
	font-size: 20px;
	color: #4a2c2a;
	font-weight: bold;
	position: relative;
	z-index: 1;
	display: inline-block;
}

.title-text p::after{
	content: '';
	width: 50px;
	height: 35px;
	background: linear-gradient(#4a2c2a,#f5e6d3);
	position: absolute;
	top: -20px;
	left: 0;
	z-index: -1;
	transform: rotate(10deg);
	border-top-left-radius: 35px;
	border-bottom-right-radius: 35px;
	
}
.title-text h1{
	font-size: 50px;
	font-family: "Playfair Display", serif;
	color: #4a2c2a;
}

.feature-box{
	width: 80%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: center;
}

.featuress{
	flex-basis: 50%;
	
}

.featuress-img {
	flex-basis: 50%;
	margin: auto;
}

.featuress-img img{
	width: 60%;
	border-radius: 10px;
}

.featuress h1{
	text-align: left;
	margin-bottom: 10px;
	font-weight:bold;
	color: #4A2C2A;
	font-family: "Playfair Display", serif;
}

.features-desc{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.features-icon .fa{
	width: 50px;
	height: 50px;
	font-size: 30px;
	line-height: 50px;
	border-radius: 8px;
	color: #5b2237;
	/*-border: 1px solid #4A2C2A-*/
}

.features-text p{
	padding: 0 20px;
	text-align: initial;
}

.features-text b { 
    font-family: "Playfair Display", serif;
    font-size: 28px; 
    color: #4a2c2a;
    font-weight: 700;
}

@media screen and (max-width: 770px){
	.title-text h1{
	font-size: 35px;
	}
	.featuress{
		flex-basis: 100%;
	}
	.featuress-img{
		flex-basis: 100%;
	}
	.featuress-img img{
		width: 100%;
	}
}

/*--Secciones--*/

#service {
	width: 100%;
	padding: 70px 0;
	background: #efefef;
}

.service-box{
	width: 95%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: auto;
}

.single-service{
	flex-basis: 18%;
	text-align: center;
	border-radius: 7px;
	margin-bottom: 20px;
	color: #fff;
	position: relative;
}
.single-service img{
	width: 100%;
	border-radius: 7px;
}

.overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	border-radius: 7px;
	cursor: pointer;
	background: linear-gradient(rgba(0,0,0,0.5),#5b2237);
	opacity: 0;
	transition: .5s;
}
.single-service:hover .overlay{
	opacity: 1;
}
.service-desc{
	width: 80%;
	position: absolute;
	bottom: 0%;
	left: 50%;
	opacity: 0;
	transform: translateX(-50%);
	transition: .5s;
}
.service-desc p{
	font-size: 14px;
}

.single-service:hover .service-desc{
	bottom: 45%;
	opacity: 1;
}

.menu-btn-container {
	width: 100%;
	text-align: center;
	margin-top: 40px; /* Espacio entre las imágenes y el botón */
	clear: both;
}

/* Estilo base del botón */
.btn-completo {
	display: inline-block;
	padding: 14px 35px;
	background: #5b2237; /* El mismo tono vino de tu overlay */
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 7px; /* Mismo radio de borde que tus imágenes */
	transition: background 0.3s, transform 0.3s;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Efecto al pasar el cursor */
.btn-completo:hover {
	background: #421827; /* Un tono vino un poco más oscuro */
	transform: translateY(-3px); /* Pequeño salto hacia arriba */
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 770px){
	.single-service{
		flex-basis: 100%;
		margin-bottom: 30px;
	}
	.service-desc hr{
		font-size: 12px;
	}
	hr{
		margin: 5px auto;
	}
	.single-service:hover .service-desc{
		bottom: 45% !important;
	}
}

/*--FooterContacto--*/

#footer{
	padding: 100px 0 20px;
	background: #f5e6d3;
}
.location{
	width: 80%;
	margin: auto;
	padding: 80px 0 0;
}
.location iframe{
	width: 100%;
}
.footer-row{
	width:80%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-left,.footer-right{
	flex-basis: 45%;
	padding: 10px;
	margin-bottom: 20px;
}
.footer-right{
	text-align: right;
}
.footer-row h1{
	margin: 10px 0;
	font-size: 30px;
	color: #4a2c2a;
}
.footer-row p{
	line-height: 35px;
}

.footer-left .fa,.footer-right .fa{
	font-size: 20px;
	color: #5b2237;
	margin: 10px;
}
.social-links{
	text-align: center;
}

.social-links .fa{
	height: 40px;
	width: 40px;
	font-size: 20px;
	line-height: 40px;
	border: 1px solid #4a2c2a;
	margin: 40px 5px 0;
	color: #4a2c2a;
	cursor: pointer;
	transition: .5s;
}
.social-links .fa:hover{
	background: #5b2237;
	color: #fff;
	transform: translateY(-7px);
}
.social-links p{
	font-size: 12px;
	margin-top: 20px;
}
@media screen and (max-width: 770px){
	.footer-left,.footer-right{
		flex-basis: 100px;
		font-size: 14px;
	}
	.footer-row {
        flex-direction: column; /* Alinea los bloques uno debajo del otro */
        align-items: center;
    }

    .footer-row h1 {
        font-size: 24px;
		text-align: center;/* Ajuste opcional para que el título no sea tan grande en móvil */
    }
	.footer-row p{
		text-align: center;
	}
}


/*--Calientes---*/
#sub-banner{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(91,34,55,0.7),rgba(91,34,55,0.7)),url("images/Background.png");
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
	display: flex;         
    justify-content: center;
    align-items: center;
    position: relative;
}
#sub-banner h1 {
    /*--font-size: 50px;
	font-family: "Playfair Display", serif;--*/
	color: #fff;
}

/*--Calientes1--*/

#service1 {
	width: 100%;
	padding: 70px 0;
	background: #efefef;
}

.service-box1{
	width: 90%;                 /* Un ancho controlado para centrar el bloque */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;    /* Centra la fila completa */
    gap: 30px;                  /* Controla el espacio exacto REAL entre tarjetas */
    margin: auto;
}

.single-service1{
	flex-basis: calc(25% - 30px); /* Divide el espacio en 4 columnas exactas restando el gap */
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    box-sizing: border-box;
}
.single-service1 img{
	width: 100%;
	border-radius: 7px;
}

.overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	border-radius: 7px;
	cursor: pointer;
	background: linear-gradient(rgba(0,0,0,0.5),#5b2237);
	opacity: 0;
	transition: .5s;
}
.single-service1:hover .overlay{
	opacity: 1;
}
.service-desc{
	width: 80%;
	position: absolute;
	bottom: 0%;
	left: 50%;
	opacity: 0;
	transform: translateX(-50%);
	transition: .5s;
}
.service-desc p{
	font-size: 14px;
}

.single-service1:hover .service-desc{
	bottom: 45%;
	opacity: 1;
}

@media screen and (max-width: 770px){
	.single-service1{
		flex-basis: 100%;
		margin-bottom: 30px;
	}
	.service-desc hr{
		font-size: 12px;
	}
	hr{
		margin: 5px auto;
	}
	.single-service1:hover .service-desc{
		bottom: 45% !important;
	}
}


