body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7faf9;
  margin: 0;
  color: #1a2226;
}

header {
  background: linear-gradient(90deg, #2ecc40 80%, #009688 100%);
  color: #fff;
  margin: 0 0 2.5rem 0;
  box-shadow: 0 8px 32px rgba(34, 60, 80, 0.10);
  min-height: 80px;
}
.header-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  padding: 0 2em;
  justify-content: flex-start;
  gap: 2em;
}
.logo-link { display: flex; align-items: center; }
.logo-img { width: 44px; height: 44px; border-radius: 50%; background: #fff; }
.logo-text { 
  font-size: 1.7rem;
  font-weight: 800;
  margin-left: 0.55em;
  letter-spacing: 1.2px;
  display: inline-block;
}
.logo-text .resaltado { color: #ffd600; }
.logo-text .verde { color: #fff; }

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
nav .nav-list {
  display: flex;
  gap: 1.5em;
  list-style: none;
  background: none;
  margin: 0;
  padding: 0;
}
nav .nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.07em;
  padding: 0.5em 1.5em;
  border-radius: 99em;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
nav .nav-list a.active, nav .nav-list a:hover {
  background: #ffd600;
  color: #2ecc40;
  font-weight: bold;
}
.nav-toggle { display: none; }

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.8em 2.5em 1.8em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.block {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(44, 204, 64, 0.10), 0 2px 8px rgba(44,204,64,0.09);
  width: 100%;
  margin: 2em 0;
  padding: 3em 3.5em 2.5em 3.5em;
  opacity: 0;
  transform: translateY(44px) scale(0.98);
  transition: opacity 0.75s cubic-bezier(.45,.05,.55,1), transform 0.75s cubic-bezier(.45,.05,.55,1);
  box-sizing: border-box;
  position: relative;
  font-size: 1.16em;
}
.block.visible {
  opacity: 1;
  transform: none;
}

.block-header {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1.3em;
}
.block-title.green { color: #2ecc40; }
.block-title.blue { color: #3683f7; }
.block-icon { color: #2ecc40; font-size: 2em;}
.block-icon-lg { font-size: 2.4em; }
.block-secondary { color: #009688; font-weight: 600; margin: 1.2em 0 1.5em 0; font-size: 1.09em;}

.quick-products {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  justify-content: center;
  margin: 1.1em 0 0.2em;
}
.quick-products .prod {
  background: #eaffec;
  border-radius: 1.6em;
  font-weight: 600;
  color: #2ecc40;
  font-size: 1.08em;
  padding: 0.55em 1.5em;
  box-shadow: 0 2px 8px rgba(44,204,64,0.08);
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.3em;
  transition: background 0.2s;
}

.hero-buttons {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  gap: 1.3em;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 1em 2.5em;
  background: linear-gradient(90deg, #2ecc40 80%, #009688 100%);
  color: #fff;
  border: none;
  border-radius: 99em;
  font-size: 1.08em;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: background .22s, color .22s, box-shadow .22s, transform .22s;
  box-shadow: 0 2px 8px rgba(44,204,64,0.10);
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #009688 80%, #2ecc40 100%);
  color: #ffd600;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #ffd600;
  color: #222;
}
.btn-secondary:hover {
  background: #fff200;
  color: #009688;
}

.icon-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.09em;
}
.icon-list li {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: #2ecc40;
}
.icon-list li i {
  color: #2ecc40;
  font-size: 1.16em;
  min-width: 22px;
}
.icon-list li:last-child { margin-bottom: 0; }

.block-motivation {
  background: linear-gradient(95deg, #e8f5e9 90%, #fff 100%);
  text-align: center;
  border-left: 7px solid #2ecc40;
  box-shadow: 0 2px 14px rgba(46,204,64, 0.11);
  margin-bottom: 2em;
  padding: 2em 1.5em 1.7em 1.5em;
}
.block-motivation blockquote {
  font-size: 1.25em;
  font-style: italic;
  color: #3e5e4f;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.team-list {
  display: flex;
  gap: 1.3em;
  margin: 1.1em 0 0.8em 0;
  flex-wrap: wrap;
  justify-content: center;
}
.team-card {
  background: #eaffec;
  color: #009688;
  border-radius: 1.1em;
  padding: 1em 2em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(46,204,64, 0.09);
  font-size: 1.12em;
  min-width: 145px;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.8s;
  opacity: 0;
  transform: translateY(35px) scale(0.97);
}
.team-card.visible {
  opacity: 1;
  transform: none;
}
.team-card i { font-size: 1.6em; margin-bottom: 0.2em; color: #3683f7;}
.team-card:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(54,131,247,0.10);
}
.team-contact { margin-top: 1.1em; color: #009688; }
.team-contact a {
  color: #3683f7;
  text-decoration: underline dashed;
  transition: color .2s;
}
.team-contact a:hover { color: #2ecc40; }

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.4em;
  box-shadow: 0 2px 8px rgba(44,204,64,0.10);
  cursor: pointer;
  z-index: 100;
  transition: background 0.23s, transform .3s, color .23s;
}
#scrollTopBtn.visible { display: block; }
#scrollTopBtn:hover {
  background: #2ecc40;
  color: #ffd600;
  transform: scale(1.12) rotate(-8deg);
}
.theme-toggle-btn {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #1a2226;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.3em;
  box-shadow: 0 2px 8px rgba(44,204,64,0.10);
  cursor: pointer;
  z-index: 120;
  transition: background 0.23s, color 0.23s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle-btn:hover {
  background: #ffd600;
  color: #1a2226;
}
.welcome-msg {
  position: fixed;
  top: 28px;
  right: 24px;
  background: linear-gradient(90deg, #2ecc40 80%, #009688 100%);
  color: white;
  padding: 0.9em 2.5em 0.9em 1.7em;
  border-radius: 1.5em;
  font-size: 1.19em;
  z-index: 300;
  box-shadow: 0 2px 8px rgba(44,204,64,0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-40px);
  transition: opacity 0.8s, transform 0.8s;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.9em;
}
.welcome-msg.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

footer {
  background: #1a2226;
  color: #f3f6f7;
  text-align: center;
  padding: 1.5em 0;
  font-size: 1.11rem;
  border-radius: 32px 32px 0 0;
  letter-spacing: 0.08em;
  margin-top: 2.7em;
  box-shadow: 0 2px 8px rgba(44,204,64,0.10);
}

@media (max-width: 1200px) {
  main { max-width: 99vw; }
}
@media (max-width: 950px) {
  .block { padding: 2.3em 1.2em 1.7em 1.2em; }
}
@media (max-width: 700px) {
  .header-container { flex-direction: column; gap: 0.7em; align-items: flex-start; height: auto;}
  .logo-img { width: 38px; height: 38px;}
  .logo-text { font-size: 1.2rem;}
  .nav-toggle { display: block; position: absolute; top: 1.2em; right: 1.1em;}
  nav { width: 100%;}
  .nav-list {
    display: none;
    flex-direction: column;
    background: linear-gradient(90deg, #2ecc40 80%, #009688 100%);
    position: absolute;
    top: 3.4em;
    right: 1.1em;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44,204,64,0.10);
    min-width: 140px;
    z-index: 99;
  }
  .nav-list.open { display: flex;}
  .block { margin: 1.2em 0; }
  .welcome-msg { top: 10px; right: 4px; padding: 0.7em 1em; font-size: 0.92em;}
  .theme-toggle-btn { left: 8px; bottom: 8px; width: 38px; height: 38px; font-size: 1em;}
  .quick-products .prod { font-size: .98em; padding: 0.29em 0.8em;}
  .team-card { min-width: 90px; font-size: .98em;}
}
@media (max-width: 430px) {
  .logo-img { width: 28px; height: 28px;}
  .logo-text { font-size: 1rem;}
  .block-title, .block-header { font-size: .98em;}
  .btn { font-size: 0.93em;}
  .welcome-msg { font-size: 0.8em; padding: 0.5em 0.7em;}
}