/* ==========================================================================
   Plan Renove Canarias - landing content (bono descuento Expert Acadesa)
   ========================================================================== */
.pr-promo {
    --pr-green: #1B6B3C;
    --pr-green-dark: #0F4C2C;
    --pr-green-light: #EAF4EC;
    --pr-orange: #F26A21;
    --pr-orange-light: #FDECE0;
    --pr-red: #E23B2E;
    --pr-red-light: #FDEDEC;
    --pr-gray-text: #4A4A4A;
    --pr-border: #E3E3E3;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 15px 60px;
    color: #202020;
    font-family: inherit;
}
.pr-promo * { box-sizing: border-box; }
.pr-promo a { text-decoration: none; }
.pr-promo img { max-width: 100%; display: block; }
.pr-promo svg { flex-shrink: 0; }
.pr-icon { display: block; }
.pr-chevron { width: 16px; height: 16px; }

/* Intro line */
.pr-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
}
.pr-highlight {
    background: var(--pr-orange);
    color: #fff;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 700;
    white-space: nowrap;
}

/* Alert box */
.pr-alert {
    border: 2px solid var(--pr-red);
    background: var(--pr-red-light);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 35px;
}
.pr-alert-top {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pr-alert-top .pr-icon {
    width: 34px;
    height: 34px;
    color: var(--pr-red);
    flex-shrink: 0;
}
.pr-alert-top h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #202020;
    line-height: 1.25;
}
.pr-alert hr {
    border: none;
    border-top: 1px solid rgba(226,59,46,.35);
    margin: 18px 0;
}
.pr-alert-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pr-alert-bottom .pr-icon {
    width: 26px;
    height: 26px;
    color: var(--pr-green);
    flex-shrink: 0;
}
.pr-alert-bottom p { margin: 0; font-size: 15px; color: #333; }

/* Section heading */
.pr-heading {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #202020;
    margin: 0 0 25px;
    line-height: 1.35;
}
.pr-heading .pr-text-orange { color: var(--pr-orange); }
.pr-subheading {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #202020;
    letter-spacing: .5px;
    margin: 45px 0 22px;
}
.pr-subheading-blue { color: black; }

/* CTA buttons row */
.pr-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}
.pr-cta-row .pr-btn-block { flex: 1 1 260px; }
.pr-btn-block {
    display: flex;
    align-items: center;
    gap: 18px;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 18px 26px;
    font-weight: 800;
    font-size: 19px;
    line-height: 1.3;
    transition: opacity .15s ease, transform .15s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.pr-btn-block:hover { opacity: .9; transform: translateY(-1px); }
.pr-btn-text { flex: 1 1 auto; }
.pr-btn-icon-badge {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr-btn-icon-badge svg { width: 32px; height: 32px; }
.pr-btn-block .pr-chevron {
    margin-left: 4px;
    width: 18px;
    height: 18px;
}
.pr-btn-green-fill {
    background: var(--pr-green);
    color: #fff !important;
    border-color: var(--pr-green);
}
.pr-btn-orange-outline {
    background: #fff;
    color: var(--pr-orange) !important;
    border-color: var(--pr-orange);
    box-shadow: 0 6px 14px rgba(0,0,0,.05);
}

/* Table */
.pr-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -15px 8px;
    padding: 0 15px;
    -webkit-overflow-scrolling: touch;
}
.pr-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    font-size: 14px;
}
.pr-table th, .pr-table td {
    padding: 10px 12px;
    text-align: center;
    border: 1px solid #fff;
}
.pr-table thead tr.pr-table-group th {
    background: var(--pr-green);
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.pr-table thead tr.pr-table-group th.pr-th-product { background: var(--pr-green-dark); text-align: left; }
.pr-table thead tr.pr-table-group th.pr-th-vulnerable { background: var(--pr-orange); }
.pr-table thead tr.pr-table-sub th {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
.pr-table thead tr.pr-table-sub th.pr-sub-general { background: #4C8C67; }
.pr-table thead tr.pr-table-sub th.pr-sub-vulnerable { background: #F2924D; }
.pr-table tbody td.pr-cell-product {
    text-align: left;
    font-weight: 700;
    background: var(--pr-green-light);
}
.pr-table tbody tr:nth-child(even) td:not(.pr-cell-product) { background: #F7F7F7; }
.pr-table tbody tr:nth-child(odd) td:not(.pr-cell-product) { background: #FFFFFF; }
.pr-table-note {
    font-size: 12px;
    color: #888;
    margin: 6px 0 40px;
}

/* 3 benefit cards */
.pr-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 45px;
}
.pr-benefit-card {
    flex: 1 1 220px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    border: 1px solid var(--pr-border);
    border-radius: 10px;
    padding: 22px 20px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,.04);
}
.pr-benefit-card .pr-icon { width: 60px; height: 60px; margin: 0; }
.pr-benefit-card.pr-icon-green .pr-icon { color: var(--pr-green); }
.pr-benefit-card.pr-icon-orange .pr-icon { color: var(--pr-orange); }
.pr-benefit-text { flex: 1 1 auto; padding-top: 4px; }
.pr-benefit-label {
    display: block;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--pr-green);
}
.pr-icon-orange .pr-benefit-label { color: var(--pr-orange); }
.pr-benefit-figure {
    font-size: 28px !important;
    font-weight: 800;
    color: #202020;
    margin: 0 0 4px;
    line-height: 1.1;
}
.pr-benefit-heading {
    font-size: 17px;
    font-weight: 800;
    color: #202020;
    margin: 0 0 4px;
    line-height: 1.2;
}
.pr-benefit-heading .pr-benefit-label { display: inline; text-transform: none; letter-spacing: normal; }
.pr-benefit-card p { margin: 0; font-size: 14px !important; color: var(--pr-gray-text); }
.pr-benefit-label {
    font-size: 18px;
}
.pr-benefit-figure {
    font-size:18px !important
}
.pr-benefit-heading .large,
.pr-benefit-figure .large {
    font-size:28px !important;
    display:block;
}

/* Appliances row */
.pr-appliances {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 45px;
}
.pr-appliance {
    flex: 1 1 140px;
    text-align: center;
    border: 1px solid var(--pr-border);
    border-radius: 8px;
    padding: 22px 10px 16px;
    background: #fff;
}
.pr-appliance svg { width: 54px; height: 54px; margin: 0 auto 10px; display: block; }
.pr-appliance span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    letter-spacing: .2px;
}

/* 3 steps */
.pr-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.pr-step-card {
    flex: 1 1 260px;
    border: 1px solid var(--pr-border);
    border-radius: 8px;
    padding: 25px 22px 22px;
    text-align: center;
    position: relative;
    background: #fff;
}
.pr-step-number {
    position: absolute;
    top: -14px;
    left: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pr-orange);
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr-step-icon {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.pr-step-icon svg { width: 60px; height: 60px; color: var(--pr-green); }
.pr-step-card img.pr-step-logo { max-height: 44px; width: auto; margin: 0 auto; }
.pr-step-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--pr-green-dark);
    margin: 0 0 10px;
    letter-spacing: .3px;
}
.pr-step-card p {
    font-size: 13.5px;
    color: var(--pr-gray-text);
    margin: 0 0 16px;
    line-height: 1.5;
}
.pr-step-card p strong { color: #202020; }
.pr-step-note {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: -8px;
    margin-bottom: 16px;
    line-height: 1.3;
}
.pr-step-btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
}
.pr-step-btn.pr-btn-orange { background: var(--pr-orange); }
.pr-step-btn.pr-btn-green { background: var(--pr-green); }

/* Dark banner */
.pr-dark-banner {
    background: var(--pr-green-dark);
    color: #fff;
    border-radius: 8px;
    padding: 22px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}
.pr-dark-banner-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}
.pr-dark-banner-text span {
    display: block;
    font-size: 15px;
    color: #CFE3D6;
}
.pr-dark-banner-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 18px;
    width: 100%;
}
.pr-dark-banner-icons .pr-dot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.pr-dark-banner-icons svg { width: 34px; height: 34px; color: var(--pr-orange); }

