/* =========================
   HERO DA PÁGINA
========================== */

.page-hero {
    padding: 100px 0 80px;
}

.page-hero-category {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.page-hero h1 {
    max-width: 750px;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
}

.page-hero p {
    max-width: 650px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* =========================
   INTRODUÇÃO
========================== */

.products-intro {
    padding: 80px 0 50px;
}

.products-intro-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--default-color);
}

/* =========================
   PRODUTOS
========================== */

.products-section {
    padding: 50px 0 90px;
}

.product-page-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 16px;
    background: var(--surface-color);
    transition: all 0.3s ease;
}

.product-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.product-page-image {
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-page-card:hover .product-page-image img {
    transform: scale(1.05);
}

.product-page-content {
    padding: 28px;
}

.product-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.product-page-content h3 {
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
}

.product-page-content p {
    min-height: 80px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.product-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-page-btn:hover {
    color: var(--contrast-color);
    transform: translateX(3px);
}

.product-page-btn i {
    font-size: 16px;
}

/* =========================
   COMO ESCOLHER
========================== */

.how-to-choose {
    padding: 90px 0;
    background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.choose-card {
    height: 100%;
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 14px;
    background: var(--surface-color);
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
    font-size: 24px;
}

.choose-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.choose-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* =========================
   CTA
========================== */

.call-to-action {
    padding: 90px 0;
}

.call-to-action h2 {
    margin-bottom: 18px;
    font-size: 36px;
    font-weight: 700;
}

.call-to-action p {
    max-width: 650px;
    margin: 0 auto 28px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    color: var(--contrast-color);
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVIDADE
========================== */

@media (max-width: 991px) {
    .page-hero {
        padding: 80px 0 65px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .products-intro {
        padding: 65px 0 40px;
    }

    .products-section {
        padding: 40px 0 70px;
    }

    .how-to-choose,
    .call-to-action {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 65px 0 55px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .products-intro {
        padding: 55px 0 30px;
    }

    .products-section {
        padding: 30px 0 60px;
    }

    .product-page-image {
        height: 240px;
    }

    .product-page-content {
        padding: 24px;
    }

    .product-page-content h3 {
        font-size: 20px;
    }

    .product-page-content p {
        min-height: auto;
    }

    .how-to-choose,
    .call-to-action {
        padding: 60px 0;
    }

    .call-to-action h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .page-hero h1 {
        font-size: 29px;
    }

    .page-hero-category {
        font-size: 11px;
    }

    .product-page-image {
        height: 220px;
    }

    .choose-card {
        padding: 25px;
    }
}

.product-old-price{
    display:block;
    margin-top:15px;
    color:#888;
    font-size:14px;
    text-decoration:line-through;
}
.product-price{
    display:block;
    margin:4px 0 18px;
    color:#08b9f1;
    font-size:25px;
}
.product-page-image img{
    max-width:100%;
    max-height:260px;
    object-fit:contain;
}