/* Pricing Section */
.pricing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Desktop: Full viewport height */
@media (min-width: 1024px) {
    .pricing {
        min-height: 100vh;
        padding: 120px 0 80px 0;
    }

    .pricing-container {
        min-height: auto;
        padding: 0 2rem;
        justify-content: center;
    }
}

/* Tablet and Mobile: Auto height */
@media (max-width: 1023px) {
    .pricing {
        height: auto;
        min-height: auto;
        padding: 100px 0 60px 0;
        align-items: center;
    }

    .pricing-container {
        height: auto;
        padding: 0 2rem;
    }
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-title {
    font-weight: 300;
    line-height: 1.1;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.pricing-highlight {
    color: #F04037;
    font-style: italic;
    font-weight: 400;
}

.pricing-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICE PANELS CONTAINER ===== */
.service-panels {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-wrap: wrap;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.service-panels.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== SERVICE PANEL CONTAINER ===== */
.service-panel-container {
    flex: 1;
    max-width: 450px;
    min-width: 340px;
}

/* Featured Website Panel */
.service-panel-container.website-featured {
    transform: scale(1.05);
    z-index: 2;
}

/* ===== SERVICE PANEL BASE STYLES ===== */
.service-panel {
    border-radius: 30px;
    padding: 1.4rem 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 340px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Hover Effects for Panels */
.service-panel:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.landing-panel:hover {
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.15);
}

.website-panel:hover {
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.1);
}

.sistema-panel:hover {
    box-shadow: 0 25px 70px rgba(240, 64, 55, 0.3);
}

.website-panel:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

/* ===== PANEL VARIANTS ===== */
.landing-panel {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    color: #333333;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.website-panel {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    color: #ffffff;
    border: 2px solid #333333;
    position: relative;
    overflow: hidden;
}

.sistema-panel {
    background: linear-gradient(145deg, #F04037, #E53935);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* ===== PANEL ICON DIRECT (NO CIRCLES) ===== */
.panel-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.panel-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Featured Website Icon - Bigger and Centered */
.featured-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.25rem;
}

.featured-icon .panel-icon-img {
    width: 100%;
    height: 100%;
    filter: brightness(1) !important;
}

.website-panel .panel-icon-img {
    filter: brightness(1) !important;
}

/* Hover Effects for Icons */
.service-panel:hover .panel-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-panel:hover .panel-icon-img {
    filter: brightness(1.1);
}

.website-panel:hover .panel-icon-img {
    filter: brightness(1) !important;
}

/* ===== PANEL TYPOGRAPHY ===== */
.panel-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.panel-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    opacity: 0.85;
    line-height: 1.4;
    font-weight: 400;
}

/* ===== PANEL BENEFITS LIST ===== */
.panel-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.panel-benefits li {
    padding: 0.6rem 1rem;
    position: relative;
    padding-left: 2.8rem;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

/* ===== LANDING PANEL BENEFITS (Green Check) ===== */
.landing-panel .panel-benefits li {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.landing-panel .panel-benefits li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ===== WEBSITE PANEL BENEFITS (Green Check) ===== */
.website-panel .panel-benefits li {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

.website-panel .panel-benefits li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ===== SISTEMA PANEL BENEFITS (Green Check) ===== */
.sistema-panel .panel-benefits li {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.sistema-panel .panel-benefits li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ===== PANEL PRICE SECTION ===== */
.panel-price-section {
    margin-top: auto;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    font-family: 'Inter', sans-serif;
}

.price-value {
    display: block;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px !important;
    text-transform: uppercase;
}

.landing-panel .price-value,
.website-panel .price-value,
.sistema-panel .price-value {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 1px !important;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Tablets and smaller screens */
@media (max-width: 1023px) {
    .service-panels {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .service-panel-container {
        max-width: 420px;
        width: 100%;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .service-panels {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .service-panel-container {
        max-width: 420px;
    }
    
    .service-panel {
        padding: 1.1rem 1.25rem;
        min-height: 320px;
        border-radius: 20px;
    }
    
    .panel-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.875rem;
    }
    
    .panel-title {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }
    
    .panel-benefits li {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
        padding-left: 2.5rem;
    }
    
    .panel-benefits li::before {
        width: 16px;
        height: 16px;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.6rem;
    }
    
    .panel-icon-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .panel-icon {
        width: 60px;
        height: 60px;
    }
    
    .panel-title {
        font-size: 1.25rem;
    }
    
    .panel-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .panel-benefits li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
        padding-left: 2rem;
    }
    
    .panel-benefits li::before {
        left: 0.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75rem;
        width: 14px;
        height: 14px;
    }
    
    .price-value {
        font-size: 1.2rem !important;
    }

    .landing-panel .price-value,
    .website-panel .price-value,
    .sistema-panel .price-value {
        font-size: 1.2rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .service-panels {
        padding: 0 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .service-panel-container {
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
    }
    
    .service-panel {
        padding: 1.1rem 1rem;
        min-height: 300px;
        margin: 0 auto;
    }
    
    .panel-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .panel-icon {
        width: 38px;
        height: 38px;
    }
    
    .panel-title {
        font-size: 1.1rem;
    }
    
    .panel-benefits li {
        font-size: 0.75rem;
        padding-left: 1.8rem;
    }
    
    .panel-benefits li::before {
        left: 0.2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        font-size: 0.65rem;
    }
    
    .price-value {
        font-size: 1.1rem !important;
    }

    .landing-panel .price-value,
    .website-panel .price-value,
    .sistema-panel .price-value {
        font-size: 1.1rem !important;
    }
}

/* Landing Page Plan - Light */
.pricing-plan.landing {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    border: 2px solid rgba(233, 236, 239, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pricing-plan.landing:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(240, 64, 55, 0.2);
}

/* Website Plan - Dark (Premium) */
.pricing-plan.website {
    background: #000000;
    color: white;
    border: 2px solid rgba(51, 51, 51, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-plan.website:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(240, 64, 55, 0.3);
}

/* Sistema Web Plan - Red */
.pricing-plan.sistema {
    background: linear-gradient(135deg, #F04037 0%, #E53935 100%);
    color: white;
    border: 2px solid rgba(229, 57, 53, 0.5);
    box-shadow: 0 8px 32px rgba(240, 64, 55, 0.2);
}

.pricing-plan.sistema:hover {
    box-shadow: 0 30px 70px rgba(240, 64, 55, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Circular Icon at Top */
.plan-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    font-size: 2rem;
}

/* Landing Page Icon - Orange Circle */
.pricing-plan.landing .plan-icon-circle {
    background: linear-gradient(135deg, #F04037 0%, #E53935 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(240, 64, 55, 0.3);
}

.pricing-plan.landing .plan-icon-circle::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Website Icon - White Circle */
.pricing-plan.website .plan-icon-circle {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pricing-plan.website .plan-icon-circle::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 24 24'%3E%3Cpath d='M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4M20,18H4V8H20V18M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,13A1,1 0 0,1 11,12A1,1 0 0,1 12,11A1,1 0 0,1 13,12A1,1 0 0,1 12,13Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Sistema Web Icon - Black Circle */
.pricing-plan.sistema .plan-icon-circle {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-plan.sistema .plan-icon-circle::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.22,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.22,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.68 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hover effects for icons */
.pricing-plan:hover .plan-icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.pricing-plan.landing:hover .plan-icon-circle {
    box-shadow: 0 8px 30px rgba(240, 64, 55, 0.5);
}

.pricing-plan.website:hover .plan-icon-circle {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6);
}

.pricing-plan.sistema:hover .plan-icon-circle {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* Hide the old image icons */
.plan-icon-img {
    display: none;
}

.plan-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.plan-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-plan.landing .plan-name {
    color: #333;
}

.pricing-plan.website .plan-name {
    color: white;
}

.pricing-plan.sistema .plan-name {
    color: white;
}

.plan-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.pricing-plan.landing .plan-subtitle {
    color: #666;
}

.pricing-plan.website .plan-subtitle {
    color: #f5f5f5;
    font-size: 1.05rem;
}

.pricing-plan.sistema .plan-subtitle {
    color: #f5f5f5;
    font-size: 1.05rem;
}

.plan-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features-list li {
    padding: 1rem 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 2rem;
    text-align: left;
    line-height: 1.4;
}

.plan-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-plan.landing .plan-features-list li {
    color: #555;
}

.pricing-plan.website .plan-features-list li {
    color: #f8f9fa;
    font-size: 1rem;
    font-weight: 400;
}

.pricing-plan.sistema .plan-features-list li {
    color: #f8f9fa;
    font-size: 1rem;
    font-weight: 400;
}

.plan-price {
    text-align: center;
    margin-bottom: 0;
    margin-top: auto;
    padding: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-text {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
}

.pricing-plan.landing .price-text {
    color: #666;
}

.pricing-plan.website .price-text {
    color: #e9ecef;
    font-size: 0.9rem;
}

.pricing-plan.sistema .price-text {
    color: #e9ecef;
    font-size: 0.9rem;
}

.price-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    width: 100%;
}

.pricing-plan.landing .price-amount {
    color: #333;
}

.pricing-plan.website .price-amount {
    color: white;
}

.pricing-plan.sistema .price-amount {
    color: white;
}



.pricing-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-footer.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-note {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

/* Define per-plan variables */
.pricing-plan.landing {
    --pill-bg: #ffffff;
    --pill-border: rgba(0,0,0,0.12);
    --pill-text: #333333;
    --pill-accent: #10b981; /* green check */
}

.pricing-plan.website {
    --pill-bg: #000000;
    --pill-border: #F04037; /* brand red/orange outline */
    --pill-text: #ffffff;
    --pill-accent: #10b981;
}

.pricing-plan.sistema {
    --pill-bg: #000000;
    --pill-border: rgba(255,255,255,0.18);
    --pill-text: #ffffff;
    --pill-accent: #10b981;
}

/* Reset list style */
.plan-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Pill container */
.pricing-plan .plan-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border: 1px solid var(--pill-border);
    border-radius: 999px;
    background: var(--pill-bg);
    color: var(--pill-text);
    font-size: 0.9rem;
    position: relative;
    margin-bottom: 0.6rem;
}

/* Check icon */
.pricing-plan .plan-features-list li::before {
    content: "✓";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--pill-accent);
    border: 2px solid var(--pill-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Remove default absolute bullet from previous style */
.plan-features-list li:before {
    /* override earlier rules */
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
}

/* ========================================
   Pricing card image (new design)
   ======================================== */
.pricing-card-img {
    width: auto;
    height: auto;
    max-width: min(350px, 90vw);
    max-height: 80vh;
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    object-fit: contain;
    image-rendering: auto;
}

/* Ensure text starts after check icon */
.landing-panel .panel-benefits li,
.website-panel .panel-benefits li,
.sistema-panel .panel-benefits li {
    padding-left: 2.8rem; /* 44.8px, leaves ~17px gap after 20px icon */
}

.landing-panel .panel-benefits li::before,
.website-panel .panel-benefits li::before,
.sistema-panel .panel-benefits li::before {
    left: 0.8rem; /* 12.8px from edge */
}


