/* css/tarifas.css */

/* Header Styling */
header.masthead.tarifas-header {
  background: linear-gradient(135deg, var(--color-3) 0%, var(--color-2) 100%);
  min-height: 50vh;
  height: auto;
  padding-top: 180px;
  padding-bottom: 120px;
  margin-bottom: 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header.masthead.tarifas-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  pointer-events: none;
}

header.masthead.tarifas-header .intro-text {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  z-index: 2;
}

header.masthead.tarifas-header .intro-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: white;
}

/* Pricing Section Styling */
.pricing-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(195, 159, 148, 0.2);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-3), var(--color-2));
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align top to handle multi-line text */
  margin-bottom: 15px;
  font-family: var(--body-font);
  color: var(--text-main);
  font-size: 0.95rem;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.pricing-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.service-name {
  text-align: left;
  padding-right: 15px;
  font-weight: 500;
  flex: 1;
}

.service-price {
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
  background: var(--bg-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.pricing-note {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 4px;
  font-style: italic;
}
