:root {
	--primary: #2d6a4f;
	--primary-light: #40916c;
	--primary-dark: #1b4332;
	--secondary: #d8f3dc;
	--accent: #f4a261;
	--cream: #fefae0;
	--white: #ffffff;
	--text-dark: #2b2d42;
	--text-light: #6c757d;
	--shadow: 0 4px 20px rgba(0,0,0,0.08);
	--shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
	--radius: 16px;
	--radius-sm: 8px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	/*font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #f8f9fa 0%, #E2E2E2 100%);*/
	color: var(--text-dark);
	line-height: 1.7;
}

/* Grid Layout */
.tour-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
}

/* Cards */
.card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(45, 106, 79, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.card-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	color: var(--primary-dark);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding-bottom: 1rem;
	border-bottom: 3px solid var(--secondary);
}

.card-title i {
	color: var(--primary);
	font-size: 1.5rem;
}

/* Itinerario 
.day-block {
	background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
	border-radius: var(--radius-sm);
	padding: 1.8rem;
	margin-bottom: 1.5rem;
	border-left: 5px solid var(--primary);
}*/

.day-block h3 {
	color: var(--primary-dark);
	font-size: 1.2rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.day-block p {
	color: var(--text-dark);
	text-align: justify;
}

.highlight-box {
	background: var(--white);
	border-radius: var(--radius-sm);
	padding: 1.2rem;
	margin-top: 1rem;
	border: 2px dashed var(--primary-light);
}

.highlight-box strong {
	color: var(--primary-dark);
}

/* Info Grid */
.info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
}

.info-item {
	background: var(--cream);
	padding: 1rem;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.info-item i {
	color: var(--primary);
	font-size: 1.2rem;
	width: 24px;
}

.info-item span {
	font-weight: 600;
	color: var(--primary-dark);
}

/* Lists */
.include-list, .exclude-list, .recommend-list {
	list-style: none;
}

.include-list li, .exclude-list li, .recommend-list li {
	padding: 0.4rem 0;
	padding-left: 2rem;
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.include-list li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--primary);
}

.exclude-list li::before {
	content: '\f00d';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #e63946;
}

.recommend-list li::before {
	content: '\f0eb';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* ===== GALERÍA ===== */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-sm);
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4/3;
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
	aspect-ratio: auto;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(27, 67, 50, 0.85) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay h4 {
	color: var(--white);
	font-size: 1rem;
	font-weight: 600;
	transform: translateY(10px);
	transition: transform 0.4s;
}

.gallery-overlay span {
	color: rgba(255,255,255,0.8);
	font-size: 0.85rem;
	transform: translateY(10px);
	transition: transform 0.4s 0.05s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay span {
	transform: translateY(0);
}

.gallery-zoom-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.2rem;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: var(--shadow-lg);
}

