* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #dc2626;
	--secondary: #b91c1c;
	--accent: #ef4444;
	--bg-main: #F2E1CE;
	--bg-light: #FFFFFF;
	--text-dark: #1A1A1A;
	--text-light: #666666;
	--border: #d4c3b5;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #FFFFFF;
	color: var(--text-dark);
	overflow-x: hidden;
}

/* HEADER ULTRA PRO */
header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
	max-width: 1600px;
	margin: 0 auto;
	padding: 1rem 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 1001;
}

.logo-img {
	height: 65px;
	width: auto;
	filter: drop-shadow(0 4px 10px rgba(52, 152, 219, 0.2));
}

.nav-menu {
	display: flex;
	gap: 3rem;
	list-style: none;
	align-items: center;
}

.nav-menu a {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	position: relative;
	transition: color 0.3s;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s;
}


.nav-menu a:hover::after {
	width: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
	padding: 0.9rem 2rem;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1002;
	background: none;
	border: none;
	padding: 10px;
}

.menu-toggle span {
	width: 30px;
	height: 3px;
	background: var(--primary);
	border-radius: 2px;
	transition: all 0.3s ease;
	display: block;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(9px, -9px);
}

/* HERO SECTION */
.hero {
	margin-top: 75px;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #F2E1CE 0%, #faf5ef 40%, #FFFFFF 100%);
	position: relative;
	overflow: hidden;
	padding-top: 2rem;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(220, 38, 38, 0.08), transparent);
	border-radius: 50%;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(26, 26, 26, 0.05), transparent);
	border-radius: 50%;
}

.hero-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 4rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content h1 {
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 2rem;
	letter-spacing: -2px;
	color: var(--primary);
}

