:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --primary-glow: rgba(255, 107, 53, 0.5);
    --accent-color: #FF6B35;
    --success-color: #FF6B35;
    --warning-color: #FF6B35;
    --danger-color: #dc3545;
    --bg-dark: #050505;
    --bg-card: #121212;
    --bg-section: #111111;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --gold: #FF6B35;
    --border-radius: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, #1a0f0a 0%, var(--bg-dark) 40%);
    color: var(--text-light);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 0;
}

/* Glassmorphism Reforçado e Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin: 50px auto 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 2.5rem !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 40px 30px;
}

.pricing-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(248, 150, 30, 0.1)) !important;
    border: 1px solid rgba(255, 107, 53, 0.5) !important;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2) !important;
    position: relative;
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.08);
}

.pricing-card.popular::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FF6B35, #F8961E);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-ativacao {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pricing-ativacao small {
    font-size: 1rem;
    color: #999;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex-grow: 1;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.25;
}

.pricing-features li i {
    color: #28a745;
    margin-right: 10px;
    width: 20px;
}

.pricing-features li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 20px;
}

/* HEADER FIXO COM Z-INDEX CORRETO */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

/* BANNER DE URGÊNCIA */
.urgency-banner {
    background: rgba(10, 10, 10, 0.95);
    color: var(--primary-color);
    padding: 12px 0;
    font-weight: bold;
    animation: pulse 2s infinite;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-close-banner {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* MELHORIAS VISUAIS - GLASSMORPHISM */
.template-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.btn {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-close-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

/* HEADER MODERNO - GLASSMORPHISM DARK */
.search-filter-section {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container img {
    filter: drop-shadow(0 0 8px var(--primary-glow));
    transition: transform 0.3s, all 0.3s ease;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.search-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    position: relative;
    flex-shrink: 0;
}

.search-input {
    width: 100%;
    background: var(--bg-card);
    border: 2px solid #555;
    color: var(--text-light);
    font-size: 0.85em;
    font-weight: 500;
    padding: 8px 35px 8px 12px;
    border-radius: 20px;
}

.search-input:focus {
    outline: none;
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.search-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    border-radius: 25px;
    width: 35px;
}

.search-btn:hover {
    color: var(--primary-color);
    transform: none;
}

/* Botões do Header estilo Pill */
.header-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-nav-btn:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transform: translateY(-2px);
}

.cart-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    filter: brightness(1.1);
}

.cart-count {
    background: white;
    color: var(--primary-color);
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 11px;
    margin-left: 5px;
    min-width: 18px;
    text-align: center;
}

/* HEADER NAVBAR CORRIGIDO */
.navbar {
    padding: 10px 0;
}

.navbar-brand {
    margin-right: 20px;
    flex-shrink: 0;
}

.navbar-nav {
    margin-left: auto;
    margin-right: 15px;
}

.filter-dropdown {
    background: var(--bg-card);
    border: 2px solid #555;
    color: var(--text-light);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.filter-dropdown:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.filter-dropdown option {
    background: var(--bg-card);
    color: var(--text-light);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    background: #333;
    border: 1px solid #555;
    color: var(--text-light);
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85em;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* AJUSTE DO CONTEÚDO PRINCIPAL */
.main-content {
    margin-top: 80px;
    padding-top: 0;
}

/* HERO SECTION SPLIT */
.hero-section-split {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
    position: relative;
    overflow: hidden;
}

.hero-text-content {
    text-align: left;
    padding-right: 20px;
    z-index: 2;
    position: relative;
}

.hero-title-split {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle-split {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-slider-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 400px;
}

.hero-slider-container .carousel,
.hero-slider-container .carousel-inner,
.hero-slider-container .carousel-item {
    height: 100%;
}

.hero-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-cta {
    background: linear-gradient(135deg, var(--warning-color), #e55a2b);
    border: none;
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    margin-bottom: 30px;
    text-decoration: none;
    display: inline-block;
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    color: white;
}

.banner-cta-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 700;
    padding: 13px 38px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-decoration: none;
    display: inline-block;
}

.banner-cta-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    border-color: white;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
}

.carousel-indicators .active {
    background-color: white;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {

    .hero-banner-slider,
    .banner-slide,
    .hero-slider-container {
        height: 400px;
    }

    .banner-title,
    .hero-title-split {
        font-size: 2.5rem;
    }

    .banner-subtitle,
    .hero-subtitle-split {
        font-size: 1.2rem;
    }

    .banner-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .main-content {
        margin-top: 120px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 50px;
        padding: 8px;
    }

    .search-filter-section {
        padding: 10px 0;
    }

    .search-box {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .filter-buttons {
        justify-content: center;
    }
}

/* Benefícios */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    text-align: left;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 15px 10px 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 5px;
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.benefit-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: bold;
}

.benefit-item p,
.benefit-card p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    font-size: 0.9rem;
    line-height: 1.3;
}

.benefit-item p {
    color: #ddd;
}

/* COUNTDOWN TIMER */
.countdown-container {
    background: var(--danger-color);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* PROVA SOCIAL */
.social-proof {
    background: var(--success-color);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}

.social-proof-number {
    font-size: 2rem;
    display: block;
}

/* TEMPLATES GRID MELHORADO */
.template-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .template-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .template-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .template-grid {
        grid-template-columns: 1fr;
    }
}

/* BADGES DE DESTAQUE */
.template-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-destaque {
    background: var(--gold);
    color: #000;
}

.badge-promocao {
    background: var(--danger-color);
    color: white;
}

.badge-novo {
    background: var(--success-color);
    color: white;
}

.template-preview {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: #222;
    flex-shrink: 0;
}

.template-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.template-card:hover .template-image {
    transform: scale(1.15) rotate(3deg);
    filter: brightness(1.1);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6)) !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.template-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--text-light);
}

.template-description {
    color: var(--text-muted);
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 18px;
}

.template-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.template-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7em;
    font-weight: 500;
}

