.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--color-primary); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--color-primary); box-shadow: 0 10px 24px rgba(31, 107, 69, .2); }
.button--primary:hover { background: var(--color-primary-dark); box-shadow: 0 14px 30px rgba(31, 107, 69, .28); }
.button--outline { color: var(--color-primary); background: transparent; border-color: rgba(31, 107, 69, .3); }
.button--outline:hover { background: var(--color-primary-soft); }
.button--light { color: var(--color-primary-dark); background: #fff; box-shadow: var(--shadow-sm); }
.button--dark { color: #fff; background: var(--color-text); }
.button--full { width: 100%; border: 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__icon { display: grid; width: 46px; height: 46px; place-items: center; color: #fff; background: var(--color-primary); border-radius: 14px; transform: rotate(-4deg); }
.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { font-size: 1.12rem; font-weight: 900; }
.brand small { margin-top: 4px; color: var(--color-muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.brand--light strong { color: #fff; }.brand--light small { color: #aabcb2; }
.stars { color: var(--color-secondary); letter-spacing: 2px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--color-primary); font-weight: 800; }
.demo-bar { position: relative; z-index: 1100; color: #fff; background: var(--color-primary-dark); }
.demo-bar__content { display: flex; min-height: 40px; align-items: center; justify-content: center; gap: 24px; }
.demo-bar p { margin: 0; font-size: .78rem; font-weight: 700; text-align: center; }
.demo-bar p i { margin-right: 6px; color: var(--color-secondary); }
.demo-bar__close { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; color: #fff; background: transparent; border: 0; border-radius: 50%; cursor: pointer; }
.demo-bar__close:hover { background: rgba(255,255,255,.12); }
.header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); background: rgba(247, 245, 239, .94); backdrop-filter: blur(14px); transition: height var(--transition), box-shadow var(--transition), background var(--transition); }
.header.is-scrolled { height: 72px; background: rgba(255, 255, 255, .96); box-shadow: 0 7px 28px rgba(22, 55, 37, .1); }
.header__inner { display: flex; height: 100%; align-items: center; gap: 25px; }
.nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2vw, 27px); margin-left: auto; }
.nav a { position: relative; padding: 10px 0; color: #47524c; font-size: .91rem; font-weight: 700; }
.nav a::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--color-primary); content: ""; transform: scaleX(0); transition: transform var(--transition); }
.nav a:hover, .nav a.is-active { color: var(--color-primary); }.nav a.is-active::after { transform: scaleX(1); }
.header__cta { min-height: 46px; padding: 10px 15px; font-size: .82rem; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; background: transparent; border: 1px solid var(--color-border); border-radius: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--color-text); transition: var(--transition); }
body::after { position: fixed; inset: 0; z-index: 950; background: rgba(10, 28, 19, .36); content: ""; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
body.menu-open::after { opacity: 1; pointer-events: auto; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; height: 58px; align-items: center; gap: 10px; padding: 0 20px; color: #fff; background: var(--color-whatsapp); border-radius: 999px; box-shadow: 0 12px 32px rgba(17, 129, 57, .3); font-weight: 800; animation: float-pulse 3s infinite; }
.whatsapp-float i { font-size: 1.45rem; }
.back-to-top { position: fixed; right: 29px; bottom: 96px; z-index: 899; display: grid; width: 46px; height: 46px; place-items: center; color: #fff; background: var(--color-text); border: 0; border-radius: 50%; box-shadow: var(--shadow-sm); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: var(--transition); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
@keyframes float-pulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
