/* procedure-livraison.css 
   Extracted from procedure-livraison.html to improve modularity.
*/

.delivery-hero {
    background: linear-gradient(180deg, #f7fbf7 0%, #eef6ee 100%);
    padding: 96px 1rem 36px;
    text-align: center;
    border-bottom: 1px solid #e9f2ea;
}
.delivery-hero h1 {
    margin: 0 auto 12px;
    font-size: 2.4rem;
    color: #2c3e50;
    line-height: 1.05;
    max-width: 900px;
    font-weight: 800;
}
.delivery-hero p {
    margin: 0 auto;
    color: #556B57;
    max-width: 820px;
    font-size: 1.05rem;
}

.procedure-container {
    max-width: 1200px;
    margin: 32px auto 4rem;
    padding: 0 1.25rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.step-card {
    background: #fff;
    border: 1px solid #eef6ee;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 8px 26px rgba(27,50,34,0.04);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform .16s ease, box-shadow .16s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(27,50,34,0.06); }

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg,#7DA27E33,#5fa35f22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex: 0 0 64px;
    color: #2c3e50;
    box-shadow: 0 6px 18px rgba(95,163,95,0.06);
}

.step-body h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.05rem;
}
.step-body p {
    margin: 0.6rem 0 0;
    color: #50575e;
    font-size: 0.98rem;
    line-height: 1.6;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 1.5rem;
    margin-top: 2.25rem;
}

.details-article {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #eef6ee;
    line-height: 1.7;
    color: #50575e;
}
.details-article h2 { color: #5fa35f; margin-bottom: 0.85rem; font-size: 1.3rem; }

.aside-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.aside-card {
    background: linear-gradient(180deg,#ffffff,#fbfffb);
    padding: 0.9rem;
    border-radius: 12px;
    border: 1px solid #eef6ee;
    display:flex; gap:0.9rem; align-items:center;
}
.aside-card img { width:84px; height:64px; object-fit:cover; border-radius:8px; flex:0 0 84px; }

.cta-row {
    margin-top: 1.5rem;
    display:flex;
    gap:1rem;
    align-items:center;
    justify-content:flex-start;
    flex-wrap:wrap;
}

.small-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #455847;
    background: #fff;
    padding: 0.9rem;
    border-radius: 10px;
    border: 1px solid #f0f6f0;
}

.hero-image {
    width:100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 980px) {
    .steps-grid { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .delivery-hero { padding-top: 84px; }
    .cta-row { justify-content: center; }
}

@media (max-width: 480px) {
    .delivery-hero h1 { font-size: 1.6rem; padding: 0 0.5rem; }
    .delivery-hero p { font-size: 0.95rem; }
    .step-icon { width:56px; height:56px; font-size:1.4rem; flex:0 0 56px; }
    .step-card { padding: 0.9rem; gap:0.75rem; }
    .aside-card img { display:none; }
}