/* ==========================================================
   AGIPEC PETS
   Página: /pets/
   Versão sem imagens externas
========================================================== */


/* ==========================================================
   01. BASE
========================================================== */

.agipec-pets {
    width: 100%;
    overflow-x: hidden;

    background:
        var(--color-bg, #f5f7fa);

    color:
        var(--color-text, #212529);
}


.pets-section {
    padding-top: 52px;
}


.pets-eyebrow {
    display: block;

    margin-bottom: 6px;

    color:
        var(--color-accent, #2d9515);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;
    line-height: 1.2;

    text-transform: uppercase;
}


/* ==========================================================
   02. HEADERS
========================================================== */

.pets-section-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 16px;
}


.pets-section-header h2 {
    margin: 0;

    color: #091c52;

    font-size:
        clamp(
            1.5rem,
            3vw,
            2rem
        );

    line-height: 1.15;
}


.pets-section-link {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    flex: 0 0 auto;

    color:
        var(--color-primary, #0036d5);

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}


.pets-section-link:hover {
    color:
        var(--color-primary-dark, #002ca8);
}


.pets-section-link svg {
    width: 15px;
    height: 15px;
}


/* ==========================================================
   03. HERO
========================================================== */

.pets-hero {
    padding:
        22px 0 4px;
}


.pets-hero-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(330px, .9fr);

    min-height: 490px;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #ffffff 0%,
            #f2f6ff 55%,
            #eef8eb 100%
        );

    border:
        1px solid
        var(--color-border, #e5eaf1);

    border-radius:
        24px;

    box-shadow:
        var(--shadow-sm);

    isolation: isolate;
}


.pets-hero-card::before {
    content: "";

    position: absolute;

    top: -220px;
    right: -170px;

    z-index: -1;

    width: 600px;
    height: 600px;

    background:
        rgba(0, 54, 213, .07);

    border-radius: 50%;
}


.pets-hero-card::after {
    content: "";

    position: absolute;

    bottom: -300px;
    right: 200px;

    z-index: -1;

    width: 500px;
    height: 500px;

    background:
        rgba(45, 149, 21, .07);

    border-radius: 50%;
}


/* ==========================================================
   04. HERO CONTENT
========================================================== */

.pets-hero-content {
    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        58px 30px
        58px 58px;
}


.pets-hero-content h1 {
    max-width: 690px;

    margin:
        0 0 18px;

    color: #071d58;

    font-size:
        clamp(
            2rem,
            4.5vw,
            3.5rem
        );

    font-weight: 700;

    letter-spacing: -.025em;

    line-height: 1.04;
}


.pets-hero-description {
    max-width: 650px;

    margin-bottom: 24px;

    color: #566176;

    font-size: 16px;

    line-height: 1.65;
}


/* ==========================================================
   05. BOTÕES
========================================================== */

.pets-hero-actions,
.pets-care-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.pets-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 47px;

    padding:
        10px 18px;

    border:
        1px solid transparent;

    border-radius: 11px;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        color var(--transition);
}


.pets-btn svg {
    width: 18px;
    height: 18px;
}


.pets-btn-primary {
    background:
        var(--color-primary, #0036d5);

    color:
        #ffffff !important;

    border-color:
        var(--color-primary, #0036d5);

    box-shadow:
        0 8px 20px
        rgba(0, 54, 213, .17);
}


.pets-btn-primary:hover {
    background:
        var(--color-primary-dark, #002ca8);

    color:
        #ffffff !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 11px 25px
        rgba(0, 54, 213, .23);
}


.pets-btn-secondary {
    background:
        #ffffff;

    color:
        var(--color-primary, #0036d5);

    border-color:
        #d9e1ee;
}


.pets-btn-secondary:hover {
    background:
        #f7f9fc;

    color:
        var(--color-primary-dark, #002ca8);

    border-color:
        rgba(0, 54, 213, .22);

    transform:
        translateY(-2px);
}


/* ==========================================================
   06. BENEFÍCIOS HERO
========================================================== */

.pets-hero-benefits {
    display: flex;

    flex-wrap: wrap;

    gap:
        10px 18px;

    margin-top: 24px;

    padding-top: 19px;

    border-top:
        1px solid
        rgba(16, 24, 40, .08);
}


.pets-hero-benefits span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #596579;

    font-size: 11px;
    font-weight: 600;
}


.pets-hero-benefits svg {
    width: 16px;
    height: 16px;

    stroke:
        var(--color-accent, #2d9515);
}


/* ==========================================================
   07. HERO VISUAL
========================================================== */

.pets-hero-visual {
    position: relative;

    min-height: 490px;

    overflow: hidden;
}


.pets-hero-main-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 170px;
    height: 170px;

    background:
        linear-gradient(
            145deg,
            var(--color-primary, #0036d5),
            var(--color-primary-dark, #002ca8)
        );

    color: #ffffff;

    border:
        12px solid
        rgba(255, 255, 255, .76);

    border-radius: 50%;

    box-shadow:
        0 22px 50px
        rgba(0, 54, 213, .22);

    transform:
        translate(-50%, -50%);
}


.pets-hero-main-icon svg {
    width: 74px;
    height: 74px;

    stroke-width: 1.5;
}


.pets-hero-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border:
        1px solid
        rgba(0, 54, 213, .13);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}


.pets-hero-orbit-one {
    width: 300px;
    height: 300px;
}


.pets-hero-orbit-two {
    width: 420px;
    height: 420px;

    border-color:
        rgba(45, 149, 21, .12);
}


.pets-hero-floating {
    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        11px 14px;

    background:
        rgba(255, 255, 255, .93);

    color:
        #10275d;

    border:
        1px solid
        rgba(0, 54, 213, .1);

    border-radius: 13px;

    box-shadow:
        0 10px 26px
        rgba(16, 24, 40, .11);

    backdrop-filter:
        blur(9px);

    -webkit-backdrop-filter:
        blur(9px);

    font-size: 12px;
    font-weight: 700;
}


.pets-hero-floating svg {
    width: 22px;
    height: 22px;

    stroke:
        var(--color-primary);
}


.pets-hero-dog {
    top: 90px;
    left: 35px;
}


.pets-hero-cat {
    right: 32px;
    bottom: 95px;
}


.pets-hero-heart {
    top: 110px;
    right: 45px;

    width: 48px;
    height: 48px;

    justify-content: center;

    padding: 0;

    color:
        var(--color-accent);
}


.pets-hero-heart svg {
    stroke:
        var(--color-accent);
}


/* ==========================================================
   08. AUDIENCE
========================================================== */

.pets-audience {
    padding-top: 42px;
}


.pets-audience-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 15px;
}


.pets-audience-card {
    position: relative;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 18px;

    min-height: 170px;

    padding: 25px;

    overflow: hidden;

    background: #ffffff;

    color:
        var(--color-text);

    border:
        1px solid
        var(--color-border);

    border-radius: 18px;

    box-shadow:
        var(--shadow-xs);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.pets-audience-card::after {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -80px;

    width: 170px;
    height: 170px;

    background:
        rgba(0, 54, 213, .035);

    border-radius: 50%;
}


.pets-audience-cat::after {
    background:
        rgba(45, 149, 21, .045);
}


.pets-audience-card:hover {
    color:
        var(--color-text);

    transform:
        translateY(-3px);

    border-color:
        rgba(0, 54, 213, .18);

    box-shadow:
        var(--shadow-md);
}


.pets-audience-icon {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 68px;

    width: 68px;
    height: 68px;

    background:
        rgba(0, 54, 213, .075);

    color:
        var(--color-primary);

    border-radius: 18px;
}


.pets-audience-cat
.pets-audience-icon {
    background:
        rgba(45, 149, 21, .08);

    color:
        var(--color-accent);
}


.pets-audience-icon svg {
    width: 34px;
    height: 34px;

    stroke-width: 1.7;
}


.pets-audience-content {
    position: relative;

    z-index: 2;
}


.pets-audience-content > span {
    display: block;

    margin-bottom: 2px;

    color:
        var(--color-text-muted);

    font-size: 10px;
    font-weight: 600;
}


.pets-audience-content strong {
    display: block;

    margin-bottom: 6px;

    color: #091c52;

    font-size: 24px;

    line-height: 1.1;
}


.pets-audience-content small {
    display: block;

    max-width: 440px;

    color:
        var(--color-text-secondary);

    font-size: 11px;

    line-height: 1.5;
}


.pets-audience-action {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color:
        var(--color-primary);

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;
}


.pets-audience-action svg {
    width: 15px;
    height: 15px;
}


/* ==========================================================
   09. CATEGORIAS
========================================================== */

.pets-category-grid {
    display: grid;

    grid-template-columns:
        repeat(
            6,
            minmax(0, 1fr)
        );

    gap: 11px;
}


.pets-category-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    min-height: 188px;

    padding: 19px;

    background: #ffffff;

    color:
        var(--color-text);

    border:
        1px solid
        var(--color-border);

    border-radius: 15px;

    box-shadow:
        var(--shadow-xs);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.pets-category-card:hover {
    color:
        var(--color-text);

    transform:
        translateY(-3px);

    border-color:
        rgba(0, 54, 213, .2);

    box-shadow:
        var(--shadow-md);
}


.pets-category-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 17px;

    background:
        rgba(0, 54, 213, .07);

    color:
        var(--color-primary);

    border-radius: 11px;
}


.pets-category-icon svg {
    width: 21px;
    height: 21px;
}


.pets-category-card strong {
    display: block;

    margin-bottom: 7px;

    padding-right: 11px;

    color: #14224b;

    font-size: 13px;

    line-height: 1.3;
}


.pets-category-card small {
    display: block;

    color:
        var(--color-text-secondary);

    font-size: 10px;

    line-height: 1.45;
}


.pets-category-arrow {
    position: absolute;

    top: 17px;
    right: 16px;

    color: #a5adbb;
}


.pets-category-arrow svg {
    width: 15px;
    height: 15px;
}


/* ==========================================================
   10. PRODUTOS
========================================================== */

.pets-product-section {
    overflow: hidden;
}


.pets-products-carousel {
    width: 100%;
}


.pets-products-carousel
.woocommerce {
    width: 100%;
}


.pets-products-carousel
.woocommerce ul.products {
    display: flex !important;

    flex-wrap: nowrap !important;

    gap: 12px;

    width: 100%;

    margin:
        0 !important;

    padding:
        4px 2px 13px !important;

    overflow-x:
        auto !important;

    overflow-y:
        hidden !important;

    scroll-behavior: smooth;

    scroll-snap-type:
        x mandatory;

    overscroll-behavior-inline:
        contain;

    scrollbar-width: none;

    -webkit-overflow-scrolling:
        touch;
}


.pets-products-carousel
.woocommerce ul.products::-webkit-scrollbar {
    display: none;
}


.pets-products-carousel
.woocommerce ul.products
li.product {
    flex:
        0 0 238px;

    width:
        238px !important;

    margin:
        0 !important;

    scroll-snap-align:
        start;
}


/* ==========================================================
   11. CARE
========================================================== */

.pets-care {
    padding-top: 54px;
}


.pets-care-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(280px, .85fr);

    align-items: center;

    min-height: 330px;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #edf3ff 0%,
            #f7fafc 50%,
            #edf8ea 100%
        );

    border:
        1px solid
        var(--color-border);

    border-radius: 21px;
}


.pets-care-content {
    padding:
        42px 30px
        42px 44px;
}


.pets-care-content h2 {
    max-width: 650px;

    margin:
        0 0 14px;

    color: #091c52;

    font-size:
        clamp(
            1.65rem,
            3vw,
            2.35rem
        );

    line-height: 1.12;
}


.pets-care-content p {
    max-width: 620px;

    margin-bottom: 19px;

    color: #5c687b;

    font-size: 14px;

    line-height: 1.65;
}


.pets-care-icons {
    position: relative;

    min-height: 330px;
}


.pets-care-main-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 130px;
    height: 130px;

    background:
        var(--color-primary);

    color: #ffffff;

    border:
        10px solid
        rgba(255, 255, 255, .75);

    border-radius: 50%;

    box-shadow:
        0 15px 36px
        rgba(0, 54, 213, .19);

    transform:
        translate(-50%, -50%);
}


.pets-care-main-icon svg {
    width: 54px;
    height: 54px;
}


.pets-care-icons > span {
    position: absolute;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    background: #ffffff;

    color:
        var(--color-accent);

    border:
        1px solid
        var(--color-border);

    border-radius: 13px;

    box-shadow:
        var(--shadow-sm);
}


.pets-care-icons > span svg {
    width: 24px;
    height: 24px;
}


.pets-care-icons > span:nth-child(2) {
    top: 58px;
    left: 60px;
}


.pets-care-icons > span:nth-child(3) {
    top: 76px;
    right: 65px;
}


.pets-care-icons > span:nth-child(4) {
    right: 105px;
    bottom: 48px;
}


/* ==========================================================
   12. NECESSIDADES
========================================================== */

.pets-needs-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 11px;
}


.pets-need-card {
    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 13px;

    min-height: 94px;

    padding:
        16px 17px;

    background: #ffffff;

    color:
        var(--color-text);

    border:
        1px solid
        var(--color-border);

    border-radius: 14px;

    box-shadow:
        var(--shadow-xs);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.pets-need-card:hover {
    color:
        var(--color-text);

    transform:
        translateY(-2px);

    border-color:
        rgba(0, 54, 213, .18);

    box-shadow:
        var(--shadow-sm);
}


.pets-need-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background:
        rgba(45, 149, 21, .08);

    color:
        var(--color-accent);

    border-radius: 11px;
}


.pets-need-icon svg {
    width: 22px;
    height: 22px;
}


.pets-need-card strong {
    display: block;

    margin-bottom: 3px;

    color: #14224b;

    font-size: 12px;
}


.pets-need-card small {
    display: block;

    color:
        var(--color-text-secondary);

    font-size: 10px;

    line-height: 1.4;
}


.pets-need-arrow {
    width: 17px;
    height: 17px;

    stroke: #a7afbd;
}


/* ==========================================================
   13. BENEFÍCIOS
========================================================== */

.pets-benefits {
    padding-top: 54px;
}


.pets-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 11px;
}


.pets-benefit-card {
    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 86px;

    padding: 14px;

    background: #ffffff;

    color:
        var(--color-text);

    border:
        1px solid
        var(--color-border);

    border-radius: 14px;

    box-shadow:
        var(--shadow-xs);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.pets-benefit-card:hover {
    color:
        var(--color-text);

    transform:
        translateY(-2px);

    border-color:
        rgba(0, 54, 213, .18);

    box-shadow:
        var(--shadow-sm);
}


.pets-benefit-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex:
        0 0 40px;

    width: 40px;
    height: 40px;

    background:
        rgba(0, 54, 213, .07);

    color:
        var(--color-primary);

    border-radius: 10px;
}


.pets-benefit-icon svg {
    width: 20px;
    height: 20px;
}


.pets-benefit-card strong {
    display: block;

    margin-bottom: 3px;

    color: #14224b;

    font-size: 12px;
}


.pets-benefit-card small {
    display: block;

    color:
        var(--color-text-secondary);

    font-size: 9px;

    line-height: 1.35;
}


/* ==========================================================
   14. SEO
========================================================== */

.pets-seo {
    padding:
        54px 0 20px;
}


.pets-seo-card {
    display: grid;

    grid-template-columns:
        minmax(280px, .65fr)
        minmax(0, 1.35fr);

    gap: 46px;

    padding:
        34px 38px;

    background: #ffffff;

    border:
        1px solid
        var(--color-border);

    border-radius: 17px;

    box-shadow:
        var(--shadow-xs);
}


.pets-seo-heading h2 {
    margin: 0;

    color: #091c52;

    font-size:
        clamp(
            1.4rem,
            2.8vw,
            1.95rem
        );

    line-height: 1.2;
}


.pets-seo-content p {
    margin-bottom: 11px;

    color: #515d71;

    font-size: 13px;

    line-height: 1.75;
}


.pets-seo-content p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   15. DESKTOP MÉDIO
========================================================== */

@media (max-width: 1199px) {

    .pets-category-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }


    .pets-hero-card {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, .75fr);
    }

}


