@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');


/* Estilos personalizados para el nuevo diseño */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Poppins;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* Header personalizado */
.header {
	background: #b98c2d;
	padding: 12px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1002;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	pointer-events: auto;
}

.header-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	pointer-events: auto;
}

.logo {
	flex: 0 0 auto;
}

.logo img {
	height: 50px;
	width: 110px;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	gap: 50px;
	align-items: center;
	margin-left: auto;
	padding-right: 0;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: opacity 0.3s;
	white-space: nowrap;
}

.nav-menu a:hover {
	opacity: 0.8;
}

.btn-contacto {
	background: #062053;
	color: white !important;
	padding: 10px 30px;
	border-radius: 6px;
	font-weight: 700;
}

/* Botón hamburguesa - oculto por defecto */
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1003;
	position: relative;
	pointer-events: auto;
}

.hamburger-btn span {
	width: 100%;
	height: 3px;
	background: white;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.hamburger-btn:hover span {
	opacity: 0.8;
}

/* Menú móvil lateral */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.mobile-menu-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	max-width: 85vw;
	height: 100vh;
	background: #b98c2d;
	z-index: 1000;
	transition: right 0.3s ease;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-header .logo img {
	height: 40px;
	width: auto;
}

.mobile-menu-close {
	background: transparent;
	border: none;
	color: white;
	font-size: 32px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
}

.mobile-menu-close:hover {
	opacity: 0.7;
}

.mobile-menu-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mobile-menu-content a {
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.5px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: opacity 0.3s;
}

.mobile-menu-content a:hover {
	opacity: 0.8;
}

.mobile-menu-content a:last-child {
	border-bottom: none;
}

.btn-contacto-mobile {
	background: #062053 !important;
	color: white !important;
	padding: 15px 20px !important;
	border-radius: 6px !important;
	font-weight: 700 !important;
	border-bottom: none !important;
	text-align: center;
	margin-top: 10px;
}

.mobile-menu-flag {
	padding: 15px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 10px;
}

/* Hero Section personalizado */
.hero {
	background-size: cover;
	background-position: center;
	width: 100%;
	min-height: 450px;
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-top: 70px;
}

.hero > div {
	width: 100%;
	text-align: center;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 300;
	margin-bottom: 35px;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
	letter-spacing: 1px;
	color: white;
}
.hero h1:has(br) {
    letter-spacing: 0.2px;
}

.hero h1 strong {
	font-weight: 700;
}

.btn-reserva {
	background: #b98c2d;
	color: white;
	padding: 7px;
	text-align: center;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	height: 40px;
	width: 131px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s;
	font-weight: 700;
}

.btn-reserva:hover {
	background: #b98c2d;

}

/* Sección Holy Home personalizada */
.holy-home-section {
	display: flex;
	min-height: 600px;
}

.holy-home-section.reverse {
	flex-direction: row-reverse;
}

.holy-home-image {
	flex: 0 0 50%;
	background-size: cover;
	background-position: center;
	position: relative;
}

.holy-home-content {
	flex: 0 0 50%;
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.holy-home-content > * {
	max-width: 700px;
}

.holy-home-42 .holy-home-content {
	background: #f5f0e8;
}

.holy-home-javeriana .holy-home-content {
	background: #2d4150;
	color: white;
}

.holy-home-label {
	font-size: 0.75rem;
	letter-spacing: 3px;
	margin-bottom: 12px;
	text-transform: uppercase;
	opacity: 0.7;
	font-weight: 600;
}

.holy-home-title {
	font-size: 2.3rem;
	font-weight: 750;
	margin-bottom: 25px;
	/* letter-spacing: 1px; */
}

.holy-home-title strong {
	font-weight: bolder;
}

.holy-home-title .number {
	color: #c7912c;
	font-weight: 850;
	font-style: italic;
}

.holy-home-javeriana .holy-home-title .text {
	color: #c7912c;
	font-style: italic;
	font-weight: 400;
}

.holy-home-description {
	margin-bottom: 28px;
	line-height: 1.7;
	font-size: 0.95rem;
	/* color: white; */
}

.holy-home-description .highlight {
	font-weight: 700;
}

.amenities-list {
	list-style: none;
	margin-bottom: 35px;
}

.amenities-list li {
	position: relative;
	padding-left: 35px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	font-size: 0.9rem;
	line-height: 1.4;
}

.amenities-list li::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0px;
	width: 110%;
	height: 1px;
	background-color: #B2B2B2;
}


.amenities-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
}

/* Iconos específicos para cada amenidad */
.amenities-list li:nth-child(1)::before {
	background-image: url('../images/newDesign/iconos/Layer_1.png'); /* Baño privado */
}

.amenities-list li:nth-child(2)::before {
	background-image: url('../images/newDesign/iconos/Capa_1.png'); /* Cama semidoble  */
}

