/* public/styles/pacotes.css */

/* === Copy from how-it-works.css === */
.main-content {
  max-width: 1100px; /* Wider for a grid layout */
  margin: 2rem auto;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.page-header .subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
/* === End of copied styles === */


/* === NEW Styles for Packet Cards === */
.packets-section {
  margin-bottom: 5rem;
}

.packets-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.packets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.packet-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.packet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.packet-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.packet-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1; /* Pushes content below to the bottom */
}

.packet-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Add some icons via pseudo-elements */
.stat-item.questions::before { content: '❓'; }
.stat-item.flashcards::before { content: '🗂️'; }
.stat-item.pdfs::before { content: '📄'; }

.packet-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: auto; /* Aligns button to the bottom */
}

.packet-card p.packet-description { /* Target specific paragraph for description */
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem; /* Add some space below description */
}

/* --- NEW Styles for Job Details (Salary & Perks) --- */
.job-details {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e0e0e0; /* Visual separator */
    font-size: 0.9rem;
    color: #444;
}

.job-details .detail-item {
    display: block; /* Each detail on its own line */
    margin-bottom: 0.5rem;
}

.job-details .detail-item:last-child {
    margin-bottom: 0;
}

.job-details .detail-item strong {
    color: var(--primary-color); /* Highlight salary */
    font-weight: 600;
}
/* --- END NEW Styles --- */

.btn-disabled {
    background-color: #f0f0f0 !important;
    border-color: #e0e0e0 !important;
    color: #999 !important;
    cursor: not-allowed;
}

/* === NEW Brief "How it Works" section === */
.how-it-works-brief {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid #eee;
}

.how-it-works-brief h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem auto;
    text-align: left;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.feature-item p {
    color: #555;
    line-height: 1.6;
}

.link-more-info {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}
.link-more-info:hover {
    text-decoration: underline;
}
