/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: #222;
	line-height: 1.6;
	background: #f9fafc;
}

/* Variables */
:root {
	--green: #4CAF50;
	--blue: #2196F3;
	--orange: #FF9800;
	--light: #F5F5F5;
	--dark: #111;
	--shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

/* Base */
.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Topbar */
.topbar {
	background: linear-gradient(90deg, var(--green), var(--blue));
	padding: 4px 0;
	text-align: center;
}

.topbar .badge {
	display: inline-block;
	background: rgba(255, 255, 255, .3);
	color: #fff;
	padding: 4px 10px;
	border-radius: 20px;
	margin: 0 4px;
	font-size: .85rem;
}

/* Header */
header {
	background: #fff;
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.brand__logo {
	height: 60px;
}

.brand__word {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--blue);
}

/* Menu */
.menu {
	display: flex;
	gap: 20px;
}

.menu a {
	text-decoration: none;
	color: #222;
	font-weight: 600;
	transition: color .3s;
}

.menu a:hover {
	color: var(--green);
}

.menu .cta {
	background: var(--green);
	color: #fff !important;
	padding: 6px 14px;
	border-radius: 6px;
}

/* Hamburger */
.hamb {
	display: none;
	font-size: 1.8rem;
	background: none;
	border: none;
	cursor: pointer;
}

/* Mobile menu */
@media (max-width: 768px) {
	.menu {
		display: none;
		position: fixed;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		border-radius: 0 0 12px 12px;
		box-shadow: var(--shadow);
		flex-direction: column;
		padding: 14px;
		z-index: 1000;
	}

	.menu a {
		font-size: 1.1rem;
		padding: 12px;
		border-bottom: 1px solid #eee;
	}

	.menu a:last-child {
		border-bottom: none;
	}

	.menu.menu--open {
		display: flex;
	}

	.hamb {
		display: block;
	}
}

/* Hero */
.hero {
	background: #eaf6ff;
	padding: 60px 20px;
}

.hero__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.hero__content {
	flex: 1;
}

.hero__image {
	flex-shrink: 0;
}

.hero h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 16px;
}

.hero p {
	margin-bottom: 20px;
}

.pill {
	display: inline-block;
	background: #dff0d8;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: .9rem;
	margin-bottom: 10px;
}

.actions {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 600;
}

.btn--primary {
	background: linear-gradient(90deg, var(--green), var(--blue));
	color: #fff;
}

.btn--ghost {
	border: 2px solid var(--green);
	color: var(--green);
}

.hero-detail {
	max-width: 400px;
	width: 100%;
	height: auto;
}

/* Hero Cards */
.hero__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.hero-card {
	background: #fff;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 10px;
}

/* Section */
.section-head {
	text-align: center;
	margin-bottom: 30px;
}

.section-head h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
}

.controls {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
}


/* Categories & Products */
.cats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.cat {
	position: relative;
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: var(--shadow);
	cursor: pointer;
	text-align: center;
	transition: transform .3s;
}

.cat:hover {
	transform: translateY(-4px);
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.card {
	background: #fff;
	padding: 16px;
	border-radius: 12px;
	box-shadow: var(--shadow);
	text-align: center;
}

.card img {
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.card b {
	display: block;
	margin-bottom: 6px;
}

.card .btn {
	margin-top: 8px;
	background: var(--green);
	color: #fff;
}

/* Banner */
.banner {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	background: #f0fdf4;
	padding: 30px;
	border-radius: 16px;
}

.banner__img {
	max-width: 300px;
	width: 100%;
	height: auto;
}

/* FAQ */
.faq details {
	background: #fff;
	margin-bottom: 10px;
	padding: 12px 16px;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

/* CTA */
.cta {
	background: var(--blue);
	color: #fff;
	text-align: center;
	padding: 40px 20px;
	margin-top: 40px;
}

.cta-img {
	max-width: 200px;
	width: 100%;
	height: auto;
	margin-top: 20px;
}


/* Footer */
footer {
	background: var(--dark);
	color: #fff;
	padding: 40px 20px 20px;
	margin-top: 40px;
}

.foot {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.foot h4 {
	margin-bottom: 8px;
	font-size: 1rem;
}

.foot a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 6px;
}

.foot__col {
	display: flex;
	flex-direction: column;
}

.copy {
	text-align: center;
	margin-top: 20px;
	font-size: .85rem;
	color: #ccc;
}

/* WhatsApp Floating */
.wa-fab {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--green);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	box-shadow: var(--shadow);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.wa-fab img {
	max-width: 100%;
	height: auto;
}


/* Ajustes para móviles */
@media (max-width: 768px) {
  .hero__wrap {
    flex-direction: column;
    text-align: center;
  }
  .hero__content {
    order: 2;
  }
  .hero__image {
    order: 1;
  }
  .wa-fab {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
}