.amenities-list li:nth-child(3)::before {
	background-image: url('../images/newDesign/iconos/Layer_1-1.png'); /* Wifi & Ethernet */
}

.amenities-list li:nth-child(4)::before {
	background-image: url('../images/newDesign/iconos/Layer_1-4.png'); /* Escritorio  */
}

.amenities-list li:nth-child(5)::before {
	background-image: url('../images/newDesign/iconos/Capa_1-3.png'); /* Cocina completa compartida */
}

.amenities-list li:nth-child(6)::before {
	background-image: url('../images/newDesign/iconos/Capa_1-6.png'); /* Servicios públicos incluidos */
}

/* Iconos específicos para Holy Home Javeriana */
.holy-home-javeriana .amenities-list li:nth-child(1)::before {
	background-image: url('../images/newDesign/iconos/Layer_1-3.png'); /* TV */
}

.holy-home-javeriana .amenities-list li:nth-child(2)::before {
	background-image: url('../images/newDesign/iconos/Capa_1-1.png'); /* Cama Semidoble */
}

.holy-home-javeriana .amenities-list li:nth-child(3)::before {
	background-image: url('../images/newDesign/iconos/Layer_1-2.png'); /* Wifi y Ethernet */
}

.holy-home-javeriana .amenities-list li:nth-child(4)::before {
	background-image: url('../images/newDesign/iconos/Capa_1-2.png'); /* Cocina lavadora y baño privado */
}

.holy-home-javeriana .amenities-list li:nth-child(5)::before {
	background-image: url('../images/newDesign/iconos/Capa_1-4.png'); /* Limpieza mensual de apartamentos */
}

.holy-home-javeriana .amenities-list li:nth-child(6)::before {
	background-image: url('../images/newDesign/iconos/Capa_1-5.png'); /* Servicios públicos incluidos */
}

.btn-conoce {
	background: #c7912c;
	color: white;
	padding: 7px 25px;
	border: none;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	width: fit-content;
	transition: background 0.3s;
	font-size: 0.95rem;
}

.btn-conoce:hover {
	background: #d4a143;
	color: white;
}

/* Carousel indicators */
.carousel-indicators {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.carousel-indicators span {
	width: 8px;
	height: 8px;
	background: rgba(255,255,255,0.6);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

.carousel-indicators span.active {
	background: white;
}

/* Formulario de contacto personalizado */
.contact-section {
	background: #F0F0F0;
	padding: 80px 20px;
}

.contact-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
}

.contact-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 50px;
	font-weight: 700;
}

.contact-title .highlight {
	color: #c7912c;
	font-weight: 700;
	font-style: italic;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 0.95rem;
	color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 0.95rem;
	font-family: inherit;
	transition: border-color 0.3s;
	background: white;
}

.form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23666" d="M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: #c7912c;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #aaa;
}

.form-group textarea {
	resize: vertical;
}

.btn-enviar {
	background: #c7912c;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	min-width: 120px;
	width: auto;
	transition: background 0.3s;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center;
	line-height: 1.5;
}

.btn-enviar:hover {
	background: #d4a143;
}

/* Testimonios personalizados */
.testimonios-section {
	padding: 90px 20px;
	background: white;
}

.testimonios-header {
	text-align: center;
	margin-bottom: 65px;
}

.testimonios-label {
	font-size: 0.75rem;
	letter-spacing: 3px;
	margin-bottom: 12px;
	text-transform: uppercase;
	opacity: 0.5;
	font-weight: 600;
}

.testimonios-title {
	font-size: 2rem;
	font-weight: 700;
}

.testimonios-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 35px;
	position: relative;
}

.testimonio-card {
	flex: 1;
	background: white;
	padding: 45px 40px;
	border-radius: 8px;
	box-shadow: 0 2px 20px rgba(0,0,0,0.08);
	border: 1px solid #f0f0f0;
}

.testimonio-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.testimonio-avatar {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	margin-right: 15px;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonio-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonio-info h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 1rem;
}

.testimonio-info p {
	font-size: 0.85rem;
	opacity: 0.6;
}

.testimonio-text {
	margin-bottom: 25px;
	line-height: 1.7;
	font-size: 0.92rem;
	color: #444;
}

.testimonio-stars {
	color: #ffd700;
	font-size: 1.1rem;
}

.testimonios-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 40px;
}

