﻿:root {
  --bemvindo-overlay-bg: rgba(0, 0, 0, 0.55);
  --bemvindo-card-radius: 14px;
  --bemvindo-button-bg: #0b7b68;
  --bemvindo-button-color: #ffffff;
}

.bemvindo-overlay {
  position: fixed;
  inset: 0;
  background: var(--bemvindo-overlay-bg);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  overflow-y: auto;
}

.bemvindo-overlay.is-visible {
  display: flex;
}

.bemvindo-modal {
  max-width: 980px;
  width: 100%;
  border-radius: 18px;
  padding: 32px 36px 28px;
  color: #ffffff;
  background: transparent;
  position: relative;
  max-height: 90vh;
  overflow: auto;
}

.bemvindo-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.bemvindo-header h2 {
  margin: 0 0 4px;
  font-size: 28px;
}

.bemvindo-header p {
  margin: 0 0 24px;
  font-size: 18px;
}

.bemvindo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.bemvindo-logo {
  width: 300px;
  height: auto;
}

.bemvindo-title h2 {
  margin: 0 0 6px;
}

.bemvindo-title p {
  margin: 0;
}

.bemvindo-divider {
  height: 1px;
  background: #04af9b;
  margin-bottom: 26px;
}

.bemvindo-header p {font-size: 22px; font-weight: bold;}

.bemvindo-header {
  text-align: center;
}

.bemvindo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.bemvindo-card {
  border-radius: var(--bemvindo-card-radius);
  padding: 22px 20px 20px;
  color: #0d5b52;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.bemvindo-card-title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 8px;
}
.bemvindo-card-title h3{
  font-weight: bold;
}
.bemvindo-card-icon {
  width: 32px;
  height: 32px;
}

.bemvindo-card h3 {
  margin: 0;
  font-size: 20px;
}

.bemvindo-card p {
  margin: 0 0 18px;
  line-height: 1.4;
  font-size: 15px;
}

.bemvindo-button {
  display: inline-block;
  background: var(--bemvindo-button-bg);
  color: var(--bemvindo-button-color);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.bemvindo-card-footer {
  margin: 14px 0 0;
  font-size: 13px;
  color: #0b6a5a;
}

@media (max-width: 600px) {
   .bemvindo-title{
    width: 100%;
  }
  .bemvindo-title h3{
    text-align: center;
  }
  .bemvindo-modal {
    padding: 24px 20px;
    max-height: 92vh;
  }
  .bemvindo-overlay,
  .bemvindo-modal {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .bemvindo-overlay::-webkit-scrollbar,
  .bemvindo-modal::-webkit-scrollbar {
    display: none;
  }

  .bemvindo-header h2 {
    font-size: 22px;
  }
.bemvindo-header p{
  font-size: 16px;
}
  .bemvindo-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .bemvindo-logo {
      width: 195px;
      position: relative;
      left: -15px;
  }
}
