/* =========================================================
   EQUISTRO - AGIPEC
   Landing Page
========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

.equistro-page {

    --eq-primary: #102a43;
    --eq-primary-dark: #081b2b;
    --eq-primary-light: #1d4667;

    --eq-accent: #c6a15b;
    --eq-accent-dark: #a98643;

    --eq-green: #26855f;

    --eq-bg: #ffffff;
    --eq-bg-soft: #f5f7f9;
    --eq-bg-blue: #eef4f8;

    --eq-text: #17212b;
    --eq-text-soft: #667482;

    --eq-border: #dce3e8;

    --eq-danger: #b94040;

    --eq-radius-sm: 10px;
    --eq-radius: 16px;
    --eq-radius-lg: 24px;

    --eq-shadow:
        0 10px 35px rgba(16, 42, 67, .08);

    --eq-shadow-hover:
        0 18px 45px rgba(16, 42, 67, .14);

    color: var(--eq-text);
    background: var(--eq-bg);

}


/* =========================================================
   RESET LOCAL
========================================================= */

.equistro-page *,
.equistro-page *::before,
.equistro-page *::after {
    box-sizing: border-box;
}


.equistro-page img {
    max-width: 100%;
    height: auto;
}


.equistro-page button,
.equistro-page a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTAINER
========================================================= */

.equistro-container {

    width: min(
        100% - 40px,
        1240px
    );

    margin-inline: auto;

}


/* =========================================================
   HERO
========================================================= */

.equistro-hero {

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(198, 161, 91, .18),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #071a29 0%,
            #102a43 52%,
            #173d5d 100%
        );

    color: #fff;

}


.equistro-hero::after {

    content: "";

    position: absolute;

    right: -150px;
    bottom: -270px;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.08);

}


.equistro-hero-grid {

    min-height: 520px;

    display: grid;

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

    align-items: center;

    gap: 70px;

    padding:
        80px 0;

}


.equistro-hero-content {

    position: relative;

    z-index: 2;

}


.equistro-eyebrow {

    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;

    padding:
        7px 12px;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 999px;

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

    color:
        #f1d99e;

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

    letter-spacing: .11em;

    text-transform: uppercase;

}


.equistro-hero h1 {

    max-width: 760px;

    margin:
        0 0 20px;

    color: #fff;

    font-size:
        clamp(42px, 5vw, 68px);

    font-weight: 750;

    line-height: 1.04;

    letter-spacing: -.035em;

}


.equistro-hero-subtitle {

    max-width: 680px;

    margin:
        0 0 32px;

    color:
        rgba(255,255,255,.78);

    font-size: 18px;

    line-height: 1.7;

}


.equistro-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.equistro-hero-visual {

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    z-index: 2;

}


.equistro-hero-card {

    width:
        min(100%, 390px);

    min-height: 350px;

    padding: 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.035)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.24);

    backdrop-filter:
        blur(8px);

}


.equistro-hero-card > span {

    margin-bottom: 18px;

    color: var(--eq-accent);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .25em;

}


.equistro-hero-card strong {

    position: relative;

    z-index: 2;

    color: #fff;

    font-size: 34px;

    line-height: 1.16;

}


.equistro-hero-horse {

    width: 170px;
    height: 170px;

    position: absolute;

    right: -25px;
    bottom: -35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(198,161,91,.15);

}


.equistro-hero-horse svg {

    width: 75px;
    height: 75px;

    color:
        rgba(255,255,255,.38);

}


/* =========================================================
   BOTÕES
========================================================= */

.equistro-btn {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        12px 22px;

    border:
        1px solid transparent;

    border-radius: 12px;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;

}


.equistro-btn svg {

    width: 18px;
    height: 18px;

}


.equistro-btn:hover {

    transform:
        translateY(-2px);

}


.equistro-btn-primary {

    color: #102a43 !important;

    background:
        var(--eq-accent);

    box-shadow:
        0 10px 25px
        rgba(198,161,91,.20);

}


.equistro-btn-primary:hover {

    color: #081b2b !important;

    background:
        #d3b36f;

}


.equistro-btn-secondary {

    color: #fff !important;

    border-color:
        rgba(255,255,255,.22);

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

}


.equistro-btn-secondary:hover {

    color: #fff !important;

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

}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.equistro-benefits {

    position: relative;

    z-index: 5;

    border-bottom:
        1px solid var(--eq-border);

    background:
        #fff;

}


.equistro-benefits-grid {

    display: grid;

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

}


.equistro-benefit {

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        22px 20px;

    border-right:
        1px solid var(--eq-border);

}


.equistro-benefit:last-child {
    border-right: 0;
}


.equistro-benefit > svg {

    flex: 0 0 auto;

    width: 28px;
    height: 28px;

    color:
        var(--eq-primary);

    stroke-width: 1.7;

}


