@charset "utf-8";
/* CSS Document */

:root {
	--primary-color: #E60D60;
	--secondary-color: #99BC0C;
	--text-color: rgb(74, 74, 74);
	--title-color: #000000;
	--font-family: "Segoe UI", sans-serif;
}

body {
	font-family: var(--font-family);
	font-weight: 400;
	color: var(--text-color);
	font-size: 14px;
	line-height: 28px;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
}

.hero-content {
	max-width: 850px;
	padding: 20px;
	box-sizing: border-box;
}

.hero-content h1 {
	color: #ffffff;
	font-size: 42px;
	line-height: 1.1;
	margin-bottom: 20px;
	font-weight: 700;
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 30px;
	color:#FFF;
}

/* Contenedor General */
.main-wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 20px;
}

h2 {
	color: var(--title-color);
	font-size: 30px;
	margin-bottom: 25px;
	font-weight: 700;
}

h3 {
	color: var(--title-color);
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}

/* Secciones de Dos Columnas */
.split-section {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

.split-section.reverse {
	flex-direction: row-reverse;
}

.split-text {
	flex: 1;
	min-width: 300px;
}

.split-image {
	flex: 1;
	min-width: 300px;
}

.split-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Sistema de Cards: 3 arriba, 2 abajo */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr); /* 6 columnas para dividir en tercios y mitades */
	gap: 25px;
	margin: 40px 0;
}

.benefit-card {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	border-top: 5px solid var(--secondary-color);
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	transition: 0.3s;
}

.benefit-card:hover { transform: translateY(-10px); }

/* Posicionamiento de las 5 cards */
.card-1, .card-2, .card-3 { grid-column: span 2; } /* Fila 1: 3 cards */
.card-4 { grid-column: 2 / span 2; } /* Fila 2: Centradas */
.card-5 { grid-column: 4 / span 2; }

.benefit-card strong {
	display: block;
	color: var(--primary-color);
	font-size: 18px;
	margin-bottom: 10px;
}

/* Botones */
.btn-cta {
	background-color: var(--primary-color);
	color: #fff !important;
	padding: 16px 45px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 700;
	display: inline-block;
	text-transform: uppercase;
	transition: 0.3s;
}

.btn-cta:hover { background-color: var(--secondary-color); }

.btn-outline {
	border: 2px solid var(--secondary-color);
	color: var(--secondary-color) !important;
	padding: 12px 35px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 700;
	display: inline-block;
	margin-top: 20px;
}

/* Listas */
ul { padding-left: 20px; }
li { margin-bottom: 12px; }

/* Responsive */
@media (max-width: 900px) {
	.benefits-grid { display: flex; flex-direction: column; }
	.hero-content h1 { font-size: 32px; }
	.split-section { text-align: center; gap: 30px; }
}
/* Estilo de Pasos del Proceso */
:root {
	--primary-color: #e60d60; /*rosa*/
	--secondary-color: #99BC0C;
	--title-color: #1e1e1e;
}

.process-container {
	display: grid;
	/* Forzamos 4 columnas iguales en una sola línea */
	grid-template-columns: repeat(4, 1fr); 
	gap: 20px; /* Reducimos un poco el gap para que respiren mejor */
	margin-top: 40px;
	counter-reset: step-counter;
}

.process-step {
	background: #ffffff;
	padding: 40px 20px 30px 20px; /* Ajuste de padding lateral */
	border-radius: 15px;
	position: relative;
	border: 1px solid #f0f0f0;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.process-step:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.process-step::before {
	counter-increment: step-counter;
	content: counter(step-counter);
	position: absolute;
	top: -20px;
	left: 20px;
	width: 40px;
	height: 40px;
	background-color: var(--secondary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	box-shadow: 0 4px 10px rgba(153, 188, 12, 0.3);
	z-index: 2;
}

.process-step h3 {
	margin-top: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f4f4f4;
	font-size: 16px; /* Tamaño un poco más pequeño para que quepa en la línea */
	color: var(--title-color);
	line-height: 1.2;
}

.process-step p {
	font-size: 13.5px; /* Ajuste de lectura */
	line-height: 1.5;
	color: #555;
	margin-top: 15px;
}

/* Responsivo: Si la pantalla es muy pequeña, se apilan para no romperse */
@media (max-width: 1024px) {
	.process-container {
		grid-template-columns: repeat(2, 1fr); /* 2 y 2 en tablets */
	}
}

@media (max-width: 600px) {
	.process-container {
		grid-template-columns: 1fr; /* 1 columna en móviles */
	}
}

a{
	color: var(--primary-color);
	/*text-decoration:none;	*/
}
a:hover{
	color: var(--secondary-color);	
}
.negra{
	color: #000;	
}
