/* ==========================================================================
   Cawow - Styles Punto de Instalación
   Version: 1.0
   ========================================================================== */

:root {
	--orange: #FE8E0F;
	--orange-dark: #E67E00;
	--orange-light: #FFB04D;
	--black: #1a1a1a;
	--gray: #6B6B6B;
	--gray-light: #f5f5f5;
	--white: #ffffff;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
	background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
	padding: 120px 0 80px;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 60%;
	height: 200%;
	background: rgba(255, 255, 255, 0.1);
	transform: rotate(35deg);
}

.page-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.hero-subtitle {
	font-size: 1.3rem;
	opacity: 0.95;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	color: var(--black);
	margin-bottom: 1rem;
	font-weight: 700;
}

.section-header p {
	font-size: 1.2rem;
	color: var(--gray);
	max-width: 600px;
	margin: 0 auto;
}

/* ==========================================================================
   Opportunity Section
   ========================================================================== */
.section-oportunidad {
	padding: 80px 0;
	background: white;
}

.opportunity-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.intro-content h2 {
	color: var(--black);
	margin-bottom: 1rem;
	font-size: 2.5rem;
}

.intro-content .lead {
	font-size: 1.3rem;
	color: var(--orange);
	font-weight: 600;
	margin-bottom: 1rem;
}

.key-points {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.key-point {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--gray-light);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.key-point:hover {
	background: var(--orange);
	color: white;
	transform: translateX(10px);
}

.key-point i {
	font-size: 1.5rem;
	color: var(--orange);
	flex-shrink: 0;
}

.key-point:hover i {
	color: white;
}

.intro-image img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Offers Section
   ========================================================================== */
.section-ofrecemos {
	padding: 80px 0;
	background: var(--gray-light);
}

.offers-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.offer-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.offer-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, var(--orange), var(--orange-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.offer-icon i {
	font-size: 2rem;
	color: white;
}

.offer-card h3 {
	margin-bottom: 1rem;
	color: var(--black);
	font-size: 1.4rem;
}

/* ==========================================================================
   Ideal Locations Section
   ========================================================================== */
.section-ubicaciones-ideales {
	padding: 80px 0;
	background: white;
}

.ideal-locations {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.location-item {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 2rem;
	align-items: center;
	padding: 1.5rem;
	background: var(--gray-light);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.location-item:hover {
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: translateX(10px);
}

.location-item:nth-child(even) {
	background: white;
	border: 2px solid var(--gray-light);
}

.location-image {
	position: relative;
	height: 220px;
	border-radius: 10px;
	overflow: hidden;
}

.location-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.location-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(254, 142, 15, 0.8), rgba(254, 142, 15, 0.4));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.location-item:hover .location-overlay {
	opacity: 1;
}

.location-overlay i {
	font-size: 3rem;
	color: white;
}

.location-info h3 {
	color: var(--orange);
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.location-info ul {
	list-style: none;
	margin-top: 1rem;
	padding: 0;
}

.location-info li {
	padding: 0.3rem 0 0.3rem 1.5rem;
	position: relative;
	color: var(--gray);
}

.location-info li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--orange);
	font-weight: bold;
}

.location-note {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--gray-light);
	padding: 1.5rem;
	border-radius: 10px;
	margin: 2rem 0;
}

.location-note i {
	color: var(--orange);
	font-size: 1.5rem;
	flex-shrink: 0;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.section-como-funciona {
	padding: 80px 0;
	background: var(--gray-light);
}

.process-steps {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	gap: 2rem;
	margin: 3rem 0;
}

.process-step {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	position: relative;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-icon {
	width: 60px;
	height: 60px;
	margin: -3rem auto 1rem;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon span {
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
}

.process-step h3 {
	margin-bottom: 1rem;
	color: var(--black);
}

.process-step ul {
	list-style: none;
	text-align: left;
	max-width: 200px;
	margin: 0 auto;
	padding: 0;
}

.process-step li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.3rem 0;
	color: var(--gray);
}

.process-step i {
	color: var(--orange);
	flex-shrink: 0;
}

.process-connector {
	color: var(--orange);
	font-size: 2rem;
}

.collaboration-highlight {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	background: white;
	padding: 2rem;
	border-radius: 15px;
	border: 2px solid var(--orange);
	margin: 2rem 0;
}

.collaboration-highlight i {
	font-size: 2.5rem;
	color: var(--orange);
}

/* ==========================================================================
   Evaluation Section
   ========================================================================== */
.section-evaluacion {
	padding: 80px 0;
	background: white;
}

.evaluation-box {
	background: var(--gray-light);
	border-radius: 20px;
	padding: 3rem;
	max-width: 800px;
	margin: 0 auto;
}

.evaluation-header {
	text-align: center;
	margin-bottom: 2rem;
}

.evaluation-checklist {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	margin-bottom: 2rem;
}

.checklist-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border-bottom: 1px solid var(--gray-light);
	transition: all 0.3s ease;
}

.checklist-item:last-child {
	border-bottom: none;
}

.checklist-item:hover {
	background: var(--gray-light);
}

.checklist-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--orange);
	cursor: pointer;
}