.equistro-benefit strong {

    display: block;

    margin-bottom: 3px;

    color:
        var(--eq-text);

    font-size: 14px;

}


.equistro-benefit span {

    color:
        var(--eq-text-soft);

    font-size: 12px;

}


/* =========================================================
   SEÇÕES
========================================================= */

.equistro-section {

    padding:
        85px 0;

}


.equistro-section-header {

    max-width: 720px;

    margin:
        0 auto 42px;

    text-align: center;

}


.equistro-section-eyebrow {

    display: block;

    margin-bottom: 10px;

    color:
        var(--eq-accent-dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.equistro-section-header h2 {

    margin:
        0 0 14px;

    color:
        var(--eq-primary);

    font-size:
        clamp(29px, 3.5vw, 42px);

    line-height: 1.14;

    letter-spacing: -.025em;

}


.equistro-section-header p {

    margin: 0;

    color:
        var(--eq-text-soft);

    font-size: 16px;

    line-height: 1.7;

}


/* =========================================================
   NECESSIDADES
========================================================= */

.equistro-needs-section {

    background:
        var(--eq-bg-soft);

}


.equistro-needs {

    display: grid;

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

    gap: 12px;

}


.equistro-need {

    min-width: 0;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: space-between;

    gap: 18px;

    padding:
        20px;

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

    border-radius:
        var(--eq-radius);

    background:
        #fff;

    color:
        var(--eq-text);

    text-align: left;

    cursor: pointer;

    box-shadow:
        0 4px 15px
        rgba(20,43,61,.025);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;

}


.equistro-need:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(16,42,67,.30);

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

}


.equistro-need.is-active {

    border-color:
        var(--eq-primary);

    background:
        var(--eq-primary);

    color: #fff;

}


.equistro-need-icon {

    width: 44px;
    height: 44px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        var(--eq-bg-blue);

    color:
        var(--eq-primary);

}


.equistro-need.is-active
.equistro-need-icon {

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

    color:
        var(--eq-accent);

}


.equistro-need-icon svg {

    width: 22px;
    height: 22px;

}


.equistro-need strong {

    display: block;

    margin-bottom: 4px;

    font-size: 13px;

    line-height: 1.3;

}


.equistro-need small {

    display: block;

    color:
        var(--eq-text-soft);

    font-size: 11px;

    line-height: 1.3;

}


.equistro-need.is-active small {

    color:
        rgba(255,255,255,.65);

}


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

.equistro-products-section {

    background: #fff;

}


.equistro-products-grid {

    display: grid;

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

    gap: 20px;

}


.equistro-product-card {

    min-width: 0;

    overflow: hidden;

    display: flex;

    flex-direction: column;

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

    border-radius:
        var(--eq-radius-lg);

    background: #fff;

    box-shadow:
        0 4px 18px
        rgba(16,42,67,.04);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.equistro-product-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(16,42,67,.20);

    box-shadow:
        var(--eq-shadow-hover);

}


.equistro-product-card[hidden] {
    display: none !important;
}


/* =========================================================
   IMAGEM PRODUTO
========================================================= */

.equistro-product-image {

    min-height: 280px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        25px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #fafbfc 0%,
            #f5f7f9 100%
        );

}


.equistro-product-image img {

    width: 100%;

    max-width: 230px;

    max-height: 235px;

    object-fit: contain;

    transition:
        transform .3s ease;

}


.equistro-product-card:hover
.equistro-product-image img {

    transform:
        scale(1.035);

}


.equistro-product-sale,
.equistro-product-stock-badge {

    position: absolute;

    z-index: 3;

    top: 15px;

    padding:
        6px 10px;

    border-radius: 999px;

    font-size: 10px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;

}


.equistro-product-sale {

    left: 15px;

    color:
        #fff;

    background:
        var(--eq-green);

}


.equistro-product-stock-badge {

    right: 15px;

    color:
        #fff;

    background:
        var(--eq-danger);

}


/* =========================================================
   PRODUTO BODY
========================================================= */

.equistro-product-body {

    flex: 1;

    display: flex;

    flex-direction: column;

    padding:
        20px 20px 22px;

}