.testimonios-nav button {
	width: 12px;
	height: 12px;
	border: none;
	background: #ddd;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

.testimonios-nav button:hover {
	background: #c7912c;
}

.testimonios-nav button.active {
	background: #c7912c;
}

/* Footer personalizado */
.footer {
	background: #1a2633;
	color: white;
	padding: 70px 20px 30px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
	gap: 60px;
}

.footer-section {
	flex: 1;
}

.footer-section h3 {
	margin-bottom: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	display: block;
	margin-bottom: 12px;
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-section a:hover {
	color: white;
}

.footer-section p i {
	margin-right: 8px;
	color: #c7912c;
}

.social-icons {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.social-icons a {
	width: 38px;
	height: 38px;
	background: rgba(255,255,255,0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	font-size: 1.1rem;
}

.social-icons a:hover {
	background: #c7912c;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.08);
	font-size: 0.85rem;
	color: rgba(255,255,255,0.4);
}

.footer-bottom a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
}

.footer-bottom a:hover {
	color: rgba(255,255,255,0.7);
}

/* Botón flotante de información */
.info-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #B98C2D;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(185, 140, 45, 0.4);
	z-index: 999;
	transition: transform 0.3s;
	cursor: pointer;
	border: none;
}

.info-float img {
	width: 30px;
	height: 30px;
	filter: brightness(0) invert(1);
}

.info-float:hover {
	transform: scale(1.1);
}

/* Formulario flotante */
.floating-form {
	position: fixed;
	bottom: 100px;
	right: 30px;
	width: 350px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	z-index: 1000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	display: none;
	pointer-events: auto;
}

.floating-form.show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.floating-form-header {
	background: #B98C2D;
	color: white;
	padding: 15px 20px;
	border-radius: 10px 10px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.floating-form-header h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.floating-form-close {
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-form-body {
	padding: 20px;
	pointer-events: auto;
}

.floating-form .form-group {
	margin-bottom: 15px;
}

.floating-form .form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	font-size: 12px;
	color: #333;
}

.floating-form .form-group input[type="text"],
.floating-form .form-group input[type="email"],
.floating-form .form-group input[type="tel"],
.floating-form .form-group input[type="text"][list],
.floating-form .form-group textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd !important;
	border-radius: 5px;
	font-size: 13px;
	font-family: inherit;
	transition: border-color 0.3s;
	pointer-events: auto;
	touch-action: manipulation;
	-webkit-touch-callout: default;
	-webkit-user-select: text;
	user-select: text;
	box-sizing: border-box;
}

.floating-form .form-group input:focus,
.floating-form .form-group textarea:focus {
	outline: none;
	border-color: #B98C2D;
}

.floating-form .form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.floating-form .btn-enviar {
	background: #B98C2D;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
	width: 100%;
	transition: background 0.3s;
	text-align: center;
	line-height: 1.5;
}

.floating-form .btn-enviar:hover {
	background: #A67B26;
}

/* Responsive */
@media (max-width: 968px) {
	.nav-menu {
		display: none;
		pointer-events: none;
	}

	.hamburger-btn {
		display: flex;
		z-index: 1003;
		position: relative;
		pointer-events: auto;
	}

	.header-content {
		position: relative;
		z-index: 1002;
		pointer-events: auto;
	}

	.mobile-menu-overlay {
		display: block;
	}

	.mobile-menu {
		display: block;
	}

	.hero {
		height: 60vh;
		min-height: 400px;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.holy-home-section,
	.holy-home-section.reverse {
		flex-direction: column;
	}

	.holy-home-image {
		flex: 0 0 auto;
		min-height: 350px;
	}

	.holy-home-content {
		flex: 0 0 auto;
		padding: 50px 30px;
	}

	.contact-container {
		max-width: 100%;
		padding: 0 20px;
	}

	.testimonios-container {
		flex-direction: column;
	}

	.testimonio-card {
		min-width: 100%;
	}

	.footer-content {
		flex-direction: column;
		gap: 40px;
	}

	/* Fix floating form on mobile */
	.floating-form {
		width: 90%;
		max-width: 350px;
		right: 5%;
		bottom: 20px;
		z-index: 1000;
		max-height: 85vh;
		overflow-y: auto;
	}

	.floating-form .form-group input,
	.floating-form .form-group textarea {
		pointer-events: auto;
		touch-action: manipulation;
		-webkit-touch-callout: default;
		-webkit-user-select: text;
		user-select: text;
	}

	.floating-form-body {
		pointer-events: auto;
	}
}

.parallax100 {
	/* allow JS to set background-position so parallax can move the image,
	   but keep cover sizing and no-repeat to preserve visuals */
	background-position: center center;
	background-size: cover !important;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

.header-intro-jav.parallax100 {
	background-size: cover !important;
}

/* WhatsApp Button */
.whatsapp {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 110px;
	right: 30px;
	background-color: #25D366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 35px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
}

.whatsapp:hover {
	transform: translateY(-5px);
	box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.3);
	background: #128C7E;
	color: #fff;
}

.whatsapp-icon {
	font-size: 35px;
}

/* Responsive WhatsApp button */
@media (max-width: 968px) {
	.whatsapp {
		bottom: 100px;
		right: 20px;
		width: 55px;
		height: 55px;
		font-size: 30px;
	}
	
	.whatsapp-icon {
		font-size: 30px;
	}
	
	.info-float {
		bottom: 20px;
		right: 20px;
	}
}