* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; background: #061e20; color: #fff; }
.container { width: 90%; max-width: 1100px; margin: auto; }
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
header img { height: 55px; }
.btn { background: #ea700b; color: #fff; padding: 14px 26px; border-radius: 40px; text-decoration: none; font-weight: 700; display: inline-block; transition: .3s; }
.btn:hover { transform: scale(1.05); background: #f27a00; }
.hero { padding: 80px 0; text-align: center; }
.highlight { background: #007A78; color: #fff; padding: 8px 18px; border-radius: 30px; font-weight: 700; display: inline-block; margin-bottom: 20px; }
h1 { font-size: 36px; margin-bottom: 20px; }
p { color: #cbd5e1; margin-bottom: 20px; line-height: 1.6; }
.section { padding: 70px 0; }
.section h2 { text-align: center; margin-bottom: 40px; font-size: 28px; color: #fff; }
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.card { background: #0c2b2d; padding: 25px; border-radius: 16px; text-align: center; border-bottom: 4px solid #ea700b; }
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.value-box { background: #0c2b2d; padding: 20px; border-radius: 12px; border-left: 4px solid #007A78; }
footer { text-align: center; padding: 25px; background: #031011; color: #94a3b8; font-size: 14px; }
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #ea700b; color: #fff; padding: 16px 22px; border-radius: 50px; font-weight: 700; text-decoration: none; box-shadow: 0 0 15px rgba(234, 112, 11, .6); animation: pulse 1.5s infinite; z-index: 1000; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(234, 112, 11, .7); } 70% { box-shadow: 0 0 0 15px rgba(234, 112, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(234, 112, 11, 0); } }
@media(max-width: 768px) { h1 { font-size: 28px; } header { flex-direction: column; gap: 15px; } }