.equistro-product-category {

    display: inline-block;

    align-self: flex-start;

    margin-bottom: 9px;

    padding:
        5px 8px;

    border-radius: 6px;

    color:
        var(--eq-primary-light);

    background:
        var(--eq-bg-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .07em;

    text-transform: uppercase;

}


.equistro-product-title {

    margin:
        0 0 10px;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;

}


.equistro-product-title a {

    color:
        var(--eq-text);

    text-decoration:
        none;

}


.equistro-product-title a:hover {

    color:
        var(--eq-primary-light);

}


.equistro-product-rating {

    min-height: 20px;

    margin-bottom: 8px;

}


.equistro-product-rating
.star-rating {

    float: none;

    margin: 0;

    font-size: 12px;

}


.equistro-product-price {

    margin:
        auto 0 10px;

    padding-top:
        7px;

    color:
        var(--eq-primary);

    font-size: 20px;

    font-weight: 800;

}


.equistro-product-price del {

    display: block;

    margin-bottom: 2px;

    color:
        #8b969e;

    font-size: 12px;

    font-weight: 500;

}


.equistro-product-price ins {

    text-decoration: none;

}


.equistro-stock {

    display: inline-flex;

    align-items: center;

    gap: 4px;

    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

}


.equistro-stock svg {

    width: 14px;
    height: 14px;

}


.equistro-stock-in {

    color:
        var(--eq-green);

}


.equistro-stock-out {

    color:
        var(--eq-danger);

}


/* =========================================================
   BOTÃO PRODUTO
========================================================= */

.equistro-product-actions {

    margin-top:
        auto;

}


.equistro-product-button {

    width: 100%;

    min-height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding:
        10px 15px;

    border-radius: 10px;

    color: #fff !important;

    background:
        var(--eq-primary);

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 700;

    transition:
        background-color .2s ease;

}


.equistro-product-button:hover {

    color: #fff !important;

    background:
        var(--eq-primary-light);

}


.equistro-product-button svg {

    width: 16px;
    height: 16px;

}


/* =========================================================
   VAZIO
========================================================= */

.equistro-empty-filter,
.equistro-no-products {

    max-width: 620px;

    margin:
        25px auto 0;

    padding:
        40px;

    border:
        1px dashed var(--eq-border);

    border-radius:
        var(--eq-radius);

    background:
        var(--eq-bg-soft);

    text-align: center;

}


.equistro-empty-filter svg,
.equistro-no-products svg {

    width: 36px;
    height: 36px;

    margin-bottom: 10px;

    color:
        var(--eq-text-soft);

}


.equistro-empty-filter strong {

    display: block;

    margin-bottom: 15px;

}


.equistro-empty-filter button {

    border: 0;

    padding: 0;

    background: transparent;

    color:
        var(--eq-primary);

    font-weight: 700;

    cursor: pointer;

    text-decoration: underline;

}


/* =========================================================
   SOBRE
========================================================= */

.equistro-about {

    background:
        var(--eq-bg-blue);

}


.equistro-about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, .8fr);

    gap:
        70px;

    align-items: center;

}


.equistro-about-content h2 {

    max-width: 700px;

    margin:
        0 0 20px;

    color:
        var(--eq-primary);

    font-size:
        clamp(30px, 3.5vw, 44px);

    line-height: 1.15;

}


.equistro-about-content > p {

    color:
        var(--eq-text-soft);

    font-size: 16px;

    line-height: 1.75;

}


.equistro-about-alert {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 25px;

    padding:
        16px 18px;

    border:
        1px solid rgba(16,42,67,.10);

    border-radius: 12px;

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

}


.equistro-about-alert svg {

    flex: 0 0 auto;

    width: 20px;
    height: 20px;

    color:
        var(--eq-primary);

}


