* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #f0f7f4;
  color: #1a2e25;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #d4e8df;
  padding: 15px 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.glico {
  color: #1a9e7a;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: 32px;
}

.life {
  color: #3a7bd5;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: 32px;
}

.menu {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

.menu li a {
  color: #4a6e5e;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  display: block;
  transition: background 0.2s, color 0.2s;
}

.menu li a:hover {
  background: #e8f5f0;
  color: #1a9e7a;
}

.menu .login-btn {
  background: #1a9e7a;
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.2s;
}

.menu .login-btn:hover {
  background: #158a6a;
  color: #ffffff;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  min-height: 80vh;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7f4 0%, #e3f2ec 60%, #dceef9 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,158,122,0.1) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  pointer-events: none;
}

.hero-glow::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,123,213,0.08) 0%, transparent 70%);
  top: 250px;
  right: -150px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a9e7a;
  background: rgba(26,158,122,0.1);
  border: 1px solid rgba(26,158,122,0.3);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.highlight {
  background: linear-gradient(90deg, #1a9e7a, #3a7bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.info h1 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #1a2e25;
}

.info p {
  color: #4a6e5e;
  line-height: 1.7;
  font-size: 16px;
}

.buttons {
  display: flex;
  gap: 15px;
  padding-top: 24px;
  flex-wrap: wrap;
}

.primary {
  padding: 14px 28px;
  width: auto;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  background: #1a9e7a;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.primary:hover {
  background: #158a6a;
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 14px 28px;
  width: auto;
  font-size: 15px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #3a7bd5;
  color: #3a7bd5;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-secondary:hover {
  background: rgba(58,123,213,0.08);
}

/* ===== MASCOTE HERO ===== */
.hero-mascote {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascote-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(220, 38, 38, 0.25));
  animation: gota-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both,
             gota-float 4s ease-in-out 0.9s infinite;
}

.sparkle {
  position: absolute;
  font-style: normal;
  animation: sparkle 2.4s ease-in-out infinite;
  pointer-events: none;
  font-size: 20px;
}

@keyframes gota-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}

@keyframes gota-pop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50%       { opacity: 1; transform: scale(1); }
}

/* ===== CARROSSEL ===== */
.gc-section {
  padding: 50px 0 70px;
  background: #f0f7f4;
}

.gc-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8aab9e;
  margin-bottom: 28px;
}

.gc-wrap {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.gc-window {
  flex: 1;
  overflow: hidden;
  min-width: 0; 
}

.gc-track {
  display: flex;
  gap: 18px;
  min-width: 0; 
  align-items: stretch; /* ADD: força os cards a terem mesma altura */
  transition: transform 0.52s cubic-bezier(0.77, 0, 0.18, 1);
}

.gc-card {
  width: calc((100% - 36px) / 3);
  min-width: calc((100% - 36px) / 3);
  flex-shrink: 0;
  padding: 26px 22px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d4e8df;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.gc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26,158,122,0.1);
}

.gc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gc-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a2e25;
  margin: 0;
}

.gc-card p {
  font-size: 13px;
  color: #6a8e80;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.gc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a9e7a;
  background: rgba(26,158,122,0.08);
  border: 1px solid rgba(26,158,122,0.2);
  border-radius: 100px;
  padding: 3px 11px;
  align-self: flex-start;
}

.gc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #d4e8df;
  background: #ffffff;
  color: #4a6e5e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 5;
}

.gc-nav:hover { background: #e8f5f0; border-color: #1a9e7a; }
.gc-nav:disabled { opacity: 0.25; cursor: default; }
.gc-prev { left: 8px; }
.gc-next { right: 8px; }

.gc-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
}

.gc-dot {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  border: none;
  padding: 0;
  background: #c2dbd3;
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.gc-dot.on {
  width: 22px;
  background: #1a9e7a;
}

/* ===== SOBRE ===== */
.sobre-section {
  padding: 80px 40px;
  background: #ffffff;
}

.sobre-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a2e25;
  margin: 14px 0 18px;
  line-height: 1.25;
}

.sobre-texto p {
  color: #4a6e5e;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.sobre-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sobre-card {
  background: #f8fdfb;
  border: 1px solid #d4e8df;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sobre-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,158,122,0.09);
}

.sobre-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sobre-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2e25;
  margin-bottom: 4px;
}

.sobre-card p {
  font-size: 13px;
  color: #6a8e80;
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTATO ===== */
.contato-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f0f7f4 0%, #e3f2ec 60%, #dceef9 100%);
}

.contato-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.contato-texto {
  flex: 1;
}

.contato-texto h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a2e25;
  margin: 14px 0 14px;
  line-height: 1.25;
}

.contato-texto p {
  color: #4a6e5e;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contato-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4a6e5e;
}

.contato-info-icon {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid #d4e8df;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contato-form {
  flex: 1;
  background: #ffffff;
  border: 1px solid #d4e8df;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(26,158,122,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-campo input,
.form-campo textarea {
  width: 100%;
  background: #f8fdfb;
  border: 1px solid #d4e8df;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #1a2e25;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  box-sizing: border-box;
  resize: vertical;
}

.form-campo input:focus,
.form-campo textarea:focus {
  border-color: #1a9e7a;
  background: #f0faf6;
}

.form-campo input::placeholder,
.form-campo textarea::placeholder { color: #8aab9e; }

.form-toast {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.form-toast-ok   { background: #f0faf6; border: 1px solid #1a9e7a; color: #1a2e25; }
.form-toast-erro { background: #fff5f5; border: 1px solid #dc2626; color: #dc2626; }

/* ===== FOOTER ===== */
.footer {
  background: #1a2e25;
  padding: 48px 40px 32px;
}

.footer-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo .glico { color: #1a9e7a; font-weight: bold; font-size: 24px; }
.footer-logo .life  { color: #3a7bd5; font-weight: bold; font-size: 24px; }
.footer-logo p { color: #8aab9e; font-size: 13px; margin-top: 6px; }

.footer-copy {
  color: #4a6e5e;
  font-size: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  width: 100%;
  text-align: center;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .gc-card { min-width: calc((100% - 18px) / 2); }
}

@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .glico, .life { font-size: 26px; }
  .menu { gap: 6px; }
  .menu li a { font-size: 14px; padding: 5px 10px; }
  .hero { padding: 30px 20px; min-height: auto; text-align: center; flex-direction: column; gap: 10px; }
  .info h1 { font-size: 30px; }
  .info p { font-size: 15px; }
  .info { display: flex; flex-direction: column; align-items: center; }
  .buttons { justify-content: center; }
  .primary, .btn-secondary { font-size: 15px; padding: 13px 22px; }
  .hero-mascote { width: 200px; height: 200px; order: -1; }
  .sobre-wrap, .contato-wrap { flex-direction: column; gap: 32px; }
  .sobre-section, .contato-section { padding: 56px 24px; }
  .sobre-texto h2, .contato-texto h2 { font-size: 26px; }
  .contato-form { padding: 24px 20px; }
  .footer { padding: 40px 24px 28px; }
}

@media (max-width: 480px) {
  .gc-wrap { padding: 0 44px; }
  .gc-card { min-width: 100%; width: 100%; }
}

@media (max-width: 400px) {
  .menu { gap: 2px; }
  .menu li a { font-size: 13px; padding: 5px 8px; }
  .menu .login-btn { padding: 5px 10px; }
}
.campo-senha-wrap { position: relative; }

.toggle-senha {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #8aab9e;
    padding: 0;
    display: flex;
    align-items: center;
}

.toggle-senha:hover { color: #1a9e7a; }