/* General */
body {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #333;
}

/* Hero Section */
.hero {
    background-color: #0c0a18; /* A very dark, slightly purplish blue */
    background-image:
        radial-gradient(at 10% 15%, hsla(240, 80%, 55%, 0.3) 0px, transparent 50%), /* Blue top-left */
        radial-gradient(at 90% 20%, hsla(300, 70%, 50%, 0.3) 0px, transparent 50%), /* Purple top-right */
        radial-gradient(at 80% 90%, hsla(28, 90%, 55%, 0.25) 0px, transparent 50%), /* Orange bottom-right */
        radial-gradient(at 20% 85%, hsla(60, 90%, 50%, 0.15) 0px, transparent 50%); /* Yellow bottom-left */
    background-repeat: no-repeat;
}

#hero-media-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden; /* Ensures video stays within the rounded corners */
}

.hero-image {
    max-width: 100%;
    border-radius: 15px;
    transition: opacity 0.5s ease-in-out;
}

.glow-button {
    box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.5);
    transition: box-shadow 0.3s ease-in-out;
}

.glow-button:hover {
    box-shadow: 0 0 25px 8px rgba(255, 255, 255, 0.8);
}

.hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    transition: opacity 0.5s ease-in-out;
}

.pulse-button-video {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 10px 20px rgba(255, 82, 82, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}


/* PIX Bar */
.pix-bar {
    background-color: #1a1a1a;
}

/* Promo Container */
.promo-container {
    margin: 0 auto;
}

/* Dynamic Text Section */
.dynamic-text-container {
    font-size: 1.5rem;
}

.highlight-value {
    color: #00ff9d; /* Neon green */
    font-weight: bold;
    font-size: 2.2rem;
    text-shadow: 0 0 2px #00ff9d, 0 0 5px #00ff9d, 0 0 5px #00ff9d;
}

.highlight-value-alt {
    color: #ff00ff; /* Neon magenta */
    font-weight: bold;
    font-size: 2.2rem;
    text-shadow: 0 0 2px #ff00ff, 0 0 5px #ff00ff, 0 0 5px #ff00ff;
}

.highlight-value-blue {
  color: #00c3ff;
  font-weight: bold;
  text-shadow: 0 0 1px #00c3ff, 0 0 3px #00c3ff, 0 0 5px #00c3ff;
}

.animated-value {
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Coupon Section */
.coupon-card {
    padding: 20px;
    border-radius: 15px;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.coupon-card::before, .coupon-card::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #212529;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.coupon-card::before {
    left: -20px;
}

.coupon-card::after {
    right: -20px;
}

.coupon-blue {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

.coupon-green {
    background: linear-gradient(135deg, #198754, #146c43);
}

.coupon-content {
    border-left: 2px dashed rgba(255,255,255,0.5);
    padding-left: 25px;
    margin-left: 20px;
}

.coupon-code {
    background: rgba(0,0,0,0.2);
    border: 2px dashed #fff;
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    color: #fff;
}


/* Offers Background */
.offers-background {
    background: linear-gradient(270deg, #1a1a1a, #333333, #1a1a1a);
    background-size: 600% 600%;
    animation: gradientAnimation 16s ease infinite;
}

@keyframes gradientAnimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

/* Product Cards */
.product-card {
    border: 1px solid #444;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #2c2c2c;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 6px 6px rgba(0,0,0,0.23);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.icon-32 {
    width: 32px;
    height: 32px;
}

.combo-icons a {
    display: inline-block;
}

.combo-icons .bi-plus-lg {
    vertical-align: middle;
}

.price-old {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
}

.price-new {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
}

.discount-badge {
    background-color: #0dcaf0; /* Cyan for high contrast */
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.save-value {
    font-size: 0.9rem;
    color: #17a2b8;
    font-weight: 500;
}

.product-link {
    text-decoration: none;
    color: #fff;
}

.product-link:hover {
    text-decoration: underline;
}

/* Golden Gradient Button */
.btn-golden-gradient {
    border: none;
    color: #000;
    font-weight: bold;
    background-image: linear-gradient(to right, #FDB813 0%, #FFD700 51%, #FDB813 100%);
    transition: 0.5s;
    background-size: 200% auto;
}

.btn-golden-gradient:hover {
    background-position: right center;
    color: #000;
}


/* Tooltip */
.tooltip-box {
    position: absolute;
    display: none;
    padding: 8px 12px;
    background-color: #ffecb3;
    border: 1px solid #ffe082;
    border-radius: 5px;
    font-size: 0.9rem;
    z-index: 1080;
    pointer-events: none;
    color: #333;
    max-width: 400px;
    word-wrap: break-word;
}

/* Section Breaks */
.section-break-light {
    background-color: #f8f9fa;
}
.section-break-dark {
    background-color: #212529;
}

#sobre .card a {
    color: #0dcaf0;
}

#sobre .card, #sobre .card .text-dark, #sobre .card h6 {
    color: #000 !important;
}


/* Comprovante Section */
.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 20px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* FAQ Section */
.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 15px;
}

.faq-item summary {
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Remove default marker */
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Chrome */
}

.faq-item summary::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-content {
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

/* Sobre Section */
.avatar-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-wrap{position:relative;padding-left:48px}
.quote-mark{
  position:absolute;left:0;top:-10px;
  font-size:64px;line-height:1;color:#cbd5e1;
  font-family: serif;
}

/* Footer */
footer.bg-black {
    background-color: #000 !important;
}