.blog-section-two {
  padding-top: 0;
}

label { 
  display:block; 
  margin: 10px 0 6px; 
}

input, 
select {
  border-radius: 8px; 
  padding: 6px 8px; 
  width: 280px; 
}

button { 
  margin-top: 14px; 
  padding: 9px 14px; 
}

table { 
  border-collapse: collapse; 
  margin-top: 18px; 
  min-width: 620px; 
}

th, 
td { 
  border: 1px solid #ddd; 
  padding: 8px; 
  text-align: right; 
}

th:first-child, 
td:first-child { 
  text-align: left; 
}

tfoot td { 
  font-weight: bold; 
}

.note { 
  margin-top:12px; 
  font-size: 12px; 
  color: #555; 
}

.field { 
  display:flex; 
  flex-direction:column;
}

.muted {
  padding-left: 5px; 
  color:#666; 
  font-size:12px; 
}

.calc-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  border-radius: 16px;
  background-color: rgb(233, 242, 255);
}

.grid { 
  display:flex; 
  justify-content: center;
  gap:24px; 
  flex-wrap: wrap; 
  align-items:flex-end;
}

#resultado {
  display: flex;
  justify-content: center;
}

#email-section {
  display: none;
  margin-top: 20px;
}

.email-visible {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px; 
  margin-top: 1.5rem;
}

.read-more {
  background: #0146A6;
  border-color: transparent;
  color: #fff;
  border-radius: 8px;
}

/* Para Chrome, Edge, Safari */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset; 
  -webkit-text-fill-color: #000; 
  transition: background-color 5000s ease-in-out;
}

/* Para Firefox */
input:-moz-autofill {
  box-shadow: 0 0 0px 1000px white inset; 
  -moz-text-fill-color: #000;
}

@media (max-width: 768px) {
  .calc-container {
    padding: 1rem;
  }

  table, thead, tbody, th, td, tr {
    display: block;
  }

  table {
    min-width: 100%;
    max-width: 100%;
  }

  tfoot {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
  }

  td {
    text-align: left;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #0146A6;
;
  }

  td:last-child {
    border-bottom: none;
  }

  td::before {
    content: attr(data-label);
    font-weight: bold;
    flex: 1;
  }
}