/* SISTEMA DE PREÇOS MELHORADO */
.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-title {
    color: var(--gold);
    font-size: 0.95em;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-main {
    background: var(--success-color);
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.price-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: 0.9em;
}

.price-item {
    background: #333;
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
}

.price-label {
    color: var(--text-muted);
    font-size: 0.85em;
    margin-bottom: 4px;
    font-weight: 600;
}

.price-value {
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.05em;
}

/* LAYOUT DOS BOTÕES REORGANIZADO */
.template-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.actions-row {
    display: flex;
    gap: 10px;
}

.btn-test,
.btn-cart {
    flex: 1;
    font-weight: 700;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    position: relative;
    cursor: pointer;
}

.btn-test {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-test:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.btn-cart {
    background: linear-gradient(135deg, var(--warning-color), #fd7e14);
    border: none;
    color: white;
}

.btn-test .btn-subtitle,
.btn-cart .btn-subtitle,
.btn-use .btn-subtitle {
    display: block;
    font-size: 0.7em;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 2px;
}

.btn-use {
    width: 100%;
    background: linear-gradient(135deg, var(--success-color), #20c936);
    border: none;
    color: white;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1em;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-use::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-use:hover::before {
    left: 100%;
}

.btn-use:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.5);
}

/* PLANOS - ESTILO SITE BARATO */
.pricing-section {
    background: var(--bg-card);
    padding: 80px 0;
    text-align: center;
}

.plan-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}

.activation-price {
    font-size: 15px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.monthly-price {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2px;
}

.activation-value {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
}

.pricing-cta {
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    text-transform: uppercase;
}

.pricing-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pricing-card.popular .pricing-cta {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.pricing-card.popular .pricing-cta:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* Download Box */
#download-box {
    position: relative;
    overflow: hidden;
}

#download-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* GARANTIA */
.guarantee-section {
    background: var(--success-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    margin: 20px;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--gold);
}

/* FAQ RÁPIDO */
.faq-quick {
    background: var(--bg-section);
    padding: 60px 0;
}

.faq-item {
    background: var(--bg-card);
    margin: 15px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
}

.faq-question {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
}

.faq-answer {
    padding: 20px;
    display: none;
    color: var(--text-light);
}

/* DEPOIMENTOS */
.testimonials {
    background: var(--bg-card);
    padding: 60px 0;
}

.testimonial-card {
    background: var(--bg-section);
    padding: 30px;
    border-radius: 20px;
    margin: 15px;
    border-left: 5px solid var(--gold);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: bold;
    color: var(--gold);
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.9em;
}

.stars {
    color: var(--gold);
    font-size: 1.2em;
    margin-bottom: 15px;
}

/* BOTÃO FLUTUANTE */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--success-color), #20c936);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5);
    z-index: 1000;
    text-decoration: none;
    font-weight: bold;
    animation: bounce 2s infinite;
}

.floating-cta:hover {
    color: white;
    transform: scale(1.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* LINK DE GERENCIAMENTO */
.admin-link {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9em;
    z-index: 2001;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.admin-link:hover {
    opacity: 1;
    color: white;
}

/* LOGO CONTAINER */
.logo-container {
    display: flex;
    align-items: center;
    padding: 5px;
}

/* CARRINHO DE COMPRAS */
.cart-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* SEÇÃO DE BENEFÍCIOS */
.benefits-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA FINAL */
.cta-section {
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80') center/cover fixed;
    position: relative;
    text-align: center;
    padding: 120px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(10, 10, 10, 0.95));
}

.cta-button {
    background: var(--text-light);
    color: var(--bg-dark);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-top: 20px;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    background: white;
    color: var(--primary-color);
}

/* Header Styles Refined */
#menu-links ul {
    display: flex;
    list-style: none;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}

#menu-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    display: block;
}

#menu-links ul li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.cta-header-nav {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-header-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    color: white;
    filter: brightness(1.1);
}

.template-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6)) !important;
}