:root {
    --primary-blue: #0A325F;
    --accent-orange: #E67E22;
    --text-gray: #666666;
    --border-light: #E0E0E0;
}

.banner-puntos {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.banner-overlay-puntos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 2;
}

.banner-content-puntos {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 3;
}


.banner-puntos h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.banner-puntos h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(50px, 12vw, 150px);
    font-weight: 400;
    line-height: 0.85;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}


.banner-puntos p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: white;
    margin-bottom: 15px;
    max-width: 90%;
}


.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


.btn-distribuidor {
    display: inline-block;
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.4);
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-distribuidor:hover {
    background-color: #e57d10;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 147, 31, 0.6);
}


@media (max-width: 768px) {
    .banner-puntos {
        height: 100vh;
        height: 100dvh;
        width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
        display: flex;
        background-color: transparent;
    }

    .banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .banner-puntos h1 {
        font-size: 20px;
    }

    .banner-puntos h2 {
        font-size: 80px;
    }

    .banner-puntos p {
        font-size: 16px;
        max-width: 100%;
    }

    .banner-content-puntos {
        width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .banner-puntos p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.puntos-main {
    padding-top: 100px;
    background-color: #FFFFFF;
}

.puntos-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.puntos-title {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
}

.puntos-title span {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 70px;
    display: block;
    line-height: 0.8;
    margin-top: 10px;
}


.filters-container {
    display: flex;
    justify-content: left;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    margin-left: 50px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 500;
}

.filter-option input {
    display: none;
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.filter-option input:checked+.custom-radio::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}


.puntos-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    height: 700px;
}

.puntos-list-container {
    height: 100%;
    overflow-y: auto;
    padding-right: 20px;
    border-right: 1px solid #EEEEEE;
}


.puntos-list-container::-webkit-scrollbar {
    width: 6px;
}

.puntos-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.puntos-list-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.puntos-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.store-card {
    display: grid;
    grid-template-columns: 40px 1fr 140px;
    gap: 15px;
    align-items: start;
    padding-bottom: 20px;
    padding-left: 30px; /* Indent content to the right */
}

.store-icon {
    color: var(--accent-orange);
    font-size: 24px;
    margin-top: 5px;
}

.store-info h3 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.store-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 2px 0;
}

.store-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-hours {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.3;
}

.btn-location {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(248, 147, 31, 0.3);
    width: 100%;
    display: block;
}

.btn-location:hover {
    background-color: #e57d10;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(248, 147, 31, 0.4);
}

.btn-directions {
    background-color: #f1f1f1;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    width: 100%;
}

.btn-directions:hover {
    background-color: var(--primary-blue);
    color: white;
}


.map-container-wrapper {
    position: sticky;
    top: 100px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 100%;
}


.map-popup-content {
    padding: 5px;
    font-family: 'Poppins', sans-serif;
}

.map-popup-content b {
    color: var(--primary-blue);
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.popup-directions-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.popup-directions-link:hover {
    color: #d35400;
}

.popup-directions-link i {
    margin-right: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .puntos-content-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }

    .puntos-list-container {
        border-right: none;
        height: 500px;
    }

    .map-container-wrapper {
        height: 400px;
        position: static;
    }
}

@media (max-width: 768px) {
    .puntos-title {
        font-size: 26px;
    }

    .puntos-title span {
        font-size: 32px;
    }

    .filters-container {
        gap: 15px;
    }
}


@media (min-width: 1440px) {
    .puntos-section {
        max-width: 1560px;
    }
}

@media (min-width: 1800px) {
    .puntos-section {
        max-width: 1760px;
    }

    .banner-puntos h2 {
        font-size: 160px;
    }
}

@media (min-width: 2560px) {
    .puntos-section {
        max-width: 2200px;
    }

    .banner-puntos h2 {
        font-size: 200px;
    }

    .banner-puntos h1 {
        font-size: 60px;
    }

    .puntos-title span {
        font-size: 100px;
    }
}