/**
 * Sou Instalador page – Stitch design (stitch-export)
 * Child theme: assets/css/instaladores.css
 */

:root {
	--st-primary: #ffc105;
	--st-primary-hover: #e6ad05;
	--st-bg-light: #f8f8f5;
	--st-bg-dark: #231e0f;
	--st-navy: #1a2b4b;
	--st-navy-soft: rgba(26, 43, 75, 0.05);
	--st-white: #ffffff;
	--st-text: #1a2b4b;
	--st-text-muted: #6b7280;
	--st-text-light: #9ca3af;
	--st-border: #e5e7eb;
	--st-radius: 0.5rem;
	--st-radius-lg: 0.75rem;
	--st-radius-xl: 1rem;
	--st-radius-2xl: 1.5rem;
	--st-container: min(1280px, 100% - 2rem);
	--st-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
	--st-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}
@media (min-width: 640px) { :root { --st-container: min(1280px, 100% - 3rem); } }
@media (min-width: 1024px) { :root { --st-container: min(1280px, 100% - 4rem); } }

.st-page {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--st-bg-light);
	color: var(--st-text);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.st-container {
	width: 100%;
	max-width: var(--st-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}
@media (min-width: 640px) {
	.st-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
	.st-container { padding-left: 2rem; padding-right: 2rem; }
}
.st-container--narrow {
	max-width: 48rem;
}

/* ----- Hero: split layout ----- */
.st-hero {
	padding: 4rem 0 5rem;
	background: var(--st-white);
}
@media (min-width: 1024px) {
	.st-hero { padding: 5rem 0 6rem; }
}
.st-hero__grid {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.st-hero__grid {
		grid-template-columns: 7fr 5fr;
		gap: 3rem;
	}
}
.st-hero__title {
	font-size: 2.25rem;
	line-height: 1.1;
	font-weight: 900;
	color: var(--st-navy);
	margin: 0 0 1.5rem;
	letter-spacing: -0.02em;
}
@media (min-width: 640px) {
	.st-hero__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.st-hero__title { font-size: 3.75rem; margin-bottom: 1.5rem; }
}
.st-hero__title-accent {
	color: var(--st-primary);
	text-decoration: underline;
	text-decoration-color: rgba(26, 43, 75, 0.1);
	text-underline-offset: 4px;
}
.st-hero__subtitle {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--st-text-muted);
	max-width: 42rem;
	margin: 0 0 2.5rem;
}
@media (min-width: 640px) {
	.st-hero__subtitle { font-size: 1.25rem; margin-bottom: 2.5rem; }
}
.st-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.st-hero__media {
	display: none;
}
@media (min-width: 1024px) {
	.st-hero__media { display: block; }
}
.st-hero__img-wrap {
	position: relative;
	border-radius: var(--st-radius-2xl);
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.st-hero__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Buttons */
.st-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.75rem;
	font-size: 1rem;
	font-weight: 700;
	border-radius: var(--st-radius-xl);
	text-decoration: none;
	transition: transform 0.2s, background 0.2s, border-color 0.2s;
	cursor: pointer;
	border: 2px solid transparent;
}
.st-btn--primary {
	background: var(--st-primary);
	color: var(--st-navy);
	box-shadow: 0 10px 15px -3px rgba(255, 193, 5, 0.2);
}
.st-btn--primary:hover {
	background: var(--st-primary-hover);
	transform: scale(1.02);
}
.st-btn--secondary {
	background: transparent;
	color: var(--st-navy);
	border-color: rgba(26, 43, 75, 0.1);
}
.st-btn--secondary:hover {
	background: var(--st-navy-soft);
}
.st-btn--block { width: 100%; }
.st-btn--lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* ----- Trust bar ----- */
.st-trust-bar {
	background: var(--st-navy);
	padding: 3rem 0;
}
.st-trust-bar__kicker {
	text-align: center;
	color: rgba(255, 193, 5, 0.85);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 2.5rem;
}
.st-trust-bar__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}
@media (min-width: 768px) {
	.st-trust-bar__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.st-trust-bar__stat {
	text-align: center;
	padding: 1.5rem 0.5rem;
}
.st-trust-bar__stat--border {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
	.st-trust-bar__stat--border {
		border-top: none;
		border-bottom: none;
		border-left: 1px solid rgba(255, 255, 255, 0.1);
		border-right: 1px solid rgba(255, 255, 255, 0.1);
	}
}
.st-trust-bar__value {
	font-size: 2.25rem;
	font-weight: 900;
	color: var(--st-white);
	margin: 0 0 0.5rem;
}
@media (min-width: 640px) {
	.st-trust-bar__value { font-size: 2.5rem; }
}
.st-trust-bar__label {
	font-size: 0.875rem;
	color: var(--st-text-light);
	margin: 0;
}

/* ----- Section header ----- */
.st-section__header {
	text-align: center;
	margin-bottom: 3rem;
}
.st-section__title {
	font-size: 1.875rem;
	font-weight: 900;
	color: var(--st-navy);
	margin: 0 0 1rem;
}
.st-section__title--center {
	text-align: center;
	margin-bottom: 3rem;
}
.st-section__subtitle {
	font-size: 1rem;
	color: var(--st-text-muted);
	max-width: 36rem;
	margin: 0 auto;
}

/* ----- How it works ----- */
.st-how {
	background: var(--st-white);
	padding: 4rem 0 5rem;
}
.st-how__grid {
	display: grid;
	gap: 2.5rem;
}
@media (min-width: 768px) {
	.st-how__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}
}
.st-how__item {
	text-align: center;
}
.st-how__icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.5rem;
	background: rgba(255, 193, 5, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.st-how__item:hover .st-how__icon {
	background: var(--st-primary);
}
.st-how__icon .mi {
	font-size: 1.875rem;
	color: var(--st-primary);
}
.st-how__item:hover .st-how__icon .mi {
	color: var(--st-navy);
}
.st-how__item-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--st-navy);
	margin: 0 0 0.75rem;
}
.st-how__item-text {
	font-size: 1rem;
	color: var(--st-text-muted);
	line-height: 1.5;
	margin: 0;
}

