
.header-placeholder {color: white; padding: 15px 20px; text-align: left; font-weight: bold;	font-size: 1.1em; margin-bottom: 30px;	border-bottom: 1px solid #f1f1f1;}

.main-container {max-width: 1200px;	margin: 0 auto;	padding: 0 25px 50px;}

/* Hero section con dos columnas */
.hero-section {	display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; min-height: 500px; align-items: start;}

/* Columna izquierda: Texto (sin fondo) */
.text-column {padding: 0px;	display: flex; flex-direction: column; justify-content: center;}
.text-column h3 {color: #DC070F; font-size: 2.2em; margin-bottom: 20px;	font-weight: 700; line-height: 1.2;	margin-top: 0px;}
.text-column .subtitle {font-size: 1.3em; color: #555; margin-bottom: 30px;	font-weight: 300; border-left: 4px solid #DC070F; padding-left: 20px;}
.text-column p {color: #666; margin-bottom: 25px; font-size: 1.1em;}

/* Columna derecha: Contenedor de imagen */
.image-column {	position: relative;	border-radius: 30px; overflow: hidden; box-shadow: 0 25px 40px -15px rgba(0,0,0,0.3); height: 100%;	min-height: 450px;}
.image-column img {width: 100%;	height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease;}
.image-column:hover img {transform: scale(1.05);}

/* Overlay con gradiente rojo */
.image-overlay {position: absolute;	top: 0;	left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(220, 7, 15, 0.4), rgba(0, 0, 0, 0.5)); display: flex; align-items: flex-end;	justify-content: center; padding: 40px;	opacity: 0.9; transition: opacity 0.3s ease;}
.image-column:hover .image-overlay {opacity: 1;}

.image-quote {color: white; text-align: center;	max-width: 80%;	transform: translateY(20px); opacity: 0; animation: fadeInUp 0.8s ease forwards; animation-delay: 0.3s;}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.image-quote p {font-size: 1.3em; font-weight: 500;	text-shadow: 2px 2px 4px rgba(0,0,0,0.4); background: rgba(220, 7, 15, 0.8);	backdrop-filter: blur(5px);	padding: 20px 30px;	border-radius: 60px; border: 2px solid rgba(255,255,255,0.3);}


/* Grid de dos columnas para características/beneficios */
.features-grid { display: grid;	grid-template-columns: repeat(2, 1fr); gap: 35px; margin-bottom: 50px; background-color: #f8fafc;border-radius: 24px; padding: 20px 40px 40px 40px;	border: 1px solid #e2e8f0;}
.features-list {list-style: disc;}
.features-list li {	margin-bottom: 25px; font-size: 1.1em;}
.features-list strong {	color: #DC070F;}
.features-grid p {font-size: 1.1em;}


/* Formulario de contacto */
.form-block {background-color: #FFFFFF;	border-radius: 24px; padding: 20px 45px 45px 45px; border: 1px solid #e2e8f0;}
.form-block h2 {font-size: 2.2em; color: #DC070F; margin-bottom: 15px; font-weight: 700;}
.form-subtitle {font-size: 1.1em; color: #475569; margin-bottom: 20px;}
.form-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 25px;}

.form-group {display: flex;	flex-direction: column;	margin-bottom: 0px;}

.form-group label {	font-weight: 600; margin-bottom: 8px; color: #334155;}
.form-group label span {font-weight: normal; color: #94a3b8;	font-size: 0.9em;}
.form-group input {padding: 14px 18px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 1em; transition: all 0.2s;	background-color: white;}
.form-group input:focus {outline: none;	border-color: #DC070F; box-shadow: 0 0 0 3px rgba(220, 7, 15, 0.1);}

.btn-submit {background-color: #DC070F; color: white; border: none;	padding: 10px 40px;	border-radius: 40px; font-size: 1.3em; font-weight: 600; cursor: pointer; width: 100%; max-width: 400px; margin: 20px auto 0; display: block; transition: all 0.2s;	border: 2px solid #DC070F;}
.btn-submit:hover {	background-color: #b0060c; border-color: #b0060c; transform: scale(1.02);}

.legal-note { margin-top: 30px;	font-size: 0.75em; color: #64748b; padding-top: 25px; border-top: 2px solid #e2e8f0; text-align: left;}
.legal-note a {color: #DC070F; text-decoration: none;}

.errors {color:#DC070F; font-size:2.0rem; font-weight:700}

/* Estilos para el modal */
.modal-exito {display: none; position: fixed; top: 0; left: 0; width: 100%;	height: 100%; background-color: rgba(0,0,0,0.5); justify-content: center; align-items: center;z-index: 9999;}
.modal-contenido {background: white; padding: 30px;	border-radius: 10px; text-align: center; max-width: 400px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); animation: slideIn 0.3s;}
.modal-contenido h2 {color: #4CAF50;margin-bottom: 15px;}
.modal-contenido p {margin-bottom: 20px;font-size: 16px;}
.modal-contenido button {background-color: #4CAF50;	color: white; border: none;	padding: 10px 30px;	border-radius: 5px;	cursor: pointer;	font-size: 16px;}
.modal-contenido button:hover {	background-color: #45a049;}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
		
 @media (max-width: 1080px) {
	 
	.features-grid {
		grid-template-columns: repeat(1, 1fr);
		padding: 25px;
		gap:10px
	}
	
	.features-grid  div {  
	   min-width: 0; /* Permite que el contenido se encoja */
	  overflow-wrap: break-word; /* Rompe palabras largas */
	  word-break: break-word; /* Para compatibilidad */
	}
	
	
	.form-grid {
		grid-template-columns: 1fr;
	}
	 
 }

@media (max-width: 768px) {
	.hero-section {
	grid-template-columns: 1fr;
	gap: 20px;
	}

	.text-column {
	order: 1; 
	}

	.image-column {
	order: 2; 
	min-height: 350px;
	}
		

}