/* ========================================
   PRODUCT PAGES - IMPROVING THEME
   Same pattern as home page
   ======================================== */

/* HERO SECTION */
.product-hero-improving {
    text-align: center;
    padding: 40px 40px 30px;
    background: #ffffff;
    /* Sem border-bottom */
}

.product-logo-wrapper {
    margin-bottom: 16px;
}

.product-logo-img {
    width: 280px;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Sem filtros - fundo branco integrado */
}

.product-title-improving {
    font-size: 36px;
    font-weight: 900;
    color: #005596;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-tagline-improving {
    font-size: 15px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SECTIONS */
.product-section-improving {
    padding: 36px 40px;
    background: #ffffff;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.product-section-title {
    font-size: 26px;
    font-weight: 900;
    color: #005596;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 3px solid #4597D3;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

.product-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
    max-width: 900px;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* BENEFITS GRID */
.benefits-grid-improving {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.benefit-card-improving {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-improving:hover {
    transform: translateY(-4px);
    border-color: #4597D3;
    box-shadow: 0 8px 20px rgba(0, 85, 150, 0.12);
}

.benefit-icon-improving {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-improving svg {
    width: 100%;
    height: 100%;
    display: block;
}

.benefit-card-improving h3 {
    font-size: 17px;
    font-weight: 700;
    color: #005596;
    margin-bottom: 10px;
}

.benefit-card-improving p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* OBJECTIONS GRID */
.objections-grid-improving {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.objection-card-improving {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 28px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.objection-card-improving:hover {
    transform: translateY(-4px);
    border-color: #4597D3;
    box-shadow: 0 8px 20px rgba(0, 85, 150, 0.12);
}

.objection-number-improving {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #005596, #4597D3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 16px;
}

.objection-card-improving h3 {
    font-size: 15px;
    font-weight: 700;
    color: #005596;
    margin-bottom: 10px;
}

.objection-card-improving p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* FEATURES GRID */
.features-grid-improving {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.feature-card-improving {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-improving:hover {
    transform: translateY(-4px);
    border-color: #4597D3;
    box-shadow: 0 8px 20px rgba(0, 85, 150, 0.12);
}

.feature-icon-improving {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-improving svg {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-card-improving h3 {
    font-size: 17px;
    font-weight: 700;
    color: #005596;
    margin-bottom: 10px;
}

.feature-card-improving p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* TECH SPECS */
.tech-specs-improving {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.tech-spec-box-improving {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.3s ease;
}

.tech-spec-box-improving:hover {
    border-color: #4597D3;
    box-shadow: 0 6px 16px rgba(0, 85, 150, 0.1);
}

.tech-spec-box-improving h3 {
    font-size: 15px;
    font-weight: 700;
    color: #005596;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-spec-box-improving ul {
    list-style: none;
    padding: 0;
}

.tech-spec-box-improving li {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.tech-spec-box-improving li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4597D3;
    font-weight: 700;
    font-size: 14px;
}

/* EXAMPLE IMAGE */
.product-image-wrapper {
    text-align: center;
    margin: 32px auto 0;
    max-width: 1000px;
}

.product-example-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* SOURCES GRID */
.sources-grid-improving {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.source-card-improving {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #005596;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.source-card-improving:hover {
    border-color: #4597D3;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 85, 150, 0.12);
}

.source-icon-improving {
    font-size: 18px;
}

.source-title-improving {
    flex: 1;
}

.source-arrow-improving {
    font-size: 16px;
    color: #4597D3;
}

/* CTA SECTION */
.cta-section-improving {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    /* Sem border-top */
    margin-top: 40px;
}

.cta-section-improving h2 {
    font-size: 28px;
    font-weight: 900;
    color: #005596;
    margin-bottom: 16px;
}

.cta-section-improving p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 28px;
}

.cta-button-improving {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #005596, #4597D3, #5BC2A7);
    color: #ffffff;
    text-decoration: none;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 85, 150, 0.25);
}

.cta-button-improving:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 85, 150, 0.35);
}

/* RESPONSIVE - PRODUCT PAGES */
@media (max-width: 1024px) {
    .benefits-grid-improving,
    .features-grid-improving {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-title-improving {
        font-size: 30px;
    }
    
    .product-section-title {
        font-size: 24px;
    }
    
    .benefits-grid-improving,
    .objections-grid-improving,
    .features-grid-improving,
    .tech-specs-improving,
    .sources-grid-improving {
        grid-template-columns: 1fr;
    }
    
    .product-hero-improving,
    .product-section-improving {
        padding: 40px 20px;
    }
    
    .cta-section-improving {
        padding: 50px 20px;
    }
    
    /* Melhor responsividade para textos */
    .product-description {
        font-size: 15px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .product-section-title {
        font-size: 22px;
        padding-right: 10px;
    }
}

/* Tablets e telas médias */
@media (max-width: 992px) {
    .product-description {
        max-width: 100%;
        padding: 0 5px;
    }
}
