:root {
    --azul: #021f41;
    --azul2: #062f62;
    --azul3: #001329;
    --dorado: #ecc440;
    --dorado2: #ffdf5a;
    --blanco: #f8fafc;
    --verde: #0bb12f;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--blanco);
    background:
        radial-gradient(circle at top center, #0b3b73 0%, #021f41 38%, #000815 100%);
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 18px;
}

.header {
    text-align: center;
    padding: 18px 0 16px;
}

.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.logo-circle {
    width: 170px;
    height: 170px;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: clamp(38px, 6.8vw, 74px);
    line-height: .88;
    font-weight: 900;
    background: linear-gradient(180deg, #fff8c6 0%, #ffe27a 25%, #ecc440 55%, #c89318 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 0 rgba(0,0,0,.35), 0 0 18px rgba(255,218,80,.25);
    letter-spacing: 1px;
}

.slogan {
    color: var(--dorado2);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 2px;
}

.gold-line {
    height: 28px;
    position: relative;
    margin: 2px 0 12px;
}

.gold-line:before,
.gold-line:after {
    content: "";
    position: absolute;
    top: 14px;
    width: 45%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dorado), transparent);
}

.gold-line:before { left: 0; }
.gold-line:after { right: 0; }

.gold-star {
    color: var(--dorado);
    font-size: 26px;
    line-height: 28px;
}

.title {
    margin: 0;
    font-size: clamp(25px, 4vw, 38px);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 4px 0 rgba(0,0,0,.35);
}

.subtitle {
    margin-top: 8px;
    font-size: 20px;
    color: rgba(255,255,255,.88);
}

.section-title {
    margin: 22px 0 14px;
    text-align: center;
    color: var(--dorado);
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 3px 0 rgba(0,0,0,.35);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.feature-card {
    min-height: 315px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.35);
    background: linear-gradient(180deg, rgba(8,56,106,.78), rgba(0,18,42,.98));
    box-shadow: 0 12px 24px rgba(0,0,0,.35);
    padding: 18px 18px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.feature-name {
    font-size: 24px;
    line-height: 1.08;
    text-transform: uppercase;
    font-weight: 900;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual {
    height: 145px;
    margin: 6px 0 10px;
    border-radius: 12px;
    background: radial-gradient(circle at center, rgba(236,196,64,.12), rgba(255,255,255,.025) 55%, transparent 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.feature-price {
    display: inline-block;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--dorado2), #d6a500);
    color: #050505;
    border-radius: 9px;
    padding: 8px 14px;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 4px 0 rgba(0,0,0,.35);
}

.feature-pres {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 900;
    color: white;
    white-space: nowrap;
}







.feature-visual.with-image {
    background: transparent;
}

.feature-visual img {
    max-width: 92%;
    max-height: 132px;
    object-fit: contain;
    filter: drop-shadow(0 12px 12px rgba(0,0,0,.42));
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0,0,0,.42);
}

.feature-card .feature-price {
    display: inline-block;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--dorado2), #d6a500);
    color: #050505;
    border-radius: 9px;
    padding: 8px 14px;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 4px 0 rgba(0,0,0,.35);
}

.search-box {
    max-width: 860px;
    margin: 0 auto 20px;
    background: white;
    border: 3px solid var(--dorado);
    border-radius: 13px;
    padding: 12px 18px;
    box-shadow: 0 6px 16px rgba(0,0,0,.28);
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 20px;
    background: transparent;
    color: #334155;
}

.price-panel {
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,22,55,.72);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 26px rgba(0,0,0,.35);
}


.category-block {
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 18px;
    margin: 16px 0;
    background: linear-gradient(180deg, rgba(6,48,92,.82), rgba(0,19,45,.96));
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(0,0,0,.30);
}

.category-title {
    width: 100%;
    border: 0;
    cursor: pointer;
    color: #071735;
    background: linear-gradient(180deg, #ffe26c, #d9a800);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    text-align: left;
}

.category-inline { display:flex; align-items:baseline; gap:4px; }

.category-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #08264b;
    color: white;
    border: 2px solid rgba(255,255,255,.35);
    font-size: 20px;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,.18);
}

.category-name {
    display: inline-block;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.category-sub {
    display: inline-block;
    margin-left: 10px;
    color: rgba(7,23,53,.72);
    font-size: 13px;
    font-weight: 900;
}

.category-chevron {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    transition: transform .18s ease;
}

.category-block.open .category-chevron {
    transform: rotate(180deg);
}

.category-content {
    display: none;
    padding: 10px 14px 14px;
}

.category-block.open .category-content {
    display: block;
}

.category-block table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}




.product-card-list {
    display: grid;
    gap: 8px;
}

.product-row-card {
    display: grid;
    grid-template-columns: 1fr 140px;
    align-items: center;
    gap: 14px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(0, 25, 58, .72);
    border: 1px solid rgba(255,255,255,.12);
}

.product-row-card:hover {
    background: rgba(8, 56, 106, .78);
}

.product-card-name {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.product-card-pres {
    margin-top: 3px;
    font-size: 14px;
    color: rgba(255,255,255,.76);
    font-weight: 600;
}

.product-card-price {
    color: #ffd84d;
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 640px) {
    .product-row-card {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .product-card-price {
        text-align: left;
        font-size: 24px;
    }
}

.cta {
    margin: 26px 0 18px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 18px;
    background: rgba(0,13,35,.75);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

.cta-title {
    font-size: 30px;
    font-weight: 900;
}

.cta-sub {
    font-size: 20px;
    color: rgba(255,255,255,.85);
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(180deg, #24d34b, #078b21);
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 14px;
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 5px 0 rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.25);
}

.footer {
    text-align: center;
    padding: 18px 0 30px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
}

.hidden { display: none !important; }

@media (max-width: 900px) {
    .brand {
        flex-direction: column;
        gap: 4px;
    }

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

    .cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .logo-circle {
        width: 110px;
        height: 110px;
        font-size: 48px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
    min-height: 315px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.35);
    background: linear-gradient(180deg, rgba(8,56,106,.78), rgba(0,18,42,.98));
    box-shadow: 0 12px 24px rgba(0,0,0,.35);
    padding: 18px 18px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .category-title {
        font-size: 24px;
    }

    th, td {
        padding: 9px 10px;
        font-size: 14px;
    }

    .price-cell {
        font-size: 17px;
    }


    .category-block table,
    .category-block thead,
    .category-block tbody,
    .category-block tr,
    .category-block td {
        display: block;
        width: 100%;
    }

    .category-block thead {
        display: none;
    }

    .category-block tbody {
        padding: 8px;
    }

    .category-block tr.fila {
        display: grid;
        grid-template-columns: 1fr 140px;
        gap: 6px 12px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 12px;
        margin-bottom: 8px;
        background: rgba(0,18,42,.58);
    }

    .category-block td {
        border: 0 !important;
        padding: 0 !important;
    }

    .product-cell {
        grid-column: 1 / -1;
        font-size: 20px;
        font-weight: 900;
        line-height: 1.25;
    }

    .presentation-cell {
        font-size: 14px;
        color: rgba(255,255,255,.78);
    }

    .price-cell {
        font-size: 22px;
        text-align: center;
        align-self: end;
    }

    .wa-btn {
        font-size: 24px;
        width: 100%;
        justify-content: center;
    }

    .cta-title {
        font-size: 24px;
    }
}