/* ======================
   TARIFFS PAGE
====================== */

.tariff-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("highway.avif") center/cover no-repeat;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.tariff-hero h1 {
  font-size: clamp(26px, 5vw, 42px);
  margin-bottom: 8px;
}

.tariff-hero p {
  font-size: clamp(14px, 3vw, 16px);
}

.tariff-note {
  max-width: 1100px;
  margin: 30px auto;
  background: #fff3cd;
  color: #664d03;
  padding: 14px 20px;
  border-radius: 6px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
}

.tariff-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tariff-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tariff-card h3 {
  font-size: 22px;
  color: #003366;
  margin-bottom: 10px;
}

.tariff-card .price {
  font-size: 26px;
  font-weight: bold;
  color: #f36c21;
  margin-bottom: 12px;
}

.tariff-card .price span {
  font-size: 14px;
  color: #666;
}

.tariff-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.tariff-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-call {
  background: #003366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.btn-call:hover {
  background: #1e88e5;
}

.btn-whatsapp {
  border: 2px solid #25d366;
  color: #25d366;
  background: transparent;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: white;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .tariff-section {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin: 30px auto;
  }

  .tariff-note {
    margin: 20px;
  }
}

@media (max-width: 576px) {
  .tariff-hero {
    height: 180px;
  }

  .tariff-section {
    padding: 0 15px;
    gap: 20px;
  }

  .tariff-card {
    padding: 20px 16px;
  }

  .tariff-note {
    margin: 15px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .btn-call,
  .btn-whatsapp {
    flex: 1 1 130px;
    padding: 10px 14px;
    font-size: 14px;
    text-align: center;
  }
}
