:root {
	--orange-vortex: #F0441C;
	--grey-dark: #33363b;
	--grey-medium: #6B6D72;
	--grey-light: #f4f7f9;
	--white: #ffffff;
	--shadow: 0 10px 30px rgba(0,0,0,0.1);
}
 body {
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Contenedor y Botones */
.erp-container {
    position: relative;
    margin: 20px 0;
    border: 1px solid #eee;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.erp-controls {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.btn-erp {
    padding: 8px 16px;
    border: 2px solid #007bff;
    background: transparent;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-erp.active {
    background: #007bff;
    color: white;
}

.img-erp-toggle {
    width: 100%;
    cursor: zoom-in;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.img-erp-toggle:hover {
    filter: brightness(0.9);
}

/* MODAL (Efecto Zoom) */
.erp-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.erp-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

.erp-close {
    position: absolute;
    top: 15px; right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Alt Sections (Image + Text) */
.content-block {
	display: flex;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
}

.content-block.reverse { flex-direction: row-reverse; }

.content-text { flex: 1; min-width: 300px; }
.content-image { flex: 1.2; min-width: 300px; }

.content-image img {
	width: 100%;
	border-radius: 8px;
	box-shadow: var(--shadow);
}
.section-padding { padding: 80px 0; }
.container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

/* Contenedor principal de la cabecera */
.hero-container {
	position: relative;
	width: 100%;
	height: 500px;
	display: flex;
	justify-content: center; /* Centrado horizontal Flex */
	align-items: center;     /* Centrado vertical Flex */
	overflow: hidden;
	text-align: center;      /* Refuerzo de centrado */
}

/* Imagen de fondo */
.hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

/* Capa flotante con transparencia */
.hero-overlay {
	position: relative;
	z-index: 2; /* Por encima de la imagen */
	background-color: rgba(0, 0, 0, 0.6); 
	color: white;
	padding: 40px;
	max-width: 800px;
	width: 90%; /* Responsive */
	border-radius: 4px;
	box-sizing: border-box; /* Evita que el padding sume al ancho */
	backdrop-filter: blur(5px);
	/* Centrado adicional por márgenes por si falla el flex */
	margin: 0 auto; 
}

.hero-overlay h1 {
	margin-top: 0;
	font-size: 2rem;
	text-transform: uppercase;
	border-bottom: 3px solid #007bff; /* Color de acento */
	display: inline-block;
	margin-bottom: 20px;
}

.hero-overlay p {
	font-size: 1.2rem;
	margin-bottom: 0;
	font-weight: 300;
}

/* Contenido del cuerpo */
.content {
	padding: 50px 10%;
	background-color: #f9f9f9;
}

h2 {
	color: #222;
}