/* ----- Benefits grid ----- */
.st-benefits {
	background: var(--st-bg-light);
	padding: 4rem 0 5rem;
}
.st-benefits__grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.st-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.st-benefits__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.st-benefits__card {
	background: var(--st-white);
	padding: 1.5rem 2rem;
	border-radius: var(--st-radius-xl);
	box-shadow: var(--st-shadow);
	border: 1px solid var(--st-border);
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}
.st-benefits__check {
	flex-shrink: 0;
	color: #22c55e;
}
.st-benefits__check .mi {
	font-size: 1.5rem;
}
.st-benefits__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--st-navy);
	margin: 0 0 0.25rem;
}
.st-benefits__text {
	font-size: 0.875rem;
	color: var(--st-text-muted);
	margin: 0;
	line-height: 1.4;
}

/* ----- Pricing ----- */
.st-pricing {
	background: var(--st-white);
	padding: 4rem 0 5rem;
}
.st-pricing__grid {
	display: grid;
	gap: 1.5rem;
	max-width: 56rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.st-pricing__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}
.st-pricing__card {
	background: var(--st-white);
	border: 2px solid var(--st-border);
	border-radius: var(--st-radius-2xl);
	padding: 2rem;
	transition: border-color 0.2s;
}
.st-pricing__card:hover {
	border-color: var(--st-primary);
}
.st-pricing__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}
.st-pricing__name {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--st-navy);
	margin: 0 0 0.25rem;
}
.st-pricing__desc {
	font-size: 0.875rem;
	color: var(--st-text-muted);
	margin: 0;
}
.st-pricing__badge {
	background: rgba(255, 193, 5, 0.15);
	color: var(--st-navy);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
}
.st-pricing__price {
	margin-bottom: 2rem;
}
.st-pricing__from {
	display: block;
	font-size: 0.875rem;
	color: var(--st-text-muted);
	margin-bottom: 0.25rem;
}
.st-pricing__amount {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.25rem;
}
.st-pricing__currency {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--st-navy);
}
.st-pricing__value {
	font-size: 3rem;
	font-weight: 900;
	color: var(--st-navy);
}
.st-pricing__unit {
	font-size: 1rem;
	color: var(--st-text-muted);
}
.st-pricing__features {
	list-style: none;
	margin: 0;
	padding: 0;
}
.st-pricing__features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--st-text);
	margin-bottom: 1rem;
}
.st-pricing__features li:last-child { margin-bottom: 0; }
.st-pricing__features .mi {
	color: var(--st-primary);
	font-size: 1.25rem;
}
.st-pricing__disclaimer {
	text-align: center;
	font-size: 0.875rem;
	color: var(--st-text-light);
	font-style: italic;
	margin: 2.5rem 0 0;
}

