﻿.laptop-section {
	position: relative;
	width: 100%;
	min-height: 370px;
	background: #fff;
	overflow: hidden;
	margin: 0 auto 40px auto;
	z-index: 1;
}

.laptop-section-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 20px;
	min-height: 400px;
	padding: 60px 40px 40px 60px;
	position: relative;
	z-index: 2;
}

.laptop-section-text {
	max-width: 480px;
	color: #0D0030;
	z-index: 2;
}

.laptop-section-text h2 {
	font-family: 'Alexandria', sans-serif;
	font-size: 40.68px;
	line-height: 100%;
	letter-spacing: -2px;
	margin-bottom: 18px;
	color: #0D0030;
}

.laptop-section-text .highlight-pink {
	color: #FE2491;
	font-weight: 900;
}

.laptop-section-text p {
	font-family: 'Visby Round CF', Arial, sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0px;
	color: #0D0030;
	margin-top: 0;
}

.laptop-section-image {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	right: 190px;
	width: 100%;
	max-width: 700px;
}
.laptop-frame-bg {
	position: relative;
	width: 700px;
	height: 428px;
	margin-left:170px;
}

.laptop-video {
	position: absolute;
	top: 30px;
	left: 90px;
	width: 510px;
	height: 265px;
	object-fit: cover;
	z-index: 1;
	border-radius: 8px;
}

.laptop-marco {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none; /* <- 🔥 ESTO ES CLAVE */
}


.contenedor {
	position: relative;
	width: 500px;
	height: 300px;
	/* pointer-events: none; ← quítalo de aquí */
}

	.contenedor img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		pointer-events: none; /* Esto sí se queda aquí */
	}

	.contenedor video {
		position: absolute;
		top: -50px;
		left: 100px;
		width: 488px;
		height: 276px;
		object-fit: cover;
		z-index: 1;
		/* No le pongas pointer-events aquí */
	}




	/* 480px: móviles pequeños */
@media (max-width: 480px) {
	.laptop-section-content {
		flex-direction: column;
		padding: 20px;
		gap: 30px;
	}

	.laptop-section-text {
		text-align: center;
		max-width: 100%;
	}

	.laptop-section-text h2 {
		font-size: 24px;
		line-height: 1.2;
	}

	.laptop-section-image {
		right: 0;
		max-width: 100%;
		margin: 0 auto;
	}

	.laptop-frame-bg {
		width: 100%;
		height: auto;
		margin-left: 0;
	}

	.laptop-video {
		width: 85%;
		height: auto;
		position: static;
		margin: 0 auto;
		display: block;
	}

	.laptop-marco {
		display: none; /* ocultamos marco en móviles si hace falta */
	}
}


/* 768px: tablets */
@media (min-width: 481px) and (max-width: 768px) {
	.laptop-section-content {
		flex-direction: column;
		padding: 30px;
	}

	.laptop-section-text h2 {
		font-size: 28px;
	}

	.laptop-frame-bg {
	
		
		margin-left: 0;
	}

	.laptop-video {
	top: 25px;
    left: 74px;
    width: 344px;
    height: 217px;
	
	}

	.laptop-frame-bg{
		width: 500px;
		height: 350px;
		margin-left: 60px;
	}

	.laptop-section-image {
		right: 0;
		max-width: 100%;
	}
}

/* 912px: tablets grandes */
@media (min-width: 769px) and (max-width: 912px) {
.laptop-section-content {
		flex-direction: column;
		text-align: center;
	}


	.laptop-section-image {
		right: 0;
	}

	.laptop-frame-bg{
		margin-left: 0;
	}

/* 1024px: iPads */
@media (min-width: 913px) and (max-width: 1024px) {
	.laptop-section-content {
		flex-direction: row;
	}


	.laptop-section-image {
		right: 0;
	}

	.laptop-frame-bg{
		margin-left: 0;
	}
}

/* Landscape en tablets */
@media (min-width: 913px) and (max-width: 1024px) and (orientation: landscape) {
	.laptop-section-content {
		flex-direction: row;
	}

	.laptop-section-image {
		right: 0;
	}
}

/* Portrait en tablets o móviles */
@media (min-width: 913px) and (max-width: 1024px) and (orientation: portrait) {
	.laptop-section-content {
		flex-direction: column;
		text-align: center;
	}
}

/* Min width 1440px: pantallas grandes */
@media (min-width: 1440px) {
	.laptop-section-content {
		max-width: 1300px;
		padding: 80px 60px;
	}
}
