/* ════════════════════════════════════════════════════════════
   Roberto Laiptai – Elementor widgets
   All classes prefixed .rl- to avoid theme conflicts.
══════════════════════════════════════════════════════════════ */

.rl-scope {
	font-family: 'Inter', sans-serif;
	color: #2A2A2A;
	font-size: 16px;
	line-height: 1.75;
}
.rl-scope *, .rl-scope *::before, .rl-scope *::after { box-sizing: border-box; }
.rl-scope h1, .rl-scope h2, .rl-scope h3, .rl-scope h4, .rl-scope p, .rl-scope ul, .rl-scope ol { margin: 0; padding: 0; }

/* ── HERO ── */
.rl-hero {
	background: #1C1A17;
	padding: 90px 40px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.rl-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(196,154,42,0.03) 30px, rgba(196,154,42,0.03) 31px);
	pointer-events: none;
}
.rl-hero-tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #C49A2A;
	margin-bottom: 20px;
	position: relative;
}
.rl-hero h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 400;
	color: #F5F0E8;
	line-height: 1.15;
	margin: 0 0 22px;
	position: relative;
}
.rl-hero h1 em { font-style: italic; color: #C49A2A; }
.rl-hero-sub {
	font-size: 15px;
	color: rgba(245,240,232,0.6);
	max-width: 560px;
	margin: 0 auto 36px;
	line-height: 1.8;
	position: relative;
}
.rl-hero-actions { position: relative; }
.rl-hero-btn {
	display: inline-block;
	background: #C49A2A;
	color: #1C1A17;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 14px 32px;
	text-decoration: none;
	transition: background 0.2s;
}
.rl-hero-btn:hover { background: #dbb033; color: #1C1A17; }
.rl-hero-btn-ghost {
	display: inline-block;
	color: rgba(245,240,232,0.6);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	margin-left: 24px;
	border-bottom: 1px solid rgba(245,240,232,0.25);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
}
.rl-hero-btn-ghost:hover { color: #C49A2A; border-color: #C49A2A; }

/* ── STATS BAR ── */
.rl-stats-bar {
	background: #2A2620;
	display: flex;
	justify-content: center;
	gap: 0;
	border-bottom: 1px solid rgba(196,154,42,0.15);
}
.rl-stat-item {
	padding: 24px 48px;
	text-align: center;
	border-right: 1px solid rgba(196,154,42,0.1);
	flex: 1;
	max-width: 220px;
}
.rl-stat-item:last-child { border-right: none; }
.rl-stat-n {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	color: #C49A2A;
	display: block;
	line-height: 1;
	margin-bottom: 4px;
}
.rl-stat-t {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(245,240,232,0.4);
}

/* ── LAYOUT WRAPPER ── */
.rl-page-wrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── INTRO BLOCK ── */
.rl-intro-block {
	padding: 72px 0 60px;
	border-bottom: 1px solid #E8E4DC;
}
.rl-intro-block p {
	font-size: 16px;
	color: #4A4035;
	line-height: 1.85;
	margin: 0 0 16px;
}
.rl-intro-block p:last-of-type { margin-bottom: 0; }
.rl-intro-block p strong { color: #1C1A17; font-weight: 500; }

/* ── SECTION ── */
.rl-section {
	padding: 60px 0;
	border-bottom: 1px solid #E8E4DC;
}
.rl-section.rl-no-border { border-bottom: none; }

.rl-section-label {
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #C49A2A;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.rl-section-label::before {
	content: '';
	width: 20px;
	height: 1px;
	background: #C49A2A;
}

.rl-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 400;
	color: #1C1A17;
	margin: 0 0 20px;
	line-height: 1.2;
}
.rl-section h2 em { font-style: italic; color: #8B6914; }

.rl-section p {
	font-size: 15px;
	color: #5C5045;
	line-height: 1.85;
	margin: 0 0 16px;
	max-width: 720px;
}
.rl-section p:last-of-type { margin-bottom: 0; }

/* ── WHY LIST ── */
.rl-why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2px;
	margin-top: 32px;
	background: #E8E4DC;
}
.rl-why-card {
	background: #FAFAF8;
	padding: 28px;
	transition: background 0.2s;
}
.rl-why-card:hover { background: #fff; }
.rl-why-num {
	font-family: 'Playfair Display', serif;
	font-size: 13px;
	color: #C49A2A;
	margin-bottom: 10px;
	display: block;
}
.rl-why-title {
	font-size: 15px;
	font-weight: 500;
	color: #1C1A17;
	margin-bottom: 6px;
}
.rl-why-desc { font-size: 13px; color: #7A6A5A; line-height: 1.7; }

/* ── PROCESS STEPS ── */
.rl-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 32px;
	border: 1px solid #E8E4DC;
}
.rl-step-row {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 24px 28px;
	border-bottom: 1px solid #E8E4DC;
	transition: background 0.2s;
}
.rl-step-row:last-child { border-bottom: none; }
.rl-step-row:hover { background: #F5F1E8; }
.rl-step-n {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	color: #D4C4A0;
	line-height: 1;
	flex-shrink: 0;
	width: 36px;
	padding-top: 2px;
}
.rl-step-title { font-size: 15px; font-weight: 500; color: #1C1A17; margin-bottom: 4px; }
.rl-step-desc { font-size: 13px; color: #7A6A5A; line-height: 1.7; }

/* ── PRICE FACTORS ── */
.rl-price-list {
	margin-top: 28px;
	border: 1px solid #E8E4DC;
}
.rl-price-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 24px;
	border-bottom: 1px solid #E8E4DC;
	font-size: 14px;
	color: #5C5045;
	transition: background 0.2s, padding-left 0.3s;
}
.rl-price-row:last-child { border-bottom: none; }
.rl-price-row:hover { background: #F5F1E8; padding-left: 32px; }
.rl-price-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #C49A2A;
	flex-shrink: 0;
}

/* ── FAQ ── */
.rl-faq-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.rl-faq-item {
	background: #F0ECE4;
	overflow: hidden;
	transition: background 0.2s;
}
.rl-faq-item:hover { background: #EAE5DC; }
.rl-faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 24px;
	cursor: pointer;
	gap: 16px;
	user-select: none;
}
.rl-faq-q-text {
	font-size: 15px;
	font-weight: 500;
	color: #1C1A17;
	line-height: 1.4;
}
.rl-faq-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid rgba(139,105,20,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #8B6914;
	flex-shrink: 0;
	transition: transform 0.3s, background 0.2s, color 0.2s, border-color 0.2s;
	font-style: normal;
}
.rl-faq-item.rl-open .rl-faq-icon {
	transform: rotate(45deg);
	background: #8B6914;
	color: #fff;
	border-color: #8B6914;
}
.rl-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s;
	font-size: 14px;
	color: #5C5045;
	line-height: 1.75;
	padding: 0 24px;
}
.rl-faq-item.rl-open .rl-faq-a {
	max-height: 400px;
	padding: 0 24px 18px;
}

/* ── CTA SECTION ── */
.rl-cta-section {
	background: #1C1A17;
	padding: 64px 40px;
	text-align: center;
}
.rl-cta-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 400;
	color: #F5F0E8;
	margin: 0 0 14px;
	line-height: 1.2;
}
.rl-cta-section h2 em { font-style: italic; color: #C49A2A; }
.rl-cta-section p {
	font-size: 15px;
	color: rgba(245,240,232,0.55);
	margin: 0 0 32px;
	line-height: 1.7;
}
.rl-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}
.rl-cta-phone {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	color: rgba(245,240,232,0.5);
	text-decoration: none;
	transition: color 0.2s;
	letter-spacing: 0.03em;
}
.rl-cta-phone:hover { color: #C49A2A; }

/* ── MATERIALS ── */
.rl-materials-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 32px;
}
.rl-mat-card {
	border: 1px solid #E8E4DC;
	padding: 24px 20px;
	background: #fff;
	transition: border-color 0.2s, transform 0.2s;
}
.rl-mat-card:hover { border-color: #C49A2A; transform: translateY(-2px); }
.rl-mat-swatch {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	margin-bottom: 14px;
	background: radial-gradient(circle at 30% 30%, #C49A2A, #7A5510);
}
.rl-mat-name {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	color: #1C1A17;
	margin-bottom: 6px;
}
.rl-mat-desc { font-size: 13px; color: #7A6A5A; line-height: 1.65; margin: 0; }
.rl-mat-tag {
	display: inline-block;
	margin-top: 12px;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8B6914;
	border: 1px solid rgba(139,105,20,0.25);
	padding: 3px 9px;
}

/* ── REGIONS ── */
.rl-region-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}
.rl-rtag {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8B6914;
	border: 1px solid rgba(139,105,20,0.25);
	padding: 5px 12px;
	background: transparent;
	transition: background 0.2s, color 0.2s;
}
.rl-rtag:hover { background: #8B6914; color: #fff; }

/* ── DIVIDER ── */
.rl-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 8px 0 32px;
}
.rl-divider::before, .rl-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #E8E4DC;
}
.rl-divider-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #C49A2A;
}

/* ── SCROLL ANIMATIONS ── */
.rl-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.rl-reveal.rl-in {
	opacity: 1;
	transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
	.rl-hero { padding: 70px 24px 60px; }
	.rl-stats-bar { flex-wrap: wrap; }
	.rl-stat-item { min-width: 50%; border-bottom: 1px solid rgba(196,154,42,0.1); }
	.rl-why-grid { grid-template-columns: 1fr; }
	.rl-materials-row { grid-template-columns: 1fr; }
	.rl-hero-btn-ghost { display: block; margin: 16px 0 0; }
	.rl-page-wrap { padding: 0 16px; }
	.rl-cta-section { padding: 52px 24px; }
}
