.hero{
  background-image: url('images/banner_oficial.png');
  background-size: cover;
  background-position: right top; /* Alinha pelo topo para garantir que a cabeça nunca seja cortada */
  min-height: 380px; /* Reduz a altura para diminuir o zoom e mostrar mais da imagem */
  display: flex;
  align-items: center;
  margin-top: 56px; /* Ajuste para navbar fixa */
  position: relative;
}

.hero-text{
  padding: 40px 40px 40px 0;
}

@media (max-width: 991px) {
  .hero {
    background-image: url('images/banner_oficial.png');
    background-position: center top; /* Alinha pelo topo no mobile também */
    min-height: 320px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-text {
    padding: 20px !important;
    text-align: center;
  }
}

.card{
border:none;
}

.card:hover{
transform:translateY(-5px);
transition:0.3s;
}

.bg-custom-nav {
  background-color: #F8F8F5 !important; 
}

/* Uniformização dos verdes do layout para a cor oficial da marca #026b7b */
.card-top-border {
  border-top: 4px solid #026b7b !important;
  /* Garante que o fundo não 'vaze' nos cantos arredondados */
  overflow: hidden; 
} 

.btn-success {
  background-color: #026b7b !important;
  border-color: #026b7b !important;
  color: #ffffff !important;
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
  background-color: #015461 !important;
  border-color: #015461 !important;
  color: #ffffff !important;
}

.text-success {
  color: #026b7b !important;
}

.bg-success {
  background-color: #026b7b !important;
}

.bg-success.bg-opacity-10 {
  background-color: rgba(2, 107, 123, 0.1) !important;
}

/* Tarifas Section */
.tarifas-title {
  color: #026b7b;
  font-weight: normal;
}

.table-tarifas {
  background-color: white;
  border-color: #dee2e6;
  margin-bottom: 0;
}

.table-tarifas thead th {
  background-color: #026b7b;
  color: white;
  border: 1px solid white;
  font-weight: 500;
  vertical-align: middle;
}

.table-tarifas tbody td {
  vertical-align: middle;
  padding: 12px 15px;
  color: #333;
}

/* Plan Cards Redesign */
.plan-card {
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.plan-header {
    background: #026b7b; /* Brand Teal */
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: capitalize;
}

.plan-body {
    padding: 30px 25px; /* Reduced side padding slightly */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f8fbfb 0%, #ffffff 100%);
}

.service-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.service-item {
    padding: 10px 0;
    border-bottom: 1px dotted #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align to top for better wrapping look */
    gap: 15px; /* Ensure space between name and badge */
    font-size: 0.95rem;
    color: #333;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    flex: 1; /* Take up available space and allow wrapping */
    line-height: 1.3;
}

.service-name::before {
    content: "›";
    color: #026b7b;
    margin-right: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-quota {
    font-size: 0.75rem;
    color: #fff;
    background: #026b7b; /* Changed to teal/green circle */
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.service-quota-unlimited {
    background: transparent;
    color: #026b7b;
    width: auto;
    font-size: 0.85rem;
    padding: 0 5px;
    font-style: italic;
}

.plan-footer {
    background: #026b7b;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
}

.plan-cta {
    background: rgba(2, 107, 123, 0.08);
    border-top: 1px solid rgba(2, 107, 123, 0.15);
    padding: 16px 20px;
    text-align: center;
}

.plan-cta .btn-contratar {
    display: inline-block;
    background: #026b7b;
    color: #fff;
    border: 2px solid #026b7b;
    border-radius: 50px;
    padding: 10px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
}

.plan-cta .btn-contratar:hover {
    background: #fff;
    color: #026b7b;
    transform: translateY(-2px);
}

.plan-footer span.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-left: 5px;
}

.lista-suplemento {
  list-style-type: none; /* Removing default disc, replacing with image or custom disc if needed */
  padding-left: 20px;
  font-size: 1.1rem;
}

.lista-suplemento li {
  margin-bottom: 8px;
  position: relative;
}

.lista-suplemento li::before {
  content: "•";
  color: #333;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}