.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.float:hover {
	text-decoration: none;
	color: #25d366;
	background-color: #fff;
}

.my-float {
	margin-top: 16px;
}

/* Container y sección */
.products-section {
	padding: 80px 0;
	background-color: #f9f9f9;
	font-family: 'Poppins', sans-serif;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.8rem;
	color: #111;
	margin-bottom: 20px;
	font-weight: 600;
}

.section-header p {
	font-size: 1.1rem;
	color: #555;
	max-width: 650px;
	margin: 0 auto;
}

/* Grid productos */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

/* Card individual */
.product-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Imagen del producto */
.product-img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: scale 0.3s;
}

.product-card:hover .product-img img {
	transform: scale(1.05);
}

/* Información del producto */
.product-info {
	padding: 20px 25px;
}

.product-info h3 {
	font-size: 22px;
	color: #111;
	margin-bottom: 10px;
}

.product-info p {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
	.products-section {
		padding: 60px 15px;
	}

	.product-img img {
		height: 200px;
	}
}

@media (max-width: 480px) {
	.section-header h2 {
		font-size: 2rem;
	}
}

.work-popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: rgba(0, 0, 0, 0.6);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.work-popup-close:hover {
	background: #00c900;
	transform: rotate(90deg);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
	background: linear-gradient(135deg, #0f3d2e, #0a2f23, #0c4a36);
	padding: 100px 0;
}

/* Contenedor */
.contact-wrapper {
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
	padding: 0 20px;
}

/* ===== TEXTO IZQUIERDA ===== */
.contact-info {
	flex: 1;
	color: #ffffff;
}

.contact-info h3 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 20px;
}

.contact-info p {
	margin-bottom: 30px;
	opacity: 0.9;
	line-height: 1.6;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.contact-item i {
	margin-right: 12px;
	color: #22c55e;
	/* Verde brillante */
	font-size: 18px;
}

/* ===== TARJETA FORMULARIO ===== */
.contact-form-box {
	flex: 1;
	max-width: 520px;
	background: #ffffff;
	padding: 55px 45px;
	border-radius: 22px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* ===== INPUTS ===== */
.input-group {
	width: 100%;
	margin-bottom: 22px;
}

.input-group input,
.input-group textarea {
	width: 100%;
	display: block;
	padding: 18px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	font-size: 15px;
	background: #f8fafc;
	transition: all 0.3s ease;
	box-sizing: border-box;
	/* 👈 CLAVE */
}

.input-group input:focus,
.input-group textarea:focus {
	border-color: #16a34a;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

/* ===== BOTÓN ===== */
.btn-contact {
	width: 100%;
	padding: 18px;
	background: linear-gradient(90deg, #16a34a, #15803d);
	border: none;
	border-radius: 12px;
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-contact:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
	.contact-wrapper {
		flex-direction: column;
		text-align: center;
	}

	.contact-info {
		margin-bottom: 40px;
	}

	.contact-item {
		justify-content: center;
	}

	.contact-form-box {
		width: 100%;
		max-width: 100%;
	}
}

.contact-title {
	font-size: 40px;
	font-weight: 700;
	color: #ffffff !important;
	margin-bottom: 20px;
}