/* ----- Testimonials ----- */
.st-testimonials {
	background: var(--st-bg-light);
	padding: 4rem 0 5rem;
}
.st-testimonials__grid {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.st-testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}
.st-testimonials__card {
	background: var(--st-white);
	padding: 2rem;
	border-radius: var(--st-radius-2xl);
	box-shadow: var(--st-shadow);
}
.st-testimonials__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.st-testimonials__avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	object-fit: cover;
}
.st-testimonials__name {
	font-weight: 700;
	color: var(--st-navy);
	margin: 0 0 0.125rem;
}
.st-testimonials__role {
	font-size: 0.75rem;
	color: var(--st-text-muted);
	margin: 0;
}
.st-testimonials__quote {
	font-size: 1rem;
	color: var(--st-text-muted);
	line-height: 1.5;
	font-style: italic;
	margin: 0;
}

/* ----- FAQ ----- */
.st-faq {
	background: var(--st-white);
	padding: 4rem 0 5rem;
}
.st-faq__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.st-faq__item {
	background: var(--st-bg-light);
	border-radius: var(--st-radius-xl);
	padding: 1.5rem;
}
.st-faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	color: var(--st-navy);
	cursor: pointer;
	list-style: none;
}
.st-faq__question::-webkit-details-marker { display: none; }
.st-faq__icon {
	transition: transform 0.2s;
}
.st-faq__item[open] .st-faq__icon {
	transform: rotate(180deg);
}
.st-faq__icon .mi {
	font-size: 1.5rem;
	color: var(--st-text-muted);
}
.st-faq__answer {
	margin: 1rem 0 0;
	font-size: 1rem;
	color: var(--st-text-muted);
	line-height: 1.5;
}

/* ----- CTA section ----- */
.st-cta {
	position: relative;
	background: var(--st-navy);
	padding: 4rem 0 5rem;
	overflow: hidden;
}
.st-cta__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.st-cta__bg::before,
.st-cta__bg::after {
	content: '';
	position: absolute;
	width: 16rem;
	height: 16rem;
	background: rgba(255, 193, 5, 0.1);
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
}
.st-cta__bg::before {
	top: 0;
	right: 0;
	transform: translate(30%, -30%);
}
.st-cta__bg::after {
	bottom: 0;
	left: 0;
	transform: translate(-30%, 30%);
}
.st-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 56rem;
	margin: 0 auto;
}
.st-cta__card {
	background: var(--st-white);
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
	.st-cta__card { padding: 3rem; }
}
.st-cta__header {
	text-align: center;
	margin-bottom: 2rem;
}
.st-cta__title {
	font-size: 1.875rem;
	font-weight: 900;
	color: var(--st-navy);
	margin: 0 0 1rem;
}
.st-cta__text {
	font-size: 1rem;
	color: var(--st-text-muted);
	margin: 0;
}
.st-cta__action {
	margin-top: 1rem;
}
