/* ============================================================
   07-home.css — Componentes específicos da home
   Hero CTA, Steps Section, APL image
   ============================================================ */

/* ── Hero ── */
.fullscreen-image {
	position: relative;
	width: 100%;
	height: calc(100vh - var(--nav-height, 88px));
	min-height: 480px;
	overflow: hidden;
}
.fullscreen-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Hero CTA */
.hero-cta {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	text-align: center;
}

.hero-cta-text {
	color: white;
	font-size: 1.8rem;
	font-weight: 600;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
	margin-bottom: 15px;
	animation: fadeInUp 1s ease 0.5s both;
}
.hero-scroll-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.8s both;
}
.hero-scroll-indicator:hover { transform: translateY(-5px); }
.scroll-arrow {
	width: 30px; height: 30px;
	border: 2px solid white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	animation: bounce 2s infinite;
}
.scroll-arrow svg { width: 16px; height: 16px; color: white; }

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-10px); }
	60% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
	.hero-cta-text { font-size: 1.4rem; }
	.hero-cta { bottom: 30px; }
	.scroll-arrow { width: 25px; height: 25px; }
	.scroll-arrow svg { width: 14px; height: 14px; }
}

/* APL Image */
.apl-image-col {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-left: 30px;
}
.apl-image { width: 100%; }
.apl-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border: 3px solid rgba(255, 255, 255, 0.9);
}
@media (max-width: 991px) {
	.apl-image-col { padding-left: 15px; margin-top: 40px; }
}

/* Steps Section */
.steps-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}
.steps-container { position: relative; z-index: 2; }

.steps-title { text-align: center; margin-bottom: 80px; }
.steps-title h3 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.steps-subtitle {
	font-size: 1.3rem;
	color: #6c757d;
	margin-bottom: 30px;
	font-weight: 300;
	line-height: 1.6;
}

.steps-workflow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	position: relative;
}

.step-card {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	width: 280px;
	text-align: center;
	position: relative;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 123, 255, 0.1);
	transition: all 0.4s ease;
	overflow: hidden;
}
.step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 123, 255, 0.15);
	border-color: #007bff;
}

.setup-step {
	border: 2px solid #28a745;
	background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
}
.setup-step:hover {
	border-color: #28a745;
	box-shadow: 0 20px 60px rgba(40, 167, 69, 0.2);
}

.efficiency-badge {
	position: absolute;
	top: -10px; right: -10px;
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.step-number {
	width: 70px; height: 70px;
	background: linear-gradient(135deg, #007bff, #0056b3);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 auto 25px;
	box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
	position: relative;
	z-index: 2;
}
.setup-step .step-number {
	background: linear-gradient(135deg, #28a745, #20c997);
	box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.step-title { font-size: 1.4rem; font-weight: 700; color: #2c3e50; margin-bottom: 15px; line-height: 1.3; }
.step-description { color: #6c757d; line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }

.step-highlight {
	background: linear-gradient(135deg, #e3f2fd, #bbdefb);
	color: #1976d2;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-block;
	border: 1px solid rgba(25, 118, 210, 0.2);
}
.setup-step .step-highlight {
	background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
	color: #2e7d32;
	border-color: rgba(46, 125, 50, 0.2);
}

.step-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0 20px;
}
.step-arrow svg {
	width: 40px; height: 40px;
	color: #007bff;
	background: white;
	border-radius: 50%;
	padding: 8px;
	box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
	z-index: 2;
	position: relative;
	transition: all 0.3s ease;
}

@media (max-width: 1200px) {
	.steps-workflow { gap: 30px; }
	.step-card { width: 260px; }
}
@media (max-width: 991px) {
	.steps-workflow { flex-direction: column; gap: 50px; }
	.step-arrow { transform: rotate(90deg); margin: 20px 0; }
}
@media (max-width: 768px) {
	.steps-section { padding: 60px 0; }
	.steps-title h3 { font-size: 2.2rem; }
	.steps-subtitle { font-size: 1.1rem; }
	.step-card { width: 100%; max-width: 300px; padding: 30px 25px; }
	.steps-title { margin-bottom: 60px; }
}
@media (max-width: 480px) {
	.step-card { padding: 25px 20px; }
	.step-number { width: 60px; height: 60px; font-size: 1.6rem; }
	.step-title { font-size: 1.2rem; }
	.efficiency-badge { font-size: 0.7rem; padding: 6px 12px; }
}

.hero-scroll-indicator {
	cursor: pointer;
}