.equistro-about-alert p {

    margin: 0;

    color:
        var(--eq-text-soft);

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   PAINEL SOBRE
========================================================= */

.equistro-about-panel {

    padding:
        42px;

    border-radius:
        var(--eq-radius-lg);

    background:
        var(--eq-primary);

    color: #fff;

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

}


.equistro-about-panel > span {

    color:
        var(--eq-accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;

}


.equistro-about-panel h3 {

    margin:
        13px 0 15px;

    color: #fff;

    font-size: 28px;

    line-height: 1.2;

}


.equistro-about-panel p {

    margin:
        0 0 25px;

    color:
        rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   GUIA
========================================================= */

.equistro-guide-section {

    background:
        #fff;

}


.equistro-guide {

    max-width: 900px;

    margin: auto;

    overflow: hidden;

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

    border-radius:
        var(--eq-radius-lg);

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

}


.equistro-guide-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        20px 24px;

    border-bottom:
        1px solid var(--eq-border);

    background: #fff;

}


.equistro-guide-row:last-child {
    border-bottom: 0;
}


.equistro-guide-row strong {

    display: block;

    margin-bottom: 4px;

    color:
        var(--eq-primary);

    font-size: 15px;

}


.equistro-guide-row span {

    color:
        var(--eq-text-soft);

    font-size: 12px;

}


.equistro-guide-row button {

    flex: 0 0 auto;

    padding:
        8px 13px;

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

    border-radius: 8px;

    background:
        var(--eq-bg-soft);

    color:
        var(--eq-primary);

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

}


.equistro-guide-row button:hover {

    border-color:
        var(--eq-primary);

    background:
        var(--eq-primary);

    color: #fff;

}


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

.equistro-final-cta {

    padding:
        0 0 80px;

    background:
        #fff;

}


.equistro-final-cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        50px;

    border-radius:
        26px;

    background:
        linear-gradient(
            120deg,
            #081b2b,
            #102a43
        );

    color: #fff;

}


.equistro-final-cta-box span {

    color:
        var(--eq-accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.equistro-final-cta-box h2 {

    max-width: 680px;

    margin:
        10px 0;

    color: #fff;

    font-size:
        clamp(26px, 3vw, 38px);

    line-height: 1.18;

}


.equistro-final-cta-box p {

    margin: 0;

    color:
        rgba(255,255,255,.68);

}


.equistro-final-actions {

    flex: 0 0 auto;

    display: flex;

    gap: 10px;

}


.equistro-btn-light {

    color:
        var(--eq-primary) !important;

    background: #fff;

}


.equistro-btn-outline-light {

    color: #fff !important;

    border-color:
        rgba(255,255,255,.25);

    background: transparent;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .equistro-needs {

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

    }


    .equistro-products-grid {

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

    }

}


/* =========================================================
   TABLET PEQUENO
========================================================= */

@media (max-width: 900px) {

    .equistro-hero-grid {

        min-height: auto;

        grid-template-columns:
            1fr;

        gap: 40px;

        padding:
            65px 0;

    }


    .equistro-hero-visual {

        display: none;

    }


    .equistro-benefits-grid {

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

    }


    .equistro-benefit:nth-child(2) {

        border-right: 0;

    }


    .equistro-benefit:nth-child(-n + 2) {

        border-bottom:
            1px solid var(--eq-border);

    }


    .equistro-products-grid {

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

    }


    .equistro-about-grid {

        grid-template-columns:
            1fr;

        gap: 35px;

    }


    .equistro-final-cta-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .equistro-final-actions {

        flex-wrap: wrap;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .equistro-container {

        width:
            min(
                100% - 28px,
                1240px
            );

    }


    /* HERO */

    .equistro-hero-grid {

        padding:
            52px 0;

    }


    .equistro-hero h1 {

        font-size:
            clamp(37px, 11vw, 50px);

    }


    .equistro-hero-subtitle {

        font-size: 15px;

        line-height: 1.65;

    }


    .equistro-hero-actions {

        display: grid;

        grid-template-columns:
            1fr;

    }


    .equistro-btn {

        width: 100%;

    }


    /* SEÇÃO */

    .equistro-section {

        padding:
            60px 0;

    }


    .equistro-section-header {

        margin-bottom:
            30px;

    }


    .equistro-section-header h2 {

        font-size: 30px;

    }


    .equistro-section-header p {

        font-size: 14px;

    }


    /* NECESSIDADES */

    .equistro-needs {

        display: flex;

        overflow-x: auto;

        gap: 10px;

        margin-right: -14px;

        padding:
            2px 14px 12px 0;

        scroll-snap-type:
            x proximity;

        scrollbar-width: none;

    }


    .equistro-needs::-webkit-scrollbar {

        display: none;

    }


    .equistro-need {

        flex:
            0 0 150px;

        min-height: 130px;

        scroll-snap-align: start;

    }


    /* PRODUTOS */

    .equistro-products-grid {

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

        gap: 12px;

    }


    .equistro-product-image {

        min-height: 190px;

        padding: 16px;

    }


    .equistro-product-image img {

        max-height: 165px;

    }


    .equistro-product-body {

        padding:
            14px;

    }


    .equistro-product-title {

        font-size: 14px;

    }


    .equistro-product-price {

        font-size: 17px;

    }


    .equistro-product-button {

        font-size: 11px;

    }


    /* SOBRE */

    .equistro-about-panel {

        padding:
            28px;

    }


    .equistro-about-panel h3 {

        font-size: 24px;

    }


    /* GUIA */

    .equistro-guide-row {

        padding:
            17px;

    }


    /* CTA */

    .equistro-final-cta {

        padding-bottom:
            55px;

    }


    .equistro-final-cta-box {

        padding:
            30px 24px;

    }


    .equistro-final-actions {

        width: 100%;

    }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {

    .equistro-benefit {

        padding:
            17px 12px;

    }


    .equistro-benefit > svg {

        width: 23px;
        height: 23px;

    }


    .equistro-benefit strong {

        font-size: 12px;

    }


    .equistro-benefit span {

        font-size: 10px;

    }


    .equistro-product-image {

        min-height: 170px;

    }


    .equistro-product-image img {

        max-height: 145px;

    }


    .equistro-product-category {

        font-size: 8px;

    }


    .equistro-product-title {

        font-size: 13px;

    }


    .equistro-product-price {

        font-size: 16px;

    }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

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

    .equistro-page *,
    .equistro-page *::before,
    .equistro-page *::after {

        scroll-behavior: auto !important;

        transition: none !important;

        animation: none !important;

    }

}