* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.public-header {
    width: 100%;
    background: rgba(0,0,0,.94);
    border-bottom: 1px solid #00c85344;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    width: 92%;
    max-width: 1350px;
    margin: auto;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.public-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.public-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid #00c85355;
}

.public-brand strong {
    display: block;
    color: #00c853;
    font-size: 23px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.public-brand span {
    display: block;
    color: #bbbbbb;
    font-size: 13px;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.public-nav a {
    color: #eeeeee;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.public-nav a:hover,
.public-nav a.active {
    color: #00c853;
}

.cart-link {
    background: #00c853;
    color: #000000 !important;
    padding: 10px 16px;
    border-radius: 50px;
}

.hero-public {
    min-height: 82vh;
    position: relative;
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.96)),
        radial-gradient(circle at center, #00c85344, transparent 34%),
        url("../img/logo.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 45px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-logo-box img {
    width: 170px;
    max-height: 170px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px #00c85355);
}

.hero-public h1 {
    color: #00c853;
    font-size: 76px;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: 18px;
    text-shadow: 0 0 25px #00c85355;
}

.hero-public p {
    color: #e8e8e8;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary,
.btn-secondary,
.btn-card {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: .3s;
}

.btn-primary {
    background: #00c853;
    color: #000000;
    padding: 15px 28px;
    box-shadow: 0 0 22px #00c85355;
}

.btn-primary:hover {
    background: #00e676;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #00c853;
    color: #00c853;
    padding: 14px 28px;
}

.btn-secondary:hover {
    background: #00c853;
    color: #000000;
}

.public-section {
    width: 92%;
    max-width: 1350px;
    margin: auto;
    padding: 70px 0;
}

.section-dark {
    max-width: 100%;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    background:
        linear-gradient(90deg, #001f10, #050505, #001f10);
    border-top: 1px solid #00c85322;
    border-bottom: 1px solid #00c85322;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title h2 {
    color: #00c853;
    font-size: 34px;
}

.section-title a {
    color: #00c853;
    text-decoration: none;
    font-weight: bold;
}

.product-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card,
.news-card,
.concert-card {
    background: #111111;
    border: 1px solid #00c85333;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 25px #00000088;
    transition: .3s;
}

.product-card:hover,
.news-card:hover,
.concert-card:hover {
    transform: translateY(-5px);
    border-color: #00c853;
}

.product-img {
    height: 240px;
    background: #050505;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-img,
.empty-public {
    background: #111111;
    border: 1px dashed #333333;
    color: #888888;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    grid-column: 1 / -1;
}

.product-info {
    padding: 20px;
}

.product-info span {
    color: #00c853;
    font-size: 13px;
    font-weight: bold;
}

.product-info h3 {
    margin: 8px 0;
    font-size: 21px;
}

.product-info p {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 1.4;
    min-height: 42px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0;
}

.price-row strong {
    color: #00c853;
    font-size: 22px;
}

.price-row small {
    color: #999999;
}

.btn-card {
    background: #00c853;
    color: #000000;
    padding: 12px 18px;
    width: 100%;
    text-align: center;
}

.concert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.concert-card {
    display: flex;
    padding: 22px;
    gap: 18px;
}

.concert-date {
    min-width: 82px;
    height: 82px;
    border-radius: 16px;
    background: #00c853;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.concert-date strong {
    font-size: 34px;
}

.concert-info h3 {
    color: #ffffff;
    margin-bottom: 8px;
}

.concert-info p {
    color: #cccccc;
    margin-bottom: 6px;
}

.concert-info small {
    color: #999999;
    display: block;
    margin-bottom: 10px;
}

.concert-info a {
    color: #db0000;
    text-decoration: none;
    font-weight: bold;
}

.news-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.news-card div {
    padding: 20px;
}

.news-card small {
    color: #00c853;
}

.news-card h3 {
    margin: 8px 0;
}

.news-card p {
    color: #bbbbbb;
    line-height: 1.4;
}

.fan-section {
    width: 92%;
    max-width: 1350px;
    margin: 20px auto 70px auto;
    background:
        radial-gradient(circle at right, #00c85344, transparent 35%),
        #111111;
    border: 1px solid #00c85344;
    border-radius: 22px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fan-section h2 {
    color: #00c853;
    font-size: 38px;
    margin-bottom: 8px;
}

.fan-section p {
    color: #dddddd;
}

.public-footer {
    background: #050505;
    border-top: 1px solid #00c85333;
    padding: 35px 4%;
    text-align: center;
}

.public-footer h3 {
    color: #00c853;
    font-size: 26px;
    text-transform: uppercase;
}

.public-footer p {
    color: #aaaaaa;
    margin-top: 5px;
}

.social-links {
    margin-top: 18px;
}

.social-links a {
    color: #00c853;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.copy {
    margin-top: 25px !important;
    color: #777777 !important;
    font-size: 13px;
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #00c853;
    color: #000000;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 25px #00c85377;
    z-index: 200;
}

@media (max-width: 1000px) {
    .product-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concert-grid {
        grid-template-columns: 1fr;
    }

    .hero-public h1 {
        font-size: 54px;
    }
}

@media (max-width: 760px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .public-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .hero-public h1 {
        font-size: 42px;
    }

    .hero-public p {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .fan-section {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .section-title {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}