:root {
	--primary-color: #7d3c98; 
	--secondary-color: #25d366; 
	--text-dark: #333;
	--bg-light: #f8f9fa;
}
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text-dark);
	scroll-behavior: smooth;
}
.navbar-brand {
	font-weight: bold;
	color: var(--primary-color) !important;
	font-size: 1.5rem;
}
.hero-section {
	background-color: var(--bg-light);
	padding: 80px 0;
	border-bottom: 5px solid var(--primary-color);
}
.text-primary-custom {
	color: var(--primary-color) !important;
}
.btn-whatsapp {
	background-color: var(--secondary-color);
	color: white;
	font-weight: bold;
	border-radius: 30px;
	padding: 12px 30px;
	transition: all 0.3s;
}
.btn-whatsapp:hover {
	background-color: #128c7e;
	color: white;
	transform: scale(1.05);
}
.service-card {
	border: none;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
	height: 100%;
}
.service-card:hover {
	transform: translateY(-8px);
}
.service-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}
.section-padding {
	padding: 80px 0;
}
/* Estilos sección tienda */
.shop-banner {
	background: linear-gradient(45deg, #7d3c98, #9b59b6);
	color: white;
	border-radius: 20px;
	padding: 40px;
}
footer {
	background-color: var(--primary-color);
	color: white;
	padding: 50px 0 20px;
}
footer a {
	color: #f8f9fa;
	text-decoration: none;
}
.img-rounded {
	border-radius: 15px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.gallery-img {
	border-radius: 10px;
	margin-bottom: 20px;
	transition: transform 0.3s;
}
.gallery-img:hover {
	transform: scale(1.03);
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-float:hover {
    color: #FFF;
    background-color: #128c7e;
}