* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  --primary-color: #003366;
  --secondary-color: #1e90ff;
  --accent-color: #FFD700;
  --success-color: #28a745;
  --error-color: #dc3545;
  --light-bg: #f5f5f5;
  --card-bg: #ffffff;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8eef5 100%);
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.header {
  background-color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  flex: 1;
  text-align: center;
}

.logo:hover {
  transform: scale(1.05);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.user-profile:hover {
  background-color: rgba(30, 144, 255, 0.1);
}

.user-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.user-name {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95em;
}

.menu {
  position: fixed;
  left: -350px;
  top: 0;
  width: 350px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.menu.open::before {
  opacity: 1;
  pointer-events: auto;
}

.menu.open {
  left: 0;
}

.menu-content {
  padding: 20px;
}

.menu-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: var(--transition);
  display: block;
  margin-left: auto;
  margin-bottom: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  color: #333;
  transform: rotate(90deg);
}

.menu-search {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.menu-search-input {
  flex: 1;
  padding: 10px 12px;
  border: 2px solid #e0e6f0;
  border-radius: 8px;
  font-size: 0.95em;
  transition: var(--transition);
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.menu-search-btn {
  padding: 10px 16px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.menu-search-btn:hover {
  background: #1e7cbd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.menu-list {
  list-style: none;
}

.menu-link {
  display: block;
  color: var(--primary-color);
  text-decoration: none;
  padding: 12px 0;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid #e0e6f0;
}

.menu-link:hover {
  color: var(--secondary-color);
  transform: translateX(8px);
}

.main {
  flex: 1;
  padding: 16px 0 12px;
  margin-top: 6px;
}

.hero-section {
  text-align: center;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: #666;
  font-size: 0.85em;
  margin-top: 3px;
  font-weight: 400;
}

.title {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tracking-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
}

.tracking-container {
  background: #ffffff;
  padding: 24px 18px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.08);
  max-width: 480px;
  margin: 0 auto;
}

.section-title {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 700;
}

.section-description {
  text-align: center;
  color: #666;
  margin-bottom: 16px;
  font-size: 0.95em;
}

.tracking-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-group label {
  display: block;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-size: 0.95em;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e6f0;
  border-radius: 6px;
  font-size: 1em;
  transition: var(--transition);
  background: #f8f9fc;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.form-input.error {
  border-color: var(--error-color);
  background: #fff8f8;
}

.error-message {
  display: block;
  color: var(--error-color);
  font-size: 0.85em;
  margin-top: 6px;
  font-weight: 500;
  min-height: 20px;
}

.btn-submit {
  background: linear-gradient(135deg, #1e90ff 0%, #1873cc 100%);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  display: block;
  margin: 16px auto 0;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.banner-section {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out;
  margin-bottom: 14px;
  min-height: 160px;
}

.banner-image {
  width: 100%;
  height: 100%;
  display: block;
  transition: var(--transition);
  object-fit: cover;
}

.banner-section:hover .banner-image {
  transform: scale(1.02);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  padding: 10px 0 8px;
  margin-top: auto;
  box-shadow: 0 -2px 8px rgba(255, 215, 0, 0.15);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.footer-column h3 {
  color: var(--primary-color);
  margin-bottom: 4px;
  font-size: 0.8em;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 2px;
}

.footer-column a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.75em;
}

.footer-column a:hover {
  opacity: 0.8;
  transform: translateX(1px);
}

.footer-bottom {
  text-align: center;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.footer-bottom p {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.7em;
  margin: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #ffffff;
  padding: 0;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e0e6f0;
}

.modal-header h2 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin: 0;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #333;
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px;
}

.modal-body p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
}

.modal-body.success p {
  color: var(--success-color);
}

.modal-body.error p {
  color: var(--error-color);
}

.modal-body.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.modal-body.loading p {
  color: var(--primary-color);
  margin-top: 20px;
  font-weight: 600;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e0e6f0;
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modal-actions {
  display: flex;
  gap: 12px;
  padding: 0 24px 24px;
  justify-content: center;
}

.modal-btn {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.modal-btn-primary {
  background: linear-gradient(135deg, #1e90ff 0%, #1873cc 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 144, 255, 0.4);
}

.modal-btn-secondary {
  background-color: #f0f0f0;
  color: var(--primary-color);
}

.modal-btn-secondary:hover {
  background-color: #e0e0e0;
}

.results-section {
  padding: 50px 20px;
}

.results-container {
  max-width: 600px;
  margin: 0 auto;
}

.results-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.results-content {
  padding: 40px;
}

.results-title {
  color: #003366;
  font-size: 1.5em;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.results-message {
  color: #666;
  font-size: 0.95em;
  margin: 0 0 25px 0;
  font-weight: 400;
  line-height: 1.6;
}

.info-block {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
  font-size: 0.95em;
  line-height: 1.4;
}

.info-label {
  color: #999;
  font-weight: 600;
  font-size: 0.8em;
  min-width: 160px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.info-value {
  color: #003366;
  font-weight: 600;
  flex: 1;
}

.deadline-value {
  color: #dc3545;
}

.actions-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.btn-primary {
  background: #003366;
  color: white;
  padding: 12px 20px;
  border: 1px solid #003366;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: #002147;
  border-color: #002147;
}

.btn-primary:active {
  transform: scale(0.99);
}

.btn-secondary {
  background: white;
  color: #003366;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-transform: lowercase;
}

.btn-secondary:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

.btn-secondary:active {
  transform: scale(0.99);
}

@media (max-width: 768px) {
  .logo {
    height: 40px;
  }

  .title {
    font-size: 2em;
  }

  .tracking-container {
    padding: 35px 25px;
  }

  .section-title {
    font-size: 1.5em;
  }

  .form-input {
    font-size: 16px;
    padding: 12px 14px;
  }

  .btn-submit {
    padding: 12px 32px;
  }

  .modal-content {
    width: 85%;
  }

  .footer-content {
    gap: 30px;
  }

  .menu {
    width: 280px;
    left: -280px;
  }

  .results-content {
    padding: 35px 25px;
  }

  .results-title {
    font-size: 1.3em;
  }

  .info-label {
    min-width: 140px;
    font-size: 0.75em;
  }
}

@media (max-width: 480px) {
  .header .container {
    padding: 0 12px;
  }

  .logo {
    height: 35px;
  }

  .user-name {
    display: none;
  }

  .main {
    padding: 20px 0 15px;
  }

  .title {
    font-size: 1.6em;
  }

  .hero-section {
    margin-bottom: 30px;
  }

  .tracking-container {
    padding: 25px 16px;
    margin: 0 12px;
  }

  .section-title {
    font-size: 1.3em;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-input {
    padding: 12px 12px;
  }

  .btn-submit {
    padding: 12px 24px;
    font-size: 0.95em;
  }

  .modal-content {
    width: 95%;
  }

  .modal-header {
    padding: 16px;
  }

  .modal-body {
    padding: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.1em;
  }

  .footer-column a {
    font-size: 0.9em;
  }

  .menu {
    width: 250px;
    left: -250px;
  }

  .results-section {
    padding: 20px 12px;
  }

  .results-card {
    border-radius: 10px;
  }

  .results-content {
    padding: 20px 16px;
  }

  .results-title {
    font-size: 1.1em;
    margin-bottom: 6px;
  }

  .results-message {
    font-size: 0.85em;
    margin-bottom: 12px;
  }

  .info-block {
    margin-bottom: 12px;
  }

  .info-item {
    flex-direction: column;
    margin-bottom: 6px;
  }

  .info-label {
    min-width: 100%;
    font-size: 0.65em;
    margin-bottom: 2px;
  }

  .info-value {
    font-size: 0.85em;
  }

  .actions-box {
    margin-top: 15px;
    gap: 6px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 14px;
    font-size: 0.85em;
  }
}

.breadcrumb {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 5px;
  padding-top: 0;
}

.breadcrumb a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #003366;
}

.package-section {
  padding: 40px 20px;
}

.package-container {
  max-width: 900px;
  margin: 0 auto;
}

.alert-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #dc3545;
}

.alert-icon {
  font-size: 3em;
  margin-bottom: 16px;
}

.alert-title {
  font-size: 1.8em;
  color: #dc3545;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alert-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.status-badge {
  color: #FFA500;
  font-size: 1.2em;
}

.status-text {
  color: #FFA500;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.alert-message {
  color: #333;
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.6;
}

.alert-subtitle {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 25px;
  line-height: 1.7;
}

.btn-primary-large {
  width: 100%;
  background: #0066cc;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary-large:hover {
  background: #004499;
}

.btn-primary-large:active {
  transform: scale(0.99);
}

.package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.package-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.package-image {
  width: 100%;
  height: auto;
  display: block;
}

.recipient-label {
  position: absolute;
  top: 51%;
  left: 87px;
  font-size: 0.55em;
  color: #333;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transform: rotate(2deg);
}

.recipient-name {
  position: absolute;
  top: 55%;
  left: 87px;
  font-size: 0.77em;
  color: #1a1a1a;
  font-weight: 700;
  transform: rotate(2deg);
}


.address-label {
  position: absolute;
  top: 69%;
  left: 82px;
  transform: rotate(3deg);
  font-size: 0.77em;
  color: #333;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.address-value {
  position: absolute;
  top: 75%;
  left: 80px;
  font-size: 0.75em;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.3;
  max-width: calc(100% - 40px);
  transform: rotate(4deg);
}

@media (min-width: 374px) {
  .recipient-name {
    top: 55%;
    left: 88px;
    transform: rotate(1deg);
  }

  .recipient-label {
    top: 52%;
    left: 88px;
    transform: rotate(1deg);
  }

  .address-label {
    top: 69%;
    left: 84px;
    transform: rotate(4deg);
  }

  .address-value {
    top: 75%;
    left: 84px;
    font-size: 0.75em;
    transform: rotate(4deg);
  }
}

@media (min-width: 414px) {
  .recipient-name {
    top: 55%;
    left: 98px;
    transform: rotate(1deg);
  }

  .recipient-label {
    top: 52%;
    left: 98px;
    transform: rotate(1deg);
  }

  .address-label {
    top: 69%;
    left: 95px;
    transform: rotate(4deg);
  }

  .address-value {
    top: 75%;
    left: 95px;
    font-size: 0.75em;
    transform: rotate(4deg);
  }
}

@media (min-width: 412px) {
  .recipient-name {
    top: 55%;
    left: 101px;
    transform: rotate(1deg);
  }

  .recipient-label {
    top: 52%;
    left: 101px;
    transform: rotate(1deg);
  }

  .address-label {
    top: 69%;
    left: 95px;
    transform: rotate(4deg);
  }

  .address-value {
    top: 75%;
    left: 95px;
    font-size: 0.75em;
    transform: rotate(4deg);
  }
}

@media screen and (min-width: 1024px) {
  .recipient-name {
    top: 55%;
    left: 111px;
    transform: rotate(2deg);
  }

  .recipient-label {
    top: 52%;
    font-size: 10px;
    left: 113px;
    transform: rotate(1deg);
  }


.address-label {
  top: 69%;
  left: 104px;
  transform: rotate(3deg);
}

.address-value {
          top: 75%;
        left: 102px;
        font-size: 12px;
        transform: rotate(4deg);

}
}
.timeline-section {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}

.timeline-header {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.timeline-correios-icon {
  height: 60px;
  width: auto;
}

.timeline-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 60px;
  width: 2px;
  height: 70px;
  background: transparent;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 3px solid #0066cc;
  color: #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
}

.timeline-icon-img {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 2px;
}

.timeline-icon-img img {
  width: 100%;
  height: auto;
}

.timeline-content {
  flex: 1;
  padding-top: 4px;
}

.timeline-content h3 {
  font-size: 1em;
  color: #003366;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .alert-card {
    padding: 25px;
  }

  .alert-title {
    font-size: 1.4em;
  }

  .alert-subtitle {
    font-size: 0.9em;
  }

  .btn-primary-large {
    padding: 12px 16px;
    font-size: 0.9em;
  }

  .timeline-section {
    padding: 25px;
  }

  .timeline-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .timeline-content h3 {
    font-size: 0.95em;
  }

  .timeline-content p {
    font-size: 0.85em;
  }

  .timeline-divider {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .main {
    padding: 12px 0 15px;
    margin-top: 0;
  }

  .package-section {
    padding: 10px 8px;
  }

  .alert-card {
    padding: 10px;
    border-left-width: 3px;
    margin-bottom: 10px;
  }

  .alert-icon {
    font-size: 1.8em;
    margin-bottom: 5px;
  }

  .alert-title {
    font-size: 1.05em;
    margin-bottom: 6px;
  }

  .alert-status {
    margin-bottom: 6px;
  }

  .alert-message {
    font-size: 0.8em;
    margin-bottom: 6px;
  }

  .alert-subtitle {
    font-size: 0.75em;
    margin-bottom: 10px;
  }

  .btn-primary-large {
    padding: 7px 11px;
    font-size: 0.75em;
  }

  .package-card {
    margin-bottom: 10px;
  }

  .timeline-section {
    padding: 10px;
    margin: 0;
  }

  .timeline-item {
    gap: 8px;
    margin-bottom: 10px;
  }

  .timeline-icon {
    min-width: 26px;
    width: 26px;
    height: 26px;
  }

  .timeline-icon svg {
    width: 13px;
    height: 13px;
  }

  .timeline-content h3 {
    font-size: 0.8em;
    margin-bottom: 1px;
  }

  .timeline-content p {
    font-size: 0.7em;
  }

  .timeline-divider {
    margin-left: 13px;
    height: 10px;
  }

  .breadcrumb {
    font-size: 0.7em;
    margin-bottom: 10px;
  }
}

.progress-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.progress-item.active .progress-step {
  background-color: var(--secondary-color);
  color: white;
}

.progress-step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0e0e0;
  font-size: 24px;
  transition: var(--transition);
}

.progress-label {
  font-size: 12px;
  color: #666;
  text-align: center;
  font-weight: 500;
}

.progress-connector {
  flex: 1;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 0 10px;
  max-width: 80px;
}

.status-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.status-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.status-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.status-divider {
  border-top: 1px dotted #ddd;
  margin: 20px 0;
}

.status-item {
  margin-bottom: 0;
}

.status-date-main {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.status-text {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.status-highlight {
  color: var(--error-color);
  font-weight: 600;
}

.status-description {
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
}

.status-bold {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .package-section {
    padding: 8px 12px;
  }

  .package-container {
    max-width: 700px;
  }

  .alert-card {
    padding: 8px 10px;
    margin-bottom: 5px;
    border-left-width: 3px;
  }

  .alert-icon {
    font-size: 1.2em;
    margin-bottom: 3px;
  }

  .alert-title {
    font-size: 0.95em;
    margin-bottom: 4px;
  }

  .alert-status {
    margin-bottom: 3px;
    font-size: 0.8em;
  }

  .alert-message {
    font-size: 0.8em;
    margin-bottom: 3px;
  }

  .alert-subtitle {
    font-size: 0.75em;
    margin-bottom: 6px;
  }

  .btn-primary-large {
    padding: 6px 12px;
    font-size: 0.8em;
  }

  .package-card {
    margin-bottom: 5px;
  }

  .timeline-section {
    padding: 8px 10px;
    margin: 0;
  }

  .timeline-item {
    gap: 8px;
    margin-bottom: 8px;
  }

  .timeline-icon {
    min-width: 32px;
    width: 32px;
    height: 32px;
  }

  .timeline-icon svg {
    width: 16px;
    height: 16px;
  }

  .timeline-content h3 {
    font-size: 0.9em;
    margin-bottom: 2px;
  }

  .timeline-content p {
    font-size: 0.8em;
  }

  .timeline-divider {
    margin-left: 16px;
    height: 10px;
  }
}