.hero-content .gradient-text {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-content p {
	font-size: 1.3rem;
	line-height: 1.8;
	margin-bottom: 3rem;
	color: var(--text-light);
	font-weight: 400;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.btn-secondary {
	background: transparent;
	color: var(--primary);
	padding: 0.9rem 2rem;
	border: 2px solid var(--primary);
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-secondary:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

.btn-whatsapp {
	background: #25D366;
	color: white;
	padding: 0.9rem 2rem;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.btn-whatsapp:hover {
	background: #20ba59;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.stat-box {
	text-align: center;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	color: var(--accent);
	line-height: 1;
}

.stat-label {
	font-size: 0.95rem;
	margin-top: 0.5rem;
	color: var(--text-light);
	font-weight: 600;
}

.hero-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-card {
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.device-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.device-item {
	background: linear-gradient(135deg, #F2E1CE 0%, #faf5ef 100%);
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
	border: 1px solid rgba(242, 225, 206, 0.5);
	transition: all 0.3s;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.device-item:hover {
	background: linear-gradient(135deg, #faf5ef 0%, #FFFFFF 100%);
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
	border-color: var(--accent);
}

.device-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.device-name {
	font-weight: 600;
	font-size: 1rem;
	color: var(--primary);
}

/* SERVICES SECTION */
.services {
	padding: 0rem 4rem 8rem;
	background: linear-gradient(180deg, #FFFFFF 0%, #faf5ef 50%, #F2E1CE 100%);
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 5rem;
}

.section-title {
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
	color: var(--primary);
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--text-light);
	line-height: 1.8;
}

.services-grid {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.service-card {
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 24px;
	padding: 3rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transition: transform 0.4s;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card::after {
	content: attr(data-icon);
	position: absolute;
	right: -30px;
	bottom: -30px;
	font-size: 14rem;
	opacity: 0.04;
	transition: all 0.4s;
	pointer-events: none;
}

.service-card:hover::after {
	opacity: 0.1;
	right: -20px;
	bottom: -20px;
	transform: scale(1.05);
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent);
	box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
}

.service-icon {
	display: none;
}

.service-card h3 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--primary);
	line-height: 1.2;
}

.service-card ul {
	list-style: none;
}

.service-card li {
	padding: 0.9rem 0;
	color: var(--text-light);
	font-weight: 500;
	position: relative;
	padding-left: 2rem;
	transition: all 0.3s;
}

.service-card li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: bold;
	font-size: 1.2rem;
	transition: all 0.3s;
}

.service-card:hover li {
	color: #555;
}

.service-card:hover li::before {
	transform: translateX(5px);
}

.service-card:last-child {
	grid-column: 1 / -1;
}

.service-card:last-child h3 {
	font-size: 2.5rem;
}

.service-card:last-child ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem 3rem;
}

/* FEATURES SECTION */
.features {
	padding-top: 0rem;
	padding-right: 4rem;
	padding-bottom: 8rem;
	padding-left: 4rem;
	background: white;
}

.features-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.feature-card {
	background: linear-gradient(135deg, #FFFFFF 0%, #faf5ef 100%);
	border: 1px solid rgba(242, 225, 206, 0.3);
	border-radius: 16px;
	padding: 3rem;
	text-align: center;
	transition: all 0.3s;
}

.feature-card:hover {
	background: linear-gradient(135deg, #F2E1CE 0%, #faf5ef 100%);
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(220, 38, 38, 0.12);
	border-color: var(--accent);
}

.feature-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary);
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.8;
}

/* ZONE SECTION */
.zone {
	padding: 0rem 4rem 8rem;
	background: linear-gradient(180deg, #F2E1CE 0%, #faf5ef 50%, #FFFFFF 100%);
}

.zone-container {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.zone-info h3 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 2rem;
	color: var(--primary);
}

.zone-info p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.cities {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.city-badge {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.95rem;
	color: white;
}

.map-container {
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	padding: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
	border-radius: 12px;
	width: 100%;
	height: 500px;
}

/* TESTIMONIALS */
.testimonials {
	padding: 0rem 4rem;
	background: white;
}

.testimonials-grid {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.testimonial-card {
	background: linear-gradient(135deg, #FFFFFF 0%, #faf5ef 100%);
	border: 1px solid rgba(242, 225, 206, 0.3);
	border-radius: 16px;
	padding: 3rem;
	transition: all 0.3s;
}

.testimonial-card:hover {
	background: linear-gradient(135deg, #F2E1CE 0%, #faf5ef 100%);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
	color: #FFD700;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-light);
	margin-bottom: 2rem;
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	color: var(--primary);
	text-align: right;
}

/* CONTACT SECTION */
.contact {
	padding: 0rem 4rem 4rem;
	background: linear-gradient(180deg, #FFFFFF 0%, #faf5ef 100%);
}

.contact-container {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-box {
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: all 0.3s;
}

.info-box:hover {
	border-color: var(--accent);
	transform: translateX(10px);
	box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
}

.info-icon {
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	flex-shrink: 0;
	color: white;
}

.info-icon.whatsapp {
	background: #25D366;
}

.info-box h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--primary);
}

.info-box p,
.info-box a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
}

.info-box a:hover {
	color: var(--accent);
}

.contact-form {
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 3rem;
}

.form-group {
	margin-bottom: 2rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	background: linear-gradient(135deg, #faf5ef 0%, #FFFFFF 100%);
	border: 1px solid rgba(242, 225, 206, 0.5);
	border-radius: 8px;
	color: var(--text-dark);
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.submit-btn {
	width: 100%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
	padding: 1.2rem;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

/* FOOTER */
footer {
	background: linear-gradient(135deg, #1f2937, #111827);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 4rem 4rem 2rem;
	color: white;
}

.footer-content {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 4rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	color: white;
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	padding: 0.5rem 0;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: var(--accent);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.social-link {
	width: 50px;
	height: 50px;
	min-width: 50px;
	min-height: 50px;
	max-width: 50px;
	max-height: 50px;
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: all 0.3s;
	text-decoration: none;
	color: white;
	font-weight: bold;
	flex-shrink: 0;
	overflow: hidden;
}

.social-link svg {
	width: 24px !important;
	height: 24px !important;
	flex-shrink: 0;
	display: block;
	min-width: 24px;
	min-height: 24px;
	max-width: 24px;
	max-height: 24px;
	aspect-ratio: 1 / 1;
}

.social-link.facebook {
	background: #1877F2;
}

.social-link.instagram {
	background: linear-gradient(135deg, #E1306C, #C13584);
	width: 50px !important;
	height: 50px !important;
	min-width: 50px;
	min-height: 50px;
	max-width: 50px;
	max-height: 50px;
}

.social-link.instagram svg {
	width: 24px !important;
	height: 24px !important;
	min-width: 24px;
	min-height: 24px;
	max-width: 24px;
	max-height: 24px;
}

.social-link.whatsapp {
	background: #25D366;
}

.social-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
	max-width: 1600px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

/* SCROLL TO TOP */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 999;
	box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1400px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1570px) and (min-width: 1201px) {
	.device-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.2rem;
	}
	
	.device-item {
		padding: 1.3rem;
	}
	
	.hero-card {
		padding: 2.5rem;
	}
}

@media (max-width: 1200px) {
	.hero-container,
	.zone-container,
	.contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.hero-content h1 {
		font-size: 3.5rem;
	}
	
	.hero-image {
		margin-bottom: 2rem;
	}
	
	nav {
		padding: 1rem 2rem;
	}
	
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.hero-content h1 {
		font-size: 3rem;
	}
	
	.hero-content p {
		font-size: 1.1rem;
	}
	
	.hero-image {
		margin-bottom: 2rem;
	}
	
	.section-title {
		font-size: 3rem;
	}
	
	.services,
	.features,
	.zone,
	.testimonials,
	.contact {
		padding: 5rem 3rem;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}
	
	.nav-menu {
		position: fixed;
		top: 83px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 83px);
		flex-direction: column;
		background: white;
		padding: 2rem 0;
		gap: 0;
		transition: left 0.4s ease;
		border-top: 1px solid rgba(0, 0, 0, 0.1);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		overflow-y: auto;
	}
	
	.nav-menu.active {
		left: 0;
	}
	
	.nav-menu li {
		width: 100%;
		text-align: center;
		padding: 0;
	}
	
	.nav-menu a {
		display: block;
		padding: 1.2rem 2rem;
		width: 100%;
		font-size: 1.1rem;
	}
	
	.nav-menu .btn-primary {
		margin: 1rem 2rem;
		width: calc(100% - 4rem);
		justify-content: center;
	}
	
	.logo-img {
		height: 50px;
	}
	
	nav {
		padding: 0.8rem 1.5rem;
	}
	
	.hero {
		padding-top: 2rem;
		min-height: auto;
	}
	
	.hero-container {
		padding: 0 1.5rem;
		gap: 2rem;
	}
	
	.hero-content h1 {
		font-size: 2.5rem;
		margin-bottom: 1.5rem;
		letter-spacing: -1px;
	}
	
	.hero-image {
		margin-bottom: 2rem;
	}
	
	.hero-content p {
		font-size: 1rem;
		margin-bottom: 2rem;
		line-height: 1.6;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 1rem;
	}
	
	.btn-primary,
	.btn-secondary,
	.btn-whatsapp {
		width: 100%;
		text-align: center;
		justify-content: center;
		padding: 1rem 1.5rem;
		font-size: 0.9rem;
	}
	
	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 2rem;
	}
	
	.stat-box {
		padding: 1.5rem;
	}
	
	.stat-number {
		font-size: 2.5rem;
	}
	
	.stat-label {
		font-size: 0.85rem;
	}
	
	.hero-card {
		padding: 2rem 1.5rem;
	}
	
	.device-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.8rem;
	}
	
	.device-item {
		padding: 1rem 0.5rem;
	}
	
	.device-icon {
		font-size: 1.8rem;
		margin-bottom: 0.5rem;
	}
	
	.device-name {
		font-size: 0.8rem;
	}
	
	.section-header {
		margin-bottom: 3rem;
	}
	
	.section-title {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
	
	.section-subtitle {
		font-size: 1rem;
		line-height: 1.6;
	}
	
	.services,
	.features,
	.zone,
	.testimonials,
	.contact {
		padding: 4rem 1.5rem;
	}
	
	.services-grid,
	.features-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.service-card {
		padding: 2rem 1.5rem;
	}
	
	.service-card h3 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	
	.service-card:last-child h3 {
		font-size: 1.8rem;
	}
	
	.service-card li {
		padding: 0.7rem 0;
		font-size: 0.95rem;
		padding-left: 0;
	}
	
	.service-card li::before {
		display: none;
	}
	
	.service-card:last-child {
		grid-column: 1 / -1;
	}
	
	.service-card:last-child ul {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
	
	.feature-card {
		padding: 2rem 1.5rem;
	}
	
	.feature-icon {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}
	
	.feature-card h3 {
		font-size: 1.3rem;
	}
	
	.feature-card p {
		font-size: 0.95rem;
	}
	
	.zone-info h3 {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}
	
	.zone-info p {
		font-size: 1rem;
	}
	
	.zone-info h4 {
		font-size: 1.1rem !important;
	}
	
	.cities {
		gap: 0.6rem;
	}
	
	.city-badge {
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}
	
	.map-container {
		padding: 1rem;
	}
	
	.map-container iframe {
		height: 300px;
	}
	
	.testimonial-card {
		padding: 2rem 1.5rem;
	}
	
	.stars {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	
	.testimonial-text {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}
	
	.contact-container {
		gap: 2rem;
	}
	
	.info-box {
		padding: 1.5rem;
		gap: 1rem;
	}
	
	.info-icon {
		width: 50px;
		height: 50px;
		font-size: 1.5rem;
	}
	
	.info-box h4 {
		font-size: 1.1rem;
	}
	
	.info-box p,
	.info-box a {
		font-size: 0.9rem;
	}
	
	.contact-form {
		padding: 2rem 1.5rem;
	}
	
	.form-group {
		margin-bottom: 1.5rem;
	}
	
	.form-group label {
		font-size: 0.9rem;
		margin-bottom: 0.5rem;
	}
	
	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 0.9rem 1.2rem;
		font-size: 0.95rem;
	}
	
	.submit-btn {
		padding: 1rem;
		font-size: 1rem;
	}
	
	footer {
		padding: 3rem 1.5rem 2rem;
	}
	
	.footer-content {
		gap: 2.5rem;
		grid-template-columns: 1fr;
	}
	
	.footer-section h3 {
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}
	
	.footer-section p,
	.footer-section a {
		font-size: 0.9rem;
	}
	
	.social-link {
		width: 45px !important;
		height: 45px !important;
		min-width: 45px;
		min-height: 45px;
		max-width: 45px;
		max-height: 45px;
		aspect-ratio: 1 / 1;
		font-size: 1.3rem;
	}
	
	.social-link.instagram {
		width: 45px !important;
		height: 45px !important;
		min-width: 45px !important;
		min-height: 45px !important;
		max-width: 45px !important;
		max-height: 45px !important;
		aspect-ratio: 1 / 1;
	}
	
	.social-link svg {
		width: 22px !important;
		height: 22px !important;
		min-width: 22px;
		min-height: 22px;
		max-width: 22px;
		max-height: 22px;
		aspect-ratio: 1 / 1;
	}
	
	.social-link.instagram svg {
		width: 22px !important;
		height: 22px !important;
		min-width: 22px !important;
		min-height: 22px !important;
		max-width: 22px !important;
		max-height: 22px !important;
		aspect-ratio: 1 / 1;
	}
	
	.footer-bottom {
		font-size: 0.85rem;
	}
	
	.scroll-top {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2.2rem;
	}
	
	.hero-content p {
		font-size: 0.95rem;
	}
	
	.hero-card {
		padding: 1.5rem 1rem;
	}
	
	.device-grid {
		gap: 0.6rem;
	}
	
	.device-item {
		padding: 0.8rem 0.4rem;
	}
	
	.device-icon {
		font-size: 1.5rem;
	}
	
	.device-name {
		font-size: 0.75rem;
	}
	
	.section-title {
		font-size: 1.75rem;
	}
	
	.section-subtitle {
		font-size: 0.95rem;
	}
	
	.service-card,
	.feature-card,
	.testimonial-card {
		padding: 1.5rem 1rem;
	}
	
	.service-card h3 {
		font-size: 1.3rem;
	}
	
	.service-card:last-child h3 {
		font-size: 1.5rem;
	}
	
	.feature-card h3 {
		font-size: 1.2rem;
	}
	
	.zone-info h3 {
		font-size: 1.5rem;
	}
	
	.city-badge {
		padding: 0.5rem 0.8rem;
		font-size: 0.8rem;
	}
	
	.contact-form {
		padding: 1.5rem 1rem;
	}
	
	.btn-primary svg,
	.btn-whatsapp svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 360px) {
	.hero-content h1 {
		font-size: 1.5rem;
	}
	
	.section-title {
		font-size: 1.5rem;
	}
	
	.device-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.stat-number {
		font-size: 2rem;
	}
}

.instagram-section {
	background: white;
	padding: 8rem 4rem;
}

.instagram-banner {
	max-width: 450px;
	margin: 0 auto 3rem;
	background: linear-gradient(135deg, #FFFFFF 0%, #faf5ef 100%);
	border: 1px solid rgba(242, 225, 206, 0.5);
	border-radius: 16px;
	padding: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s;
}

.instagram-banner:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.instagram-profile {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.instagram-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid var(--primary);
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.instagram-info {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.instagram-username {
	font-size: 1rem;
	font-weight: 800;
	color: var(--primary);
	margin: 0;
	line-height: 1.2;
}

.instagram-handle {
	font-size: 0.85rem;
	color: var(--text-light);
	font-weight: 500;
	margin: 0;
}

.instagram-follow-btn {
	background: linear-gradient(135deg, #E1306C, #C13584);
	color: white;
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s;
	box-shadow: 0 2px 10px rgba(225, 48, 108, 0.25);
	white-space: nowrap;
}

.instagram-follow-btn svg {
	width: 16px;
	height: 16px;
	margin-right: 6px;
}

.instagram-follow-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(225, 48, 108, 0.35);
	background: linear-gradient(135deg, #C13584, #E1306C);
}

@media (max-width: 768px) {
	.instagram-section {
		padding: 4rem 1.5rem;
	}
	
	.instagram-banner {
		flex-direction: column;
		gap: 1.2rem;
		padding: 1.5rem;
		text-align: center;
		max-width: 350px;
	}
	
	.instagram-profile {
		flex-direction: column;
		gap: 0.8rem;
	}
	
	.instagram-avatar {
		width: 60px;
		height: 60px;
	}
	
	.instagram-username {
		font-size: 1.1rem;
	}
	
	.instagram-handle {
		font-size: 0.9rem;
	}
	
	.instagram-follow-btn {
		width: 100%;
		justify-content: center;
		padding: 0.7rem 1rem;
	}
}

@media (max-width: 480px) {
	.instagram-avatar {
		width: 55px;
		height: 55px;
	}
	
	.instagram-username {
		font-size: 1rem;
	}
	
	.instagram-follow-btn {
		font-size: 0.85rem;
	}
}

/* Styles pour la section réseaux sociaux dans contact */
.social-box {
	position: relative;
	overflow: visible;
}

.social-icon-box {
	background: linear-gradient(135deg, #E1306C, #C13584) !important;
}

.social-links-contact {
	display: flex;
	gap: 0.8rem;
	margin-top: 0.5rem;
}

.social-link-small {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	text-decoration: none;
	color: white;
	flex-shrink: 0;
}

.social-link-small svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.social-link-small.facebook {
	background: #1877F2;
}

.social-link-small.instagram {
	background: linear-gradient(135deg, #E1306C, #C13584);
}

.social-link-small.whatsapp {
	background: #25D366;
}

.social-link-small:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
	.social-links-contact {
		gap: 0.6rem;
		justify-content: flex-start;
	}
	
	.social-link-small {
		width: 42px;
		height: 42px;
	}
	
	.social-link-small svg {
		width: 20px;
		height: 20px;
	}
}