/* ==========================================================
   16. TABLET
========================================================== */

@media (max-width: 991px) {

    .pets-hero-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .pets-hero-content {
        padding:
            40px 34px
            15px;
    }


    .pets-hero-visual {
        min-height: 330px;
    }


    .pets-audience-grid {
        grid-template-columns: 1fr;
    }


    .pets-care-card {
        grid-template-columns: 1fr;
    }


    .pets-care-content {
        padding:
            34px 30px
            12px;
    }


    .pets-care-icons {
        min-height: 260px;
    }


    .pets-benefits-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .pets-seo-card {
        grid-template-columns: 1fr;

        gap: 18px;
    }

}


/* ==========================================================
   17. MOBILE
========================================================== */

@media (max-width: 767px) {

    .pets-section {
        padding-top: 36px;
    }


    /* HERO */

    .pets-hero {
        padding:
            13px 0 0;
    }


    .pets-hero-card {
        border-radius: 17px;
    }


    .pets-hero-content {
        padding:
            29px 21px
            14px;
    }


    .pets-hero-content h1 {
        margin-bottom: 12px;

        font-size:
            clamp(
                1.75rem,
                8vw,
                2.35rem
            );
    }


    .pets-hero-description {
        margin-bottom: 17px;

        font-size: 13px;

        line-height: 1.55;
    }


    .pets-hero-actions {
        display: grid;

        grid-template-columns: 1fr;
    }


    .pets-btn {
        width: 100%;

        min-height: 44px;

        font-size: 11px;
    }


    .pets-hero-benefits {
        display: grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 9px;

        margin-top: 17px;

        padding-top: 15px;
    }


    .pets-hero-benefits span {
        font-size: 9px;
    }


    .pets-hero-visual {
        min-height: 285px;
    }


    .pets-hero-main-icon {
        width: 120px;
        height: 120px;

        border-width: 8px;
    }


    .pets-hero-main-icon svg {
        width: 52px;
        height: 52px;
    }


    .pets-hero-orbit-one {
        width: 210px;
        height: 210px;
    }


    .pets-hero-orbit-two {
        width: 280px;
        height: 280px;
    }


    .pets-hero-floating {
        padding:
            8px 10px;

        font-size: 9px;

        border-radius: 10px;
    }


    .pets-hero-floating svg {
        width: 17px;
        height: 17px;
    }


    .pets-hero-dog {
        top: 45px;
        left: 20px;
    }


    .pets-hero-cat {
        right: 18px;
        bottom: 43px;
    }


    .pets-hero-heart {
        top: 48px;
        right: 25px;

        width: 38px;
        height: 38px;
    }


    /* HEADERS */

    .pets-section-header {
        align-items: center;

        gap: 8px;

        margin-bottom: 11px;
    }


    .pets-section-header h2 {
        font-size: 19px;
    }


    .pets-section-link {
        font-size: 9px;
    }


    .pets-eyebrow {
        margin-bottom: 3px;

        font-size: 8px;
    }


    /* AUDIENCE */

    .pets-audience {
        padding-top: 32px;
    }


    .pets-audience-grid {
        gap: 8px;
    }


    .pets-audience-card {
        grid-template-columns:
            auto
            minmax(0, 1fr);

        gap: 12px;

        min-height: auto;

        padding: 15px;

        border-radius: 13px;
    }


    .pets-audience-icon {
        flex-basis: 46px;

        width: 46px;
        height: 46px;

        border-radius: 11px;
    }


    .pets-audience-icon svg {
        width: 24px;
        height: 24px;
    }


    .pets-audience-content strong {
        margin-bottom: 4px;

        font-size: 19px;
    }


    .pets-audience-content small {
        font-size: 9px;
    }


    .pets-audience-action {
        grid-column:
            2 / 3;

        font-size: 9px;
    }


    /* CATEGORIAS */

    .pets-category-grid {
        display: flex;

        gap: 9px;

        width:
            calc(100% + 24px);

        margin-inline:
            -12px;

        padding:
            2px 12px 10px;

        overflow-x: auto;

        scroll-snap-type:
            x mandatory;

        scrollbar-width: none;

        -webkit-overflow-scrolling:
            touch;
    }


    .pets-category-grid::-webkit-scrollbar {
        display: none;
    }


    .pets-category-card {
        flex:
            0 0 158px;

        min-height: 168px;

        padding: 15px;

        border-radius: 13px;

        scroll-snap-align: start;
    }


    .pets-category-icon {
        width: 36px;
        height: 36px;

        margin-bottom: 13px;
    }


    .pets-category-card strong {
        font-size: 11px;
    }


    .pets-category-card small {
        font-size: 9px;
    }


    /* PRODUTOS */

    .pets-products-carousel {
        width:
            calc(100% + 24px);

        margin-inline:
            -12px;
    }


    .pets-products-carousel
    .woocommerce ul.products {
        gap: 9px;

        padding:
            2px 12px 11px !important;
    }


    .pets-products-carousel
    .woocommerce ul.products
    li.product {
        flex:
            0 0 182px;

        width:
            182px !important;
    }


    /* CARE */

    .pets-care {
        padding-top: 38px;
    }


    .pets-care-card {
        border-radius: 15px;
    }


    .pets-care-content {
        padding:
            25px 20px
            5px;
    }


    .pets-care-content h2 {
        font-size: 22px;
    }


    .pets-care-content p {
        font-size: 12px;
    }


    .pets-care-actions {
        display: grid;

        grid-template-columns: 1fr;
    }


    .pets-care-icons {
        min-height: 220px;
    }


    .pets-care-main-icon {
        width: 95px;
        height: 95px;

        border-width: 7px;
    }


    .pets-care-main-icon svg {
        width: 40px;
        height: 40px;
    }


    .pets-care-icons > span {
        width: 40px;
        height: 40px;
    }


    .pets-care-icons > span:nth-child(2) {
        top: 40px;
        left: 42px;
    }


    .pets-care-icons > span:nth-child(3) {
        top: 48px;
        right: 45px;
    }


    .pets-care-icons > span:nth-child(4) {
        right: 65px;
        bottom: 35px;
    }


    /* NECESSIDADES */

    .pets-needs-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .pets-need-card {
        min-height: 82px;

        padding: 12px;

        border-radius: 12px;
    }


    .pets-need-icon {
        width: 38px;
        height: 38px;
    }


    .pets-need-card strong {
        font-size: 11px;
    }


    .pets-need-card small {
        font-size: 9px;
    }


    /* BENEFÍCIOS */

    .pets-benefits {
        padding-top: 38px;
    }


    .pets-benefits-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 8px;
    }


    .pets-benefit-card {
        align-items: flex-start;

        min-height: 103px;

        padding: 11px;

        border-radius: 12px;
    }


    .pets-benefit-icon {
        flex:
            0 0 34px;

        width: 34px;
        height: 34px;

        border-radius: 8px;
    }


    .pets-benefit-icon svg {
        width: 17px;
        height: 17px;
    }


    .pets-benefit-card strong {
        font-size: 10px;
    }


    .pets-benefit-card small {
        font-size: 8px;
    }


    /* SEO */

    .pets-seo {
        padding-top: 38px;
    }


    .pets-seo-card {
        gap: 14px;

        padding:
            22px 19px;

        border-radius: 14px;
    }


    .pets-seo-content p {
        font-size: 12px;

        line-height: 1.65;
    }

}


/* ==========================================================
   18. MOBILE PEQUENO
========================================================== */

@media (max-width: 420px) {

    .pets-products-carousel
    .woocommerce ul.products
    li.product {
        flex:
            0 0 170px;

        width:
            170px !important;
    }


    .pets-hero-benefits {
        grid-template-columns: 1fr 1fr;
    }

}


/* ==========================================================
   19. ACESSIBILIDADE
========================================================== */

.agipec-pets a:focus-visible {
    outline:
        3px solid
        rgba(0, 54, 213, .28);

    outline-offset: 3px;
}


/* ==========================================================
   20. REDUÇÃO DE MOVIMENTO
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .agipec-pets *,
    .agipec-pets *::before,
    .agipec-pets *::after {
        scroll-behavior:
            auto !important;

        transition-duration:
            .01ms !important;

        animation-duration:
            .01ms !important;
    }

}