/*
Theme Name: Elevate WPO
Theme URI: https://elevate.example
Author: Elevate
Description: Landing page ligera para servicios de optimización WordPress y Core Web Vitals.
Version: 1.0.0
*/

:root {
	--ink: #102b38;
	--muted: #55717a;
	--teal: #2d91a7;
	--teal-dark: #1d6e82;
	--mint: #8fd6c9;
	--paper: #f7fbfa;
	--white: #fff;
	--line: #d9ebe8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}
a { color: inherit; }
.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1180px;
	margin: auto;
	padding: 1.25rem 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-weight: 800; letter-spacing: .04em; }
.brand-mark { width: 42px; height: 42px; }
.brand-name { font-size: .95rem; }
.brand-name span { display: block; color: var(--teal); font-size: .62rem; letter-spacing: .1em; }
.nav { display: flex; align-items: center; gap: 1.6rem; font-size: .9rem; color: var(--muted); }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--teal-dark); }
.button {
	display: inline-block;
	padding: .78rem 1.15rem;
	border-radius: 999px;
	background: var(--teal);
	color: var(--white);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(45,145,167,.2);
}
.button:hover { background: var(--teal-dark); }
.hero {
	position: relative;
	overflow: hidden;
	padding: 5rem 1.5rem 6rem;
	background: linear-gradient(135deg, #e9f7f5 0%, #f7fbfa 62%);
}
.hero::after {
	content: "";
	position: absolute;
	width: 430px;
	height: 430px;
	right: -150px;
	top: -120px;
	border: 70px solid rgba(143,214,201,.2);
	border-radius: 50%;
}
.hero-inner, .section-inner { max-width: 1180px; margin: auto; }
.hero-inner { position: relative; z-index: 1; max-width: 1180px; }
.eyebrow { color: var(--teal-dark); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; margin: 0; }
h1 { max-width: 720px; margin-top: .9rem; font-size: clamp(2.7rem, 7vw, 5.7rem); letter-spacing: -.06em; }
.hero p { max-width: 600px; margin: 1.4rem 0 2rem; color: var(--muted); font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.text-link { color: var(--teal-dark); font-weight: 700; text-decoration: none; }
.proof { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 3.5rem; color: var(--muted); font-size: .85rem; }
.proof strong { display: block; color: var(--ink); font-size: 1.15rem; }
.section { padding: 5.5rem 1.5rem; }
.section-heading { max-width: 670px; margin-bottom: 2.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.04em; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { padding: 1.8rem; border: 1px solid var(--line); border-radius: 1.1rem; background: var(--white); }
.card-icon { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; margin-bottom: 1.5rem; border-radius: .7rem; background: var(--mint); color: var(--ink); font-weight: 900; }
.card h3 { margin-bottom: .6rem; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.band { background: var(--ink); color: var(--white); }
.band .section-heading p, .band .card p { color: #b6d0d2; }
.band .card { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-number { color: var(--mint); font-size: 2.4rem; font-weight: 800; }
.step h3 { margin: .7rem 0; }
.cta { padding: 5rem 1.5rem; text-align: center; background: var(--mint); }
.cta p { max-width: 540px; margin: 1rem auto 2rem; color: #315e65; }
.site-footer { padding: 2rem 1.5rem; background: #0b202a; color: #a4c0c2; font-size: .8rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; max-width: 1180px; margin: auto; }
.footer-inner a { color: var(--mint); }
@media (max-width: 720px) {
	.site-header { padding: 1rem; }
	.nav a:not(.button) { display: none; }
	.hero { padding: 4rem 1rem 4.5rem; }
	.section { padding: 4rem 1rem; }
	.cards, .steps { grid-template-columns: 1fr; }
	.proof { margin-top: 2.5rem; }
	.footer-inner { flex-direction: column; }
}