.checklist-item label {
	cursor: pointer;
	flex: 1;
	font-size: 1.05rem;
}

.evaluation-result {
	background: white;
	padding: 1.5rem;
	border-radius: 10px;
	text-align: center;
	border: 2px solid var(--orange);
}

.evaluation-result.success {
	background: #d4edda;
	border-color: #28a745;
}

.evaluation-result.partial {
	background: #fff3cd;
	border-color: #ffc107;
}

/* ==========================================================================
   Expansion Section
   ========================================================================== */
.section-expansion {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
}

.expansion-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 3rem;
	color: var(--black);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.expansion-text h2 {
	color: var(--black);
	margin-bottom: 1rem;
}

.expansion-text .lead {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--orange);
	margin-bottom: 1rem;
}

.expansion-stats {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	color: var(--orange);
}

.stat-label {
	display: block;
	font-size: 0.9rem;
	color: var(--gray);
	margin-top: 0.25rem;
}

.expansion-benefits h3 {
	color: var(--orange);
	margin-bottom: 1.5rem;
}

.benefit {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.benefit i {
	font-size: 1.5rem;
	color: var(--orange);
	flex-shrink: 0;
	margin-top: 0.25rem;
}

/* ==========================================================================
   CTA Buttons
   ========================================================================== */
.cta-container {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.cta-primary {
	background: var(--orange);
	color: white;
}

.cta-primary:hover {
	background: var(--orange-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(254, 142, 15, 0.3);
}

.cta-secondary {
	background: white;
	color: var(--orange);
	border: 2px solid var(--orange);
}

.cta-secondary:hover {
	background: var(--orange);
	color: white;
	transform: translateY(-2px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
	.opportunity-intro,
	.location-item,
	.process-steps,
	.expansion-content {
		grid-template-columns: 1fr;
	}
	
	.process-connector {
		display: none;
	}
	
	.process-step:not(:last-child)::after {
		content: "+";
		position: absolute;
		bottom: -45px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 2rem;
		font-weight: bold;
		color: var(--orange);
		background: var(--gray-light);
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1;
	}
	
	.process-step:nth-child(3)::after {
		content: "=";
	}

	.offers-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

}

@media (max-width: 768px) {
	.page-hero h1 {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.location-item {
		padding: 1rem;
	}
	
	.location-image {
		height: 200px;
	}
	
	.cta-container {
		flex-direction: column;
	}
	
	.cta-button {
		width: 100%;
		justify-content: center;
	}
	
	.expansion-stats {
		justify-content: center;
	}
	
	.evaluation-box {
		padding: 2rem 1.5rem;
	}

	.offers-grid {
		grid-template-columns: 1fr; /* 1 seule colonne sur mobile */
		gap: 1.5rem;
	}
}
