:root {
	--primary-pink: #e91e78;
	--secondary-pink: #f5a4cb;
	--light-pink: #fbe4ee;
	--yellow: #ffd54f;
	--light-yellow: #fff8e1;
	--dark-red: #9e2622;
	--text-dark: #333333;
	--text-light: #666666;
	--white: #ffffff;
	--light-gray: #f5f5f5;
	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Open Sans', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-secondary);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: var(--primary-pink);
	transition: all 0.3s ease;
}

a:hover {
	color: var(--dark-red);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	background: linear-gradient(to right, var(--light-yellow), var(--light-pink));
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 60px;
	margin-right: 15px;
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-text h1 {
	font-size: 24px;
	color: var(--primary-pink);
	margin-bottom: 0;
}

.logo-text span {
	font-size: 14px;
	color: var(--text-light);
}

/* Navigation */
nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 30px;
}

nav ul li a {
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 16px;
	color: var(--text-dark);
	padding: 10px 0;
	position: relative;
}

nav ul li a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--primary-pink);
	left: 0;
	bottom: 0;
	transition: width 0.3s ease;
}

nav ul li a:hover:after {
	width: 100%;
}

nav ul li a.active {
	color: var(--primary-pink);
}

nav ul li a.active:after {
	width: 100%;
}

.menu-toggle {
	display: none;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--light-yellow), var(--light-pink));
	padding: 100px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero:before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(var(--secondary-pink), transparent);
	border-radius: 50%;
	top: -150px;
	left: -150px;
	opacity: 0.5;
}

.hero:after {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(var(--yellow), transparent);
	border-radius: 50%;
	bottom: -150px;
	right: -150px;
	opacity: 0.5;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 48px;
	color: var(--primary-pink);
	margin-bottom: 20px;
}

.hero p {
	font-size: 20px;
	color: var(--text-dark);
	margin-bottom: 40px;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	font-family: var(--font-primary);
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.btn-primary {
	background: var(--primary-pink);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--dark-red);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(233, 30, 120, 0.2);
}

.btn-outline {
	background: transparent;
	color: var(--primary-pink);
	border: 2px solid var(--primary-pink);
	margin-left: 15px;
}

.btn-outline:hover {
	background: var(--primary-pink);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(233, 30, 120, 0.2);
}

/* Features Section */
.features {
	padding: 80px 0;
	background-color: var(--white);
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 36px;
	color: var(--primary-pink);
	display: inline-block;
	position: relative;
}

.section-title h2:after {
	content: '';
	position: absolute;
	width: 60px;
	height: 3px;
	background: var(--primary-pink);
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background: var(--white);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--light-yellow), var(--light-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-icon i {
	font-size: 30px;
	color: var(--primary-pink);
}

.feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--text-dark);
}

/* About Section */
.about {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--light-yellow), var(--light-pink));
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border: 3px solid var(--primary-pink);
	border-radius: 10px;
	top: 20px;
	left: 20px;
	z-index: -1;
}

.about-text h2 {
	font-size: 36px;
	color: var(--primary-pink);
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 20px;
	color: var(--text-dark);
}

/* Products Section */
.products {
	padding: 80px 0;
	background-color: var(--white);
}