.gallery-item:hover .gallery-zoom-icon {
	transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.lightbox.active {
	display: flex;
	opacity: 1;
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-img {
	max-width: 100%;
	max-height: 80vh;
	border-radius: var(--radius-sm);
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	transform: scale(0.9);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox-img {
	transform: scale(1);
}

.lightbox-caption {
	color: var(--white);
	margin-top: 1rem;
	font-size: 1.1rem;
	text-align: center;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s 0.2s;
}

.lightbox.active .lightbox-caption {
	opacity: 1;
	transform: translateY(0);
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: none;
	border: none;
	color: var(--white);
	font-size: 2rem;
	cursor: pointer;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.3s;
}

.lightbox-close:hover {
	background: rgba(255,255,255,0.1);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.1);
	border: none;
	color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
	background: rgba(255,255,255,0.25);
	transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

.lightbox-counter {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
}
/* Sidebar */
.sidebar-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(45, 106, 79, 0.08);
	position: sticky;
	top: 140px;
}

.sidebar-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	color: var(--primary-dark);
	margin-bottom: 1.5rem;
	text-align: center;
}

.price-box {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: var(--white);
	padding: 1.5rem;
	border-radius: var(--radius-sm);
	text-align: center;
	margin-bottom: 1.5rem;
}

.price-box .from {
	font-size: 0.9rem;
	opacity: 0.9;
}

.price-box .price {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0.5rem 0;
}

.price-box .per {
	font-size: 0.9rem;
	opacity: 0.9;
}

.btn-book {
	display: block;
	width: 100%;
	padding: 1rem;
	background: var(--accent);
	color: var(--white);
	text-align: center;
	text-decoration: none;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	margin-bottom: 1rem;
}

.btn-book:hover {
	background: #e76f51;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

/*.btn-whatsapp {
	display: block;
	width: 100%;
	padding: 1rem;
	background: #25d366;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	border-radius: var(--radius-sm);
	font-weight: 600;
	transition: all 0.3s;
}

.btn-whatsapp:hover {
	background: #128c7e;
	transform: translateY(-2px);
}*/

.quick-info {
	margin-top: 1.5rem;
}

.quick-info-item {
	display: flex;
	justify-content: space-between;
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.quick-info-item span:first-child {
	color: var(--text-light);
}

.quick-info-item span:last-child {
	font-weight: 600;
	color: var(--primary-dark);
}

.btn-whatsapp {
        display:block;
        width:70px;
        height:70px;
        color#fff;
        position: fixed;
        right:20px;
        bottom:100px;
        border-radius:50%;
        line-height:80px;
        text-align:center;
        z-index:999;
}


/* Responsive */
@media (max-width: 968px) {
	.tour-grid {
		grid-template-columns: 1fr;
	}

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

	.nav-links {
		display: none;
	}

   
}

@media (max-width: 600px) {
	.info-grid {
		grid-template-columns: 1fr;
	}

	.card {
		padding: 1.5rem;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.card {
	animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }

/* FAQ */
.faq-card {
	margin-top: 2rem;
}
.faq-container {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.faq-item {
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #fff;
}
.faq-item.active {
	border-color: var(--primary-light, #8bc34a);
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.faq-question {
	width: 100%;
	padding: 1.1rem 1.5rem;
	background: #f8f9fa;
	border: none;
	text-align: left;
	font-weight: 600;
	font-size: 1rem;
	color: var(--primary-dark, #2e7d32);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s;
	gap: 1rem;
}
.faq-question:hover {
	background: #e9ecef;
}
.faq-question i.faq-icon {
	transition: transform 0.3s ease;
	color: var(--primary, #4caf50);
	font-size: 0.9rem;
	flex-shrink: 0;
}
.faq-item.active .faq-question i.faq-icon {
	transform: rotate(180deg);
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	background: #fff;
}
.faq-item.active .faq-answer {
	max-height: 550px;
	padding: 0 1.5rem 1.25rem 1.5rem;
}
.faq-answer p {
	margin: 0;
	color: var(--text-light, #666);
	line-height: 1.7;
	text-align: justify;
}

/* Related Tours */
.related-tours-section {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.related-tours-section .card-title {
	justify-content: center;
	border-bottom: none;
	font-size: 2rem;
}
.related-tours-section .card-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--accent, #f4a261);
	border-radius: 2px;
	margin: 0.8rem auto 0;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}
.related-card {
	background: var(--white, #fff);
	border-radius: var(--radius, 16px);
	overflow: hidden;
	box-shadow: var(--shadow, 0 4px 20px rgba(0,0,0,0.08));
	transition: transform 0.3s, box-shadow 0.3s;
	border: 1px solid rgba(45, 106, 79, 0.08);
	display: flex;
	flex-direction: column;
}
.related-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.12));
}
.related-card-img {
	position: relative;
	height: 220px;
	overflow: hidden;
}
.related-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.related-card:hover .related-card-img img {
	transform: scale(1.08);
}
.related-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--primary, #2d6a4f);
	color: #fff;
	padding: 0.35rem 0.9rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.related-card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.related-card-body h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	color: var(--primary-dark, #1b4332);
	margin-bottom: 0.6rem;
}
.related-card-body p {
	color: var(--text-light, #6c757d);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	flex-grow: 1;
}
.related-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(0,0,0,0.06);
}
.related-price {
	font-weight: 700;
	color: var(--primary-dark, #1b4332);
	font-size: 1.1rem;
}
.related-price small {
	display: block;
	font-size: 0.75rem;
	color: var(--text-light, #6c757d);
	font-weight: 500;
}
.btn-view {
	padding: 0.5rem 1.2rem;
	background: var(--accent, #f4a261);
	color: #fff;
	text-decoration: none;
	border-radius: var(--radius-sm, 8px);
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}
.btn-view:hover {
	background: #e76f51;
	transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
	margin-bottom: 3rem;
}
.testimonials-section .card-title {
	justify-content: center;
	border-bottom: none;
	font-size: 2rem;
}
.testimonials-section .card-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--accent, #f4a261);
	border-radius: 2px;
	margin: 0.8rem auto 0;
}
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}
.testimonial-card {
	background: var(--white, #fff);
	border-radius: var(--radius, 16px);
	padding: 2rem;
	box-shadow: var(--shadow, 0 4px 20px rgba(0,0,0,0.08));
	border: 1px solid rgba(45, 106, 79, 0.08);
	transition: transform 0.3s;
	position: relative;
}
.testimonial-card:hover {
	transform: translateY(-4px);
}
.testimonial-card::before {
	content: '10d';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 2.5rem;
	color: var(--secondary, #d8f3dc);
	opacity: 0.6;
}
.testimonial-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.2rem;
}
.testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--secondary, #d8f3dc);
}
.testimonial-meta h5 {
	font-size: 1.05rem;
	color: var(--primary-dark, #1b4332);
	margin-bottom: 0.2rem;
}
.testimonial-stars {
	color: #ffc107;
	font-size: 0.85rem;
	letter-spacing: 1px;
}
.testimonial-text {
	color: var(--text-light, #6c757d);
	line-height: 1.7;
	font-style: italic;
	position: relative;
	z-index: 1;
}
.testimonial-tour {
	margin-top: 1rem;
	font-size: 0.85rem;
	color: var(--primary, #2d6a4f);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Responsive */
@media (max-width: 968px) {
	.related-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 600px) {
	.related-card-img {
		height: 180px;
	}
	.testimonial-card {
		padding: 1.5rem;
	}
}