/* Final CTA row */
.pr-final-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 55px;
}
.pr-final-cta a { flex: 1 1 300px; }
.pr-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
}
.pr-btn-full.pr-btn-orange-fill { background: var(--pr-orange); color: #fff !important; }
.pr-btn-full.pr-btn-green-outline { background: #fff; color: var(--pr-green) !important; border-color: var(--pr-green); }

/* Footer logos */
.pr-footer-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--pr-border);
}
.pr-footer-logos img { max-height: 46px; width: auto; }
.pr-footer-logos img.pr-logo-multiply { mix-blend-mode: multiply; }

/* Responsive */
@media (max-width: 640px) {
    .pr-alert-top h2 { font-size: 19px; }
    .pr-heading { font-size: 20px; }
    .pr-cta-row .pr-btn-block { flex: 1 1 100%; }
    .pr-appliance { flex: 1 1 42%; }
    .pr-dark-banner { justify-content: center; text-align: center; }
    .pr-dark-banner-icons { grid-template-columns: repeat(2, 1fr); }
    .pr-dark-banner-icons .pr-dot-item { justify-content: center; }
    .pr-footer-logos { gap: 30px; }
}
@media (max-width: 480px) {
    .pr-table {
        min-width: 0;
        width: 100%;
        table-layout: fixed;
        font-size: 10.5px;
    }
    .pr-table th, .pr-table td { padding: 6px 3px; word-break: break-word; }
    .pr-table th.pr-th-product, .pr-table td.pr-cell-product { width: 22%; }
    .pr-table thead tr.pr-table-sub th { font-size: 9.5px; }
}