.product-categories {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.category-btn {
	padding: 10px 20px;
	margin: 0 10px;
	background: var(--light-gray);
	border: none;
	border-radius: 30px;
	font-family: var(--font-primary);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.category-btn.active, .category-btn:hover {
	background: var(--primary-pink);
	color: var(--white);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

.product-card {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
	height: 200px;
	background-color: var(--light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-image img {
	max-width: 80%;
	max-height: 80%;
}

.product-info {
	padding: 20px;
}

.product-info h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.product-price {
	color: var(--primary-pink);
	font-size: 20px;
	font-weight: 600;
}

.product-actions {
	margin-top: 15px;
	display: flex;
}

.product-actions .btn {
	padding: 8px 15px;
	font-size: 14px;
}

/* Services Section */
.services {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--light-yellow), var(--light-pink));
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--white);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	margin-bottom: 20px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon i {
	font-size: 40px;
	color: var(--primary-pink);
}

.service-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

/* Locations Section */
.locations {
	padding: 80px 0;
	background-color: var(--white);
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.location-card {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

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

.location-map {
	height: 200px;
	background-color: var(--light-gray);
}

.location-info {
	padding: 20px;
}

.location-info h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.location-info p {
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.location-info p i {
	color: var(--primary-pink);
	margin-right: 10px;
	font-size: 16px;
}

/* Testimonials Section */
.testimonials {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--light-yellow), var(--light-pink));
	text-align: center;
}

.testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.testimonial-card {
	background: var(--white);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin: 20px;
}

.testimonial-content {
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	margin-bottom: 5px;
}

.author-info span {
	color: var(--text-light);
	font-size: 14px;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background-color: var(--white);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-info h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--primary-pink);
}

.contact-item {
	display: flex;
	margin-bottom: 20px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--light-yellow), var(--light-pink));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.contact-icon i {
	color: var(--primary-pink);
	font-size: 20px;
}

.contact-text h4 {
	margin-bottom: 5px;
	color: var(--text-dark);
}

.contact-text p, .contact-text a {
	color: var(--text-light);
}

.contact-form {
	background: var(--white);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--text-dark);
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	font-family: var(--font-secondary);
	border: 1px solid #ddd;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: var(--primary-pink);
	outline: none;
	box-shadow: 0 0 0 3px rgba(233, 30, 120, 0.1);
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
footer {
	background: var(--text-dark);
	color: var(--white);
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.footer-logo img {
	height: 50px;
	margin-right: 15px;
}

.footer-logo h3 {
	font-size: 20px;
	color: var(--white);
	margin-bottom: 0;
}

.footer-about p {
	color: #bbb;
	margin-bottom: 20px;
}

.social-links {
	display: flex;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	color: var(--white);
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--primary-pink);
	transform: translateY(-5px);
}

.footer-links h3, .footer-newsletter h3 {
	font-size: 20px;
	color: var(--white);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
}

.footer-links ul li {
	margin-bottom: 10px;
}

.footer-links ul li a {
	color: #bbb;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 15px;
}

.footer-links ul li a:before {
	content: '›';
	position: absolute;
	left: 0;
	color: var(--primary-pink);
}

.footer-links ul li a:hover {
	color: var(--white);
	padding-left: 20px;
}

.footer-newsletter p {
	color: #bbb;
	margin-bottom: 20px;
}

.newsletter-form {
	display: flex;
}

.newsletter-form input {
	flex: 1;
	padding: 12px 15px;
	border: none;
	border-radius: 50px 0 0 50px;
	font-family: var(--font-secondary);
}

.newsletter-form button {
	background: var(--primary-pink);
	color: var(--white);
	border: none;
	padding: 12px 20px;
	border-radius: 0 50px 50px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-form button:hover {
	background: var(--dark-red);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
	color: #bbb;
	font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.about-content,
	.contact-content {
		grid-template-columns: 1fr;
	}

	.about-image {
		margin-bottom: 30px;
	}

	.about-image:before {
		display: none;
	}
}


@media (max-width: 576px) {
	.section-title h2 {
		font-size: 28px;
	}

	.hero {
		padding: 60px 0;
	}

	.hero h1 {
		font-size: 28px;
	}

	.product-categories {
		flex-wrap: wrap;
	}

	.category-btn {
		margin-bottom: 10px;
	}

	.features,
	.about,
	.products,
	.services,
	.locations,
	.testimonials,
	.contact {
		padding: 60px 0;
	}
}

/* Correcciones para el menú toggle y los íconos */
.menu-toggle i, .close-menu i {
    display: inline-block;
    font-size: 24px;
    color: var(--primary-pink);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001; /* Asegurar que esté por encima de otros elementos */
}

/* Asegurar que el menú móvil funcione correctamente */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        z-index: 999;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: all 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 10px 0;
    }
}