/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Tema hijo de GeneratePress
 Author:       Tu Nombre
 Author URI:   https://tudominio.com
 Template:     generatepress
 Version:      1.0.0
*/

/* Añade tu CSS personalizado debajo de esta línea */

body,
button,
input,
optgroup,
select,
textarea,
.entry-content,
.wp-block-paragraph,
.wp-block-list,
p,
ul,
ol,
li,
blockquote {
	font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
}
 
h1, h2, h3, h4, h5, h6,
.wp-block-heading,
.entry-title,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
	font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
 
h6,
.entry-content h6 {
	font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.4;
}
 
.wp-block-button__link,
.button,
.entry-content .wp-block-button__link {
	font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
}
 
blockquote,
.wp-block-quote,
.wp-block-pullquote {
	font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
	font-style: normal;
}
 
/* ============================================
   VERKO · Grid de servicios
   ============================================ */
 
.verko-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	width: 100%;
}
 
@media (max-width: 1024px) {
	.verko-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
 
@media (max-width: 640px) {
	.verko-services-grid {
		grid-template-columns: 1fr;
	}
}
 
.verko-card {
	background: #16204C;
	border: 1px solid rgba(245, 245, 240, 0.08);
	border-radius: 1.5rem;
	padding: 2.5rem 2rem;
	transition: transform 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
}
 
.verko-card:hover {
	border-color: rgba(220, 250, 123, 0.5);
	transform: translateY(-4px);
}
 
.verko-card h3 {
	font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif !important;
	color: #F5F5F0 !important;
	margin: 0 !important;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
 
.verko-card p {
	font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif !important;
	color: rgba(245, 245, 240, 0.75) !important;
	font-size: 1rem;
	line-height: 1.5;
	margin: 0 !important;
}
 
.verko-card .verko-card-desc {
	flex-grow: 1;
}
 
.verko-card-link {
	margin-top: auto !important;
}
 
.verko-card-link a {
	color: #DCFA7B !important;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease, color 0.3s ease;
}
 
.verko-card-link a:hover {
	gap: 0.75rem;
	color: #F5F5F0 !important;
}
 
/* Card destacada (Diseño Web): ancho completo del grid */
.verko-card-featured {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, #4B65FF 0%, #16204C 60%, #16204C 100%);
	border-color: rgba(220, 250, 123, 0.30);
	padding: 3rem 2.5rem;
}
 
.verko-card-featured:hover {
	border-color: rgba(220, 250, 123, 0.60);
}
 
.verko-card-featured h3 {
	font-size: clamp(2rem, 4vw, 2.75rem) !important;
}
 
.verko-card-featured p {
	color: rgba(245, 245, 240, 0.90) !important;
	font-size: 1.125rem;
	max-width: 60ch;
}