/* css/style.css */
:root {
    --bg-dark: #121c32; /* Deep blue background */
    --bg-panel: #1a2745;
    --bg-panel-light: #223255;
    --text-primary: #ffffff;
    --text-secondary: #a3b2cf;
    --accent-orange: #f58428;
    --accent-orange-hover: #fa994a;
    --gold: #d4af37;
    
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --border-radius-pill: 50px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* App Container */
.app-container {
    width: 100%;
    max-width: 1400px;
    background: radial-gradient(circle at top right, #172445 0%, #0a101f 60%, #050811 100%);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px), radial-gradient(rgba(245, 132, 40, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px;
}

/* Header */
.top-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(245, 132, 40, 0.15);
    background: linear-gradient(180deg, rgba(26, 39, 69, 0.4), rgba(12, 19, 38, 0.2));
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    gap: 30px;
}

.logo-placeholder {
    max-width: 100%;
}

.main-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
    text-decoration: none;
}

.brand-logo img {
    width: 320px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
    /* Gold tint filter */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18)) sepia(1) saturate(5) hue-rotate(10deg);
    position: relative;
    top: 10px;
    z-index: 10;
}

.top-nav {
    padding-top: 6px;
    padding-bottom: 6px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(245, 132, 40, 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(245, 132, 40, 0.3), transparent);
    border-radius: 10px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.nav-link:hover {
    color: var(--text-primary);
    background: linear-gradient(180deg, rgba(245, 132, 40, 0.25), rgba(245, 132, 40, 0.08));
    border-color: rgba(245, 132, 40, 0.5);
    box-shadow: 0 6px 15px rgba(245, 132, 40, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.main-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.main-links a:hover, .main-links a.active {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(245, 132, 40, 0.15), rgba(245, 132, 40, 0.05));
    border: 2px solid rgba(245, 132, 40, 0.3);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.nav-actions a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 132, 40, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
}

.nav-actions a:hover {
    background: linear-gradient(135deg, rgba(245, 132, 40, 0.3), rgba(245, 132, 40, 0.1));
    border-color: rgba(245, 132, 40, 0.6);
    box-shadow: 0 6px 18px rgba(245, 132, 40, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px) scale(1.05);
}

.nav-actions a:hover::before {
    opacity: 1;
}

.nav-actions a i {
    color: var(--text-primary);
    font-size: 1.3rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.nav-actions a:hover i {
    color: #fff;
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Buttons */
.btn {
    border: none;
    border-radius: var(--border-radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #d96214);
    color: #fff;
    padding: 10px 24px;
    box-shadow: 0 8px 20px rgba(245, 132, 40, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-orange-hover), var(--accent-orange));
    box-shadow: 0 10px 25px rgba(245, 132, 40, 0.6);
    transform: translateY(-2px);
}

.btn-primary-sm {
    background: linear-gradient(135deg, #4b7bc4, #2c5ba6); /* Blue variant for inner elements */
    color: #fff;
    padding: 8px 16px;
    font-size: 0.75rem;
    box-shadow: 0 5px 15px rgba(75, 123, 196, 0.4);
}

.btn-primary-sm:hover {
    background: linear-gradient(135deg, #5b8bd4, #3c6bb6);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--accent-orange);
    padding: 8px 20px;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-white:hover {
    background: #fdfdfd;
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #4b7bc4, #2c5ba6);
    color: #fff;
    padding: 10px 24px;
    box-shadow: 0 8px 20px rgba(75, 123, 196, 0.4);
    width: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5b8bd4, #3c6bb6);
    transform: translateY(-2px);
}

.btn-afiliarme {
    padding: 10px 28px;
}

.fluid-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

/* Main Layout Grid */
.main-layout {
    display: grid;
    grid-template-columns: 240px 1fr 260px;
    gap: 30px;
    padding: 30px 40px 40px;
}

.main-layout.layout-v2 {
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 20px 50px 50px;
}

/* Left Sidebar */
.sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coin-badge {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 30% 30%, #e8c678, #b8860b 80%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.4);
    border: 5px solid #2a3b63;
    position: relative;
    margin-bottom: 10px;
}

.coin-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coin-badge h1 {
    font-family: 'Outfit', sans-serif;
    color: #1a2745;
    font-size: 1.8rem;
    line-height: 1.1;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

.categories-nav h3 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.categories-nav ul {
    list-style: none;
}

.categories-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.categories-nav li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.discount-card {
    background: linear-gradient(135deg, var(--accent-orange), #c7560d);
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.discount-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.sidebar-discount h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.sidebar-discount h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 8px;
    line-height: 1;
}

.sidebar-discount h2 span {
    font-size: 0.8rem;
    display: block;
    margin-top: -5px;
}

.sidebar-discount p {
    font-size: 0.75rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Main Content Area */
.content-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-banner {
    background: linear-gradient(135deg, #223458, var(--bg-panel));
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: var(--glass-border);
}

.hero-banner::after {
    /* Sparkles background effect using simple radial gradients */
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#fff 1px, transparent 1px), radial-gradient(#f48c3d 1px, transparent 1px);
    background-size: 50px 50px, 30px 40px;
    background-position: 0 0, 15px 15px;
    opacity: 0.05;
    pointer-events: none;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 400;
}

.hero-text .glow-text {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
    letter-spacing: -1px;
    margin: -10px 0 10px 0;
}

.hero-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 400px;
}

.hero-card {
    background: linear-gradient(135deg, var(--accent-orange), #d96214);
    padding: 15px 25px;
    border-radius: var(--border-radius-md);
    text-align: center;
    min-width: 160px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-card .tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hero-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
}

.hero-card h4 {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.hero-card p {
    font-size: 0.6rem;
    line-height: 1.2;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Products Grid */
.products-grid {
    display: grid;
    gap: 20px;
}

.main-products {
    grid-template-columns: repeat(3, 1fr);
}

.secondary-products {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -10px;
}

.product-card {
    background: linear-gradient(180deg, #1b2a4a 0%, #0d1527 100%);
    border: 1px solid rgba(163, 178, 207, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: rgba(163, 178, 207, 0.6);
}

.product-image {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.6));
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    margin-top: auto;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
    opacity: 0.9;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

.product-price sup {
    font-size: 0.9rem;
    top: -0.5em;
}

.btn-comprar {
    background: linear-gradient(180deg, #f58428, #c7560d);
    color: white;
    border: 1px solid #ff9e4f;
    padding: 6px 18px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(245, 132, 40, 0.4);
}

.btn-comprar:hover {
    background: var(--accent-orange-hover);
    transform: scale(1.05);
}

/* Secondary product style */
.product-card-small {
    background: linear-gradient(180deg, #1b2a4a 0%, #0d1527 100%);
    border: 1px solid rgba(163, 178, 207, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card-small:hover {
    transform: scale(1.02);
}

.product-card-small .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 0;
}

.badge {
    position: absolute;
    top: 15px; left: 15px;
    background: transparent;
    color: #ffb74d;
    border: 1px solid #ffb74d;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 2;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.section-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.arrow-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Right Sidebar */
.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.membership-info, .extra-benefits {
    background: var(--bg-panel-light);
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    border: var(--glass-border);
}

.membership-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefits-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefits-list li i {
    color: var(--accent-orange);
    margin-top: 3px;
    font-size: 0.9rem;
}

.benefits-list-small {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list-small li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list-small li i {
    color: var(--text-primary);
    opacity: 0.6;
    width: 15px;
    text-align: center;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-panel);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: var(--glass-border);
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Hotmart Style Modal */
.modal-content.modal-hotmart-style {
    max-width: 1100px;
    padding: 0;
    display: flex;
}

.modal-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.modal-left-section {
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--bg-panel-light) 0%, var(--bg-panel) 100%);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    border-right: 1px solid rgba(245, 132, 40, 0.2);
}

.modal-right-section {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    background: var(--bg-panel);
}

.modal-left-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--text-primary);
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
}

.modal-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: linear-gradient(135deg, var(--accent-orange), #d96214);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(245, 132, 40, 0.3);
    margin-top: 2px;
}

.benefit-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.benefit-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.modal-cta-text {
    background: rgba(245, 132, 40, 0.12);
    border-left: 3px solid var(--accent-orange);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.modal-cta-text p {
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.modal-cta-text ol {
    margin-left: 20px;
    color: var(--text-secondary);
}

.modal-cta-text ol li {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.form-submit-btn {
    margin-top: 25px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-orange), #d96214) !important;
    box-shadow: 0 8px 20px rgba(245, 132, 40, 0.4) !important;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-orange-hover), var(--accent-orange)) !important;
    box-shadow: 0 10px 25px rgba(245, 132, 40, 0.6) !important;
}

.form-message {
    margin-top: 15px;
    font-weight: 500;
    font-size: 0.9em;
    text-align: center;
    min-height: 20px;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.form-terms {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-panel-light);
    border: 1.5px solid rgba(163, 178, 207, 0.3);
    border-radius: var(--border-radius-sm);
    color: white;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input::placeholder {
    color: rgba(163, 178, 207, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: var(--bg-panel);
    box-shadow: 0 0 12px rgba(245, 132, 40, 0.3);
}

.loader-icon {
    margin-left: 10px;
}

/* V2 Layout Specific Styles */
.coin-badge-v2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #f9d877, #ba8611 75%, #593903);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 25px rgba(255,255,255,0.7), inset -10px -10px 20px rgba(0,0,0,0.6);
    margin: 0 auto 30px;
    border: 6px solid #e1b439;
    position: relative;
    padding: 8px;
}
.coin-badge-v2::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.3);
    pointer-events: none;
}
.coin-outer {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, #152654, #080f22);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}
.coin-inner h1 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 3.5rem;
    line-height: 0.9;
    text-align: center;
    text-shadow: 0 4px 6px rgba(0,0,0,0.6);
    margin-top: 15px;
}
.coin-inner h1 span {
    color: #e5b83b;
    font-weight: 800;
}
.coin-icon {
    color: #e5b83b;
    font-size: 2.5rem;
    margin-top: 10px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.premium-afiliate-card {
    background: linear-gradient(180deg, #101931 0%, #060a12 100%);
    border: 2px solid #bda154;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), inset 0 0 30px rgba(189,161,84,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 240px;
    margin: 0 auto;
}
.premium-afiliate-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#d4af37 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.08;
    pointer-events: none;
}
.pac-icon {
    width: 45px; height: 32px;
    background: linear-gradient(180deg, #f9d877, #ba8611);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #111;
    border-radius: 40px 40px 8px 8px;
    margin-bottom: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 2px rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}
.pac-btn-gold {
    background: linear-gradient(180deg, #ffe082, #b8860b);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}
.pac-btn-gold-link {
    text-decoration: none;
    display: block;
    transition: var(--transition);
}
.pac-btn-gold-link:hover .pac-btn-gold {
    background: linear-gradient(180deg, #ffeb99, #d4a017);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}
.pac-text-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.pac-text-sub {
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}
.pac-text-orange {
    font-size: 0.95rem;
    color: #f58428;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.pac-text-huge {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ffe082, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.5));
    position: relative;
    z-index: 1;
}
.pac-btn-action {
    background: linear-gradient(135deg, var(--accent-orange), #d96214);
    color: #fff;
    width: 100%;
    padding: 10px;
    font-size: 0.8rem;
    border: 3px solid #f5a234;
    border-bottom: 5px solid #a9680c;
    border-right: 5px solid #a9680c;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 12px rgba(0,0,0,0.4), 0 12px 25px rgba(245, 132, 40, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pac-btn-action:hover {
    background: linear-gradient(135deg, var(--accent-orange-hover), #e07a1f);
    box-shadow: 0 8px 16px rgba(0,0,0,0.4), 0 14px 28px rgba(245, 132, 40, 0.6), inset 0 1px 0 rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.pac-btn-action:active {
    box-shadow: 0 3px 8px rgba(0,0,0,0.4), 0 6px 12px rgba(245, 132, 40, 0.4), inset 0 2px 5px rgba(0,0,0,0.3);
    transform: translateY(0);
    border-bottom: 2px solid #a9680c;
    border-right: 2px solid #a9680c;
}
.premium-afiliate-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#d4af37 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
}
.pac-icon {
    width: 70px; height: 50px;
    background: linear-gradient(180deg, #f9d877, #ba8611);
    display: flex; align-items: center; justify-content: center;
    font-size: 34px; color: #111;
    border-radius: 40px 40px 10px 10px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 2px 4px rgba(255,255,255,0.4);
    position: relative;
    z-index: 1;
}
.pac-btn-gold {
    background: linear-gradient(180deg, #ffe082, #b8860b);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}
.pac-text-main {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.pac-text-sub {
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.pac-text-orange {
    font-size: 1.3rem;
    color: #f58428;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.pac-text-huge {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ffe082, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
    position: relative;
    z-index: 1;
}
.pac-btn-action {
    background: linear-gradient(135deg, var(--accent-orange), #d96214);
    color: #fff;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 3px solid #f5a234;
    border-bottom: 6px solid #a9680c;
    border-right: 6px solid #a9680c;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 15px rgba(0,0,0,0.4), 0 15px 30px rgba(245, 132, 40, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pac-btn-action:hover {
    background: linear-gradient(135deg, var(--accent-orange-hover), #e07a1f);
    box-shadow: 0 10px 18px rgba(0,0,0,0.4), 0 18px 35px rgba(245, 132, 40, 0.6), inset 0 1px 0 rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

.pac-btn-action:active {
    box-shadow: 0 4px 10px rgba(0,0,0,0.4), 0 8px 15px rgba(245, 132, 40, 0.4), inset 0 2px 6px rgba(0,0,0,0.3);
    transform: translateY(0);
    border-bottom: 2px solid #a9680c;
    border-right: 2px solid #a9680c;
}

.hero-banner-v2 {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 10px;
}

.sparkles-container {
    position: relative;
    display: inline-block;
}

.sparkle {
    position: absolute;
    color: #f58428;
    font-size: 1.2rem;
    opacity: 0;
    animation: sparkle-animation 2s ease-in-out infinite;
}

.sparkle i {
    display: block;
    filter: drop-shadow(0 0 6px rgba(245, 132, 40, 0.8));
}

.sparkle-1 {
    top: -15px;
    left: 10px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: -12px;
    right: 20px;
    animation-delay: 0.4s;
}

.sparkle-3 {
    top: 50%;
    right: -25px;
    animation-delay: 0.8s;
}

.sparkle-4 {
    bottom: 10px;
    right: 40px;
    animation-delay: 1.2s;
}

.sparkle-5 {
    bottom: 5px;
    left: 15px;
    animation-delay: 1.6s;
}

@keyframes sparkle-animation {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1) translateY(-5px);
    }
}

.hero-text-centered h1 {
    font-size: 3.5rem;
    font-weight: 600;
    display: inline;
    letter-spacing: -1px;
}

.hero-text-centered .glow-text {
    display: inline;
    font-family: 'Outfit', sans-serif;
    font-size: 4.2rem;
    font-weight: 800;
    margin: 0 0 0 10px;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.hero-text-centered .glow-text span {
    color: #f58428;
}

.hero-text-centered p {
    font-size: 1.4rem;
    color: #c7d2e8;
    max-width: 650px;
    margin-top: 15px;
    line-height: 1.4;
}

/* Responsive constraints */
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 200px 1fr 220px;
        padding: 20px;
    }
}
@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-left, .sidebar-right {
        display: none; /* In a real app we'd make a burger menu for this */
    }
}

/* Responsive Modal */
@media (max-width: 900px) {
    .modal-container-split {
        grid-template-columns: 1fr;
    }

    .modal-left-section {
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 40px 30px;
    }

    .modal-right-section {
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        padding: 40px 30px;
    }

    .modal-content.modal-hotmart-style {
        max-width: 700px;
    }

    .modal-left-header h2 {
        font-size: 1.5rem;
    }

    .modal-benefits-list {
        gap: 15px;
        margin-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .modal-content.modal-hotmart-style {
        max-width: 95vw;
        padding: 0;
    }

    .modal-left-section {
        padding: 30px 20px;
    }

    .modal-right-section {
        padding: 30px 20px;
    }

    .modal-left-header h2 {
        font-size: 1.3rem;
    }

    .modal-subtitle {
        font-size: 0.85rem;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .benefit-text h4 {
        font-size: 0.85rem;
    }

    .benefit-text p {
        font-size: 0.75rem;
    }

    .form-header h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Responsive - Extra Small Devices */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .app-container {
        border-radius: 16px;
        max-width: 100%;
    }

    /* Header Mobile */
    .top-nav {
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .main-links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 0 !important;
    }

    .nav-link {
        padding: 6px 10px !important;
        font-size: 0.85rem !important;
        margin: 0 3px;
    }

    .nav-link i {
        display: none;
    }

    .dropdown-menu {
        min-width: 180px;
        left: -50%;
    }

    /* Layout Mobile */
    .main-layout.layout-v2 {
        grid-template-columns: 1fr !important;
        padding: 15px 20px 20px !important;
        gap: 20px !important;
    }

    /* Sidebar */
    .sidebar-left {
        gap: 20px;
        align-items: center;
    }

    .logo-placeholder {
        height: 200px !important;
        margin-bottom: 20px !important;
    }

    .premium-afiliate-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .pac-icon {
        width: 40px !important;
        height: 28px !important;
    }

    .pac-text-main {
        font-size: 1.6rem !important;
    }

    .pac-text-huge {
        font-size: 2.8rem !important;
    }

    .pac-btn-action {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }

    /* Hero Banner */
    .hero-banner-v2 {
        padding: 25px 15px !important;
    }

    .hero-text-centered h1 {
        font-size: 1.4rem;
    }

    .hero-text-centered .glow-text {
        font-size: 2.5rem;
    }

    .hero-text-centered p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .sparkle {
        font-size: 1rem;
    }

    .sparkle-1 {
        top: -10px;
        left: 5px;
    }

    .sparkle-2 {
        top: -8px;
        right: 15px;
    }

    .sparkle-3 {
        right: -20px;
    }

    .sparkle-4 {
        bottom: 8px;
        right: 30px;
    }

    .sparkle-5 {
        bottom: 2px;
        left: 10px;
    }

    /* Products Grid */
    .main-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .secondary-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-top: 10px !important;
    }

    .product-card {
        padding: 15px;
    }

    .product-image {
        height: 130px;
        margin-bottom: 10px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .btn-comprar {
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .section-title {
        gap: 10px;
    }

    .section-title h3 {
        font-size: 1rem;
    }

    .arrow-btn {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 12px 15px;
    }

    .nav-link {
        padding: 5px 8px !important;
        font-size: 0.75rem !important;
        margin: 0 2px;
    }

    /* Ícono de usuario en móvil pequeño */
    .nav-actions {
        gap: 12px;
    }

    .nav-actions a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .nav-actions a i {
        font-size: 1.1rem;
    }

    .main-layout.layout-v2 {
        padding: 12px 15px 15px !important;
        gap: 15px !important;
    }

    .logo-placeholder {
        height: 150px !important;
        margin-bottom: 15px !important;
    }

    .premium-afiliate-card {
        max-width: 100%;
        padding: 18px 15px;
    }

    .pac-icon {
        width: 35px !important;
        height: 25px !important;
    }

    .pac-btn-gold {
        font-size: 0.7rem !important;
    }

    .pac-text-main {
        font-size: 1.3rem !important;
    }

    .pac-text-sub {
        font-size: 0.8rem !important;
    }

    .pac-text-orange {
        font-size: 0.9rem !important;
    }

    .pac-text-huge {
        font-size: 2.2rem !important;
        margin-bottom: 10px !important;
    }

    .pac-btn-action {
        padding: 10px 12px !important;
        font-size: 0.8rem !important;
    }

    .hero-banner-v2 {
        padding: 20px 12px !important;
        border-radius: 12px;
    }

    .hero-text-centered h1 {
        font-size: 1.1rem;
    }

    .hero-text-centered .glow-text {
        font-size: 2rem;
        margin: -8px 0 8px 0;
    }

    .hero-text-centered p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .sparkle {
        font-size: 0.9rem;
    }

    .sparkle-1 {
        top: -8px;
        left: 2px;
    }

    .sparkle-2 {
        top: -6px;
        right: 12px;
    }

    .sparkle-3 {
        right: -18px;
    }

    .sparkle-4 {
        bottom: 6px;
        right: 25px;
    }

    .sparkle-5 {
        bottom: 0px;
        left: 8px;
    }

    .main-products {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .secondary-products {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .product-card {
        padding: 12px;
    }

    .product-image {
        height: 120px;
        margin-bottom: 8px;
    }

    .product-name {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .btn-comprar {
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .section-title h3 {
        font-size: 0.9rem;
    }

    .arrow-btn {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    /* Modal mobile */
    .modal-content {
        max-width: 95vw !important;
        padding: 25px !important;
        border-radius: 16px;
    }

    .modal-overlay.active {
        backdrop-filter: blur(3px);
    }

    .close-btn {
        top: 15px;
        right: 15px;
        width: 28px;
        height: 28px;
    }
}

:root {
    --market-yellow: #ffe600;
    --market-surface: #ffffff;
    --market-background: #ebebeb;
    --market-ink: #333333;
    --market-muted: #666666;
    --market-line: #e2e2e2;
}

body {
    align-items: flex-start;
    background: var(--market-background);
    color: var(--market-ink);
    font-size: 14px;
    padding: 0;
}

.app-container {
    max-width: none;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    background: var(--market-background);
    box-shadow: none;
    background-image: none;
}

.top-nav {
    min-height: 64px;
    justify-content: center;
    padding: 8px clamp(20px, 5vw, 72px);
    background: var(--market-yellow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    gap: 22px;
}

.main-links {
    gap: 4px;
}

.main-links a,
.nav-link {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0;
    padding: 9px 12px;
}

.main-links a:hover,
.main-links a.active,
.nav-link:hover {
    color: #111;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: none;
    transform: none;
}

.nav-actions {
    gap: 8px;
}

.nav-actions a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    box-shadow: none;
}

.nav-actions a:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.18);
    box-shadow: none;
    transform: none;
}

.nav-actions a i {
    color: #333;
    font-size: 1rem;
    filter: none;
}

.main-layout.layout-v2 {
    grid-template-columns: 190px minmax(0, 1100px);
    justify-content: center;
    gap: 24px;
    padding: 24px 28px 48px;
}

.sidebar-left {
    gap: 18px;
}

.logo-placeholder {
    height: 116px !important;
    margin-bottom: 4px !important;
}

.logo-placeholder img {
    transform: scale(1.18) !important;
    filter: none !important;
}

.premium-afiliate-card {
    border-radius: 10px;
    padding: 18px 14px;
}

.pac-text-main {
    font-size: 1.35rem;
}

.pac-text-sub,
.pac-text-orange {
    font-size: 0.8rem;
}

.pac-text-huge {
    font-size: 2.45rem;
    margin-bottom: 18px;
}

.pac-btn-action {
    padding: 10px 8px;
    font-size: 0.72rem;
}

.content-area {
    gap: 18px;
    min-width: 0;
}

.hero-banner-v2 {
    min-height: 154px;
    margin: 0;
    padding: 26px 32px;
    border-radius: 8px;
    background: linear-gradient(100deg, #fff6bf 0%, #fff 54%, #fff8d6 100%);
    border: 1px solid #f0e6a3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.hero-text-centered h1 {
    font-size: 2rem;
    color: #333;
    letter-spacing: 0;
}

.hero-text-centered .glow-text {
    color: #222;
    font-size: 2.7rem;
    letter-spacing: 0;
    text-shadow: none;
}

.hero-text-centered .glow-text span {
    color: #f58428;
}

.hero-text-centered p {
    max-width: 560px;
    margin-top: 8px;
    color: var(--market-muted);
    font-size: 0.9rem;
}

.products-grid {
    gap: 12px;
}

.main-products,
.secondary-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.secondary-products {
    margin-top: 0;
}

.product-card {
    min-width: 0;
    padding: 14px;
    background: var(--market-surface);
    border: 1px solid var(--market-line);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: #c7c7c7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 150px;
    margin-bottom: 10px;
    object-fit: contain;
    background: #fff;
}

.product-name {
    min-height: 34px;
    color: #333;
    font-size: 0.82rem;
    line-height: 1.3;
}

.product-price {
    color: #222;
    font-size: 1.25rem;
}

.product-price sup {
    font-size: 0.62em;
}

.btn-comprar {
    padding: 6px 12px;
    background: #3483fa;
    border-radius: 6px;
    font-size: 0.7rem;
}

.section-title {
    margin-top: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--market-line);
}

.section-title h3 {
    color: #333;
    font-size: 1rem;
}

.arrow-btn {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #3483fa;
    border: 1px solid var(--market-line);
}

@media (max-width: 992px) {
    .main-layout.layout-v2 {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin: 0 auto;
    }

    .sidebar-left {
        display: grid;
        grid-template-columns: 150px minmax(0, 280px);
        justify-content: center;
        align-items: center;
    }

    .logo-placeholder {
        height: 90px !important;
    }
}

@media (max-width: 600px) {
    .top-nav {
        padding: 8px 12px;
    }

    .main-links {
        justify-content: center !important;
    }

    .main-links a,
    .nav-link {
        padding: 7px 6px;
        font-size: 0.72rem;
    }

    .nav-actions {
        display: none;
    }

    .main-layout.layout-v2 {
        padding: 14px 12px 30px !important;
    }

    .sidebar-left {
        grid-template-columns: 1fr;
    }

    .logo-placeholder {
        width: 150px !important;
        margin: 0 auto !important;
    }

    .hero-banner-v2 {
        padding: 20px 18px !important;
    }

    .hero-text-centered h1 {
        font-size: 1.3rem;
    }

    .hero-text-centered .glow-text {
        font-size: 2rem;
    }

    .hero-text-centered p {
        font-size: 0.8rem;
    }

    .main-products,
    .secondary-products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .product-card {
        padding: 10px;
    }

    .product-image {
        height: 112px;
    }
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px 12px;
}

.menu-toggle:hover {
    color: var(--accent-orange);
}

.menu-toggle.active {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(12, 19, 38, 0.98), rgba(7, 13, 26, 0.98));
        border-bottom: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        gap: 5px !important;
        padding: 15px 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
        width: 100%;
        margin: 0 !important;
        z-index: 99;
    }

    .main-links.active {
        max-height: 500px;
    }

    .nav-link {
        width: 100%;
        padding: 12px 20px !important;
        border-radius: 0;
        margin: 0 !important;
    }

    /* Ícono de usuario en móvil */
    .nav-actions {
        gap: 15px;
    }

    .nav-actions a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .nav-actions a i {
        font-size: 1.2rem;
    }
}


body {
    align-items: center;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    padding: 20px;
}

.app-container {
    max-width: 1400px;
    min-height: 0;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    background: radial-gradient(circle at top right, #172445 0%, #0a101f 60%, #050811 100%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px), radial-gradient(rgba(245, 132, 40, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px;
}

.top-nav {
    background: linear-gradient(180deg, rgba(26, 39, 69, 0.4), rgba(12, 19, 38, 0.2));
    border-bottom: 1px solid rgba(245, 132, 40, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.main-links a,
.nav-link {
    color: var(--text-secondary);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(245, 132, 40, 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.main-links a:hover,
.main-links a.active,
.nav-link:hover {
    color: var(--text-primary);
    background: linear-gradient(180deg, rgba(245, 132, 40, 0.25), rgba(245, 132, 40, 0.08));
    border-color: rgba(245, 132, 40, 0.5);
}

.nav-actions a {
    background: linear-gradient(135deg, rgba(245, 132, 40, 0.15), rgba(245, 132, 40, 0.05));
    border: 2px solid rgba(245, 132, 40, 0.3);
}

.nav-actions a i {
    color: var(--text-primary);
}

.hero-banner-v2 {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-text-centered h1,
.hero-text-centered .glow-text {
    color: var(--text-primary);
}

.hero-text-centered .glow-text {
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.hero-text-centered p {
    color: #c7d2e8;
}

.product-card,
.product-card-small {
    background: linear-gradient(180deg, #1b2a4a 0%, #0d1527 100%);
    border-color: rgba(163, 178, 207, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.product-card:hover {
    border-color: rgba(163, 178, 207, 0.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.product-image {
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.6));
}

.product-name,
.product-price,
.section-title h3 {
    color: #ffffff;
}

.btn-comprar {
    background: linear-gradient(180deg, #f58428, #c7560d);
    border-color: #ff9e4f;
    box-shadow: 0 4px 10px rgba(245, 132, 40, 0.4);
}

.section-title {
    border-bottom-color: rgba(255,255,255,0.1);
}

.arrow-btn {
    background: rgba(255,255,255,0.1);
    border: 0;
    color: white;
}

body {
    align-items: center;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-size: 16px;
    padding: 20px;
}

.app-container {
    max-width: 1400px;
    min-height: 0;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    background: radial-gradient(circle at top right, #172445 0%, #0a101f 60%, #050811 100%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px), radial-gradient(rgba(245, 132, 40, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 20px 20px;
}

.top-nav {
    min-height: 0;
    justify-content: flex-end;
    padding: 20px 40px;
    background: linear-gradient(180deg, rgba(26, 39, 69, 0.4), rgba(12, 19, 38, 0.2));
    border-bottom: 1px solid rgba(245, 132, 40, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    gap: 30px;
}

.main-links {
    gap: 15px;
}

.main-links a,
.nav-link {
    color: var(--text-secondary);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(245, 132, 40, 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 15px;
    padding: 10px 16px;
}

.nav-actions {
    gap: 20px;
}

.nav-actions a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(245, 132, 40, 0.15), rgba(245, 132, 40, 0.05));
    border: 2px solid rgba(245, 132, 40, 0.3);
    border-radius: 12px;
}

.nav-actions a i {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.main-layout.layout-v2 {
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 20px 50px 50px;
}

.sidebar-left {
    gap: 30px;
}

.logo-placeholder {
    height: 180px !important;
    margin-bottom: 30px !important;
}

.logo-placeholder img {
    transform: scale(1.6) !important;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2)) !important;
}

.premium-afiliate-card {
    border-radius: 12px;
    padding: 20px 10px;
}

.pac-text-main {
    font-size: 1.6rem;
}

.pac-text-sub,
.pac-text-orange {
    font-size: 1.1rem;
}

.pac-text-huge {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.pac-btn-action {
    padding: 15px;
    font-size: 1.1rem;
}

.content-area {
    gap: 30px;
    min-width: 0;
}

.hero-banner-v2 {
    min-height: 0;
    margin-top: 10px;
    margin-bottom: 30px;
    padding: 0;
    border-radius: 0;
}

.hero-text-centered h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-text-centered .glow-text {
    font-size: 4.2rem;
    letter-spacing: 0;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.hero-text-centered p {
    max-width: 650px;
    margin-top: 15px;
    color: #c7d2e8;
    font-size: 1.4rem;
}

.products-grid {
    gap: 20px;
}

.main-products,
.secondary-products {
    grid-template-columns: repeat(3, 1fr);
}

.secondary-products {
    margin-top: -10px;
}

.product-card {
    padding: 20px;
    background: linear-gradient(180deg, #1b2a4a 0%, #0d1527 100%);
    border: 1px solid rgba(163, 178, 207, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.product-image {
    height: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.6));
}

.product-name {
    min-height: 0;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.9rem;
}

.product-price {
    color: #ffffff;
    font-size: 1.6rem;
}

.product-price sup {
    font-size: 0.9rem;
}

.btn-comprar {
    padding: 6px 18px;
    background: linear-gradient(180deg, #f58428, #c7560d);
    border: 1px solid #ff9e4f;
    border-radius: 8px;
    font-size: 0.8rem;
}

.section-title {
    margin-top: 10px;
    padding-bottom: 0;
    border-bottom: 0;
}

.section-title h3 {
    color: #ffffff;
    font-size: 1.2rem;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    color: white;
}

@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 200px 1fr 220px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-left,
    .sidebar-right {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .app-container {
        border-radius: 16px;
        max-width: 100%;
    }

    .top-nav {
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(12, 19, 38, 0.98), rgba(7, 13, 26, 0.98));
        flex-direction: column;
        gap: 5px !important;
        padding: 15px 0 !important;
        max-height: 0;
        overflow: hidden;
        width: 100%;
        margin: 0 !important;
        z-index: 99;
    }

    .main-links.active {
        max-height: 500px;
    }

    .nav-link {
        width: 100%;
        padding: 12px 20px !important;
        border-radius: 0;
        margin: 0 !important;
    }

    .nav-actions {
        gap: 15px;
    }

    .nav-actions a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .main-layout.layout-v2 {
        grid-template-columns: 1fr !important;
        padding: 15px 20px 20px !important;
        gap: 20px !important;
    }

    .sidebar-left {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .logo-placeholder {
        height: 200px !important;
        margin-bottom: 20px !important;
    }

    .premium-afiliate-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-banner-v2 {
        padding: 25px 15px !important;
    }

    .hero-text-centered h1 {
        font-size: 1.4rem;
    }

    .hero-text-centered .glow-text {
        font-size: 2.5rem;
    }

    .hero-text-centered p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .main-products,
    .secondary-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .product-card {
        padding: 15px;
    }

    .product-image {
        height: 130px;
        margin-bottom: 10px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .btn-comprar {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

.top-nav .nav-link,
.main-links a {
    font-size: 0.85rem;
}

.hero-text-centered h1 {
    font-size: 3rem;
}

.hero-text-centered .glow-text {
    font-size: 3.6rem;
}

.hero-text-centered p {
    font-size: 1.05rem;
}

.product-name {
    font-size: 0.82rem;
}

.product-price {
    font-size: 1.35rem;
}

.section-title h3 {
    font-size: 1.05rem;
}

.pac-text-main {
    font-size: 1.5rem;
}

.pac-text-sub,
.pac-text-orange {
    font-size: 0.95rem;
}

.pac-text-huge {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .hero-text-centered h1 {
        font-size: 1.25rem;
    }

    .hero-text-centered .glow-text {
        font-size: 2.2rem;
    }

    .hero-text-centered p {
        font-size: 0.85rem;
    }

    .product-name {
        font-size: 0.76rem;
    }

    .product-price {
        font-size: 1.15rem;
    }

    .section-title h3 {
        font-size: 0.95rem;
    }
}

:root {
    --surface-raised: rgba(24, 38, 68, 0.82);
    --surface-border: rgba(255, 255, 255, 0.12);
    --accent-soft: rgba(245, 132, 40, 0.16);
}

body {
    background:
        radial-gradient(circle at 12% 12%, rgba(245, 132, 40, 0.12), transparent 28rem),
        radial-gradient(circle at 88% 80%, rgba(68, 113, 190, 0.16), transparent 32rem),
        var(--bg-dark);
    font-size: 14px;
}

.app-container {
    isolation: isolate;
    background-color: #080e1d;
    border-color: var(--surface-border);
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
}

.nav-link {
    border-color: transparent;
    box-shadow: none;
}

.nav-link.active {
    color: #fff;
    background: var(--accent-soft);
    border-color: rgba(245, 132, 40, 0.36);
}

.hero-banner-v2 {
    padding: clamp(24px, 5vw, 56px) 24px 34px;
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(34, 52, 88, 0.72), rgba(10, 16, 31, 0.5)),
        radial-gradient(circle at 80% 20%, rgba(245, 132, 40, 0.2), transparent 18rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-text-centered h1 {
    font-weight: 600;
    letter-spacing: 0;
}

.hero-text-centered .glow-text {
    color: #fff;
    text-shadow: 0 0 22px rgba(245, 132, 40, 0.28);
}

.product-card {
    border-color: var(--surface-border);
    background: linear-gradient(160deg, var(--surface-raised), rgba(8, 14, 29, 0.94));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 132, 40, 0.55);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(245, 132, 40, 0.08);
}

.product-image {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.7));
}

.section-title {
    align-items: center;
    margin-top: 6px;
}

.section-title h3 {
    letter-spacing: 0.14em;
}

.arrow-btn {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.arrow-btn:hover {
    background: var(--accent-soft);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-banner-v2 {
        padding: 26px 16px;
        border-radius: 18px;
    }

    .main-products,
    .secondary-products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .app-container {
        border: 0;
        border-radius: 0;
    }

    .main-layout.layout-v2 {
        padding-inline: 14px !important;
    }

    .main-products,
    .secondary-products {
        grid-template-columns: 1fr !important;
    }

    .product-card {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 14px;
        align-items: center;
    }

    .product-image {
        height: 110px;
        margin: 0;
    }
}

@media (max-width: 760px) {
    .top-nav {
        position: relative;
        min-height: 86px;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0;
        padding: 4px 14px 0 !important;
    }

    .brand-logo {
        position: relative;
        z-index: 2;
        height: 82px;
        margin-right: auto;
    }

    .brand-logo img {
        width: 200px !important;
        height: 82px !important;
        transform: translateY(3px) !important;
        filter: sepia(0.35) saturate(1.45) drop-shadow(0 5px 5px rgba(97, 55, 8, 0.28)) !important;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: flex;
        width: 42px;
        height: 42px;
        margin-top: 14px;
        padding: 8px;
        align-items: center;
        justify-content: center;
    }

    .main-links {
        top: 86px;
        left: 0;
        right: 0;
        width: 100%;
        align-items: stretch;
        gap: 0 !important;
        padding: 8px 12px !important;
        border-top: 1px solid rgba(245, 132, 40, 0.22);
        border-bottom: 1px solid rgba(245, 132, 40, 0.3);
        box-sizing: border-box;
    }

    .main-links .nav-link {
        width: 100%;
        min-height: 42px;
        justify-content: flex-start;
        padding: 10px 16px !important;
        text-align: left;
    }
}

.cart-toggle {
    position: relative;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
}

.cart-toggle::before {
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 132, 40, 0.62), transparent 68%);
    content: '';
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-toggle:hover {
    background: rgba(245, 132, 40, 0.24);
    box-shadow: 0 0 18px rgba(245, 132, 40, 0.48), inset 0 0 0 1px rgba(255, 190, 120, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.cart-toggle:hover::before {
    opacity: 1;
    transform: scale(1.18);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 0.68rem;
    line-height: 18px;
    text-align: center;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    width: min(390px, 100%);
    height: 100vh;
    padding: 28px 22px;
    background: #101b34;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
    transform: translateX(105%);
    transition: transform 0.25s ease;
}

.cart-panel.active {
    transform: translateX(0);
}

.cart-panel-header,
.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-eyebrow {
    color: var(--accent-orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-panel h2 {
    margin-top: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
}

.cart-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin: 24px 0;
}

.cart-empty,
.cart-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 10px;
    object-fit: cover;
    background: #fff;
}

.cart-item-info {
    min-width: 0;
    flex: 1;
}

.cart-item-info strong,
.cart-item-info > span {
    display: block;
}

.cart-item-info strong {
    overflow: hidden;
    margin-bottom: 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.85rem;
}

.cart-item-info > span {
    color: var(--accent-orange);
    font-size: 0.82rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.8rem;
}

.cart-item-controls button {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.cart-item-controls .cart-remove {
    width: auto;
    margin-left: auto;
    padding: 0 6px;
    border: 0;
    background: transparent;
    color: #ff9b86;
    font-size: 0.72rem;
}

.cart-summary {
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-summary strong {
    color: var(--accent-orange);
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
}

.cart-checkout:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.cart-note {
    margin-top: 12px;
    text-align: center;
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cart-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 480px) {
    .cart-panel {
        padding: 22px 16px;
    }
}

.payment-result {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--bg-dark);
}

.payment-result-card {
    width: min(520px, 100%);
    padding: 42px 32px;
    border: 1px solid var(--surface-border);
    border-radius: 18px;
    background: linear-gradient(160deg, var(--surface-raised), rgba(8, 14, 29, 0.94));
    text-align: center;
}

.payment-result-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-orange);
    font-size: 1.3rem;
}

.payment-result-card h1 {
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
}

.payment-result-card p {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.product-card-small {
    height: auto;
    min-height: 250px;
    align-items: stretch;
    justify-content: flex-start;
}

.product-card-small .product-image {
    height: 120px;
    flex: 0 0 120px;
}

.product-card .product-image {
    background: transparent !important;
}

.sidebar-left .premium-afiliate-card {
    margin-top: 64px;
}

.home-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.45s ease;
}

.home-carousel-track .product-card {
    min-width: 100%;
}

.main-carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    inset: 50% 14px auto;
    z-index: 3;
    transform: translateY(-50%);
    pointer-events: none;
}

.secondary-carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    inset: 50% 10px auto;
    z-index: 3;
    transform: translateY(-50%);
    pointer-events: none;
}

.main-carousel-controls .arrow-btn,
.secondary-carousel-controls .arrow-btn {
    pointer-events: auto;
}

@media (min-width: 993px) {
    .main-layout.layout-v2 {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    .content-area {
        order: 1;
        width: 100%;
    }

    .sidebar-left {
        order: 2;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
        width: 100%;
    }

    .sidebar-left .premium-afiliate-card {
        margin-top: 0;
    }

    .home-carousel-viewport:first-of-type {
        min-height: 330px;
    }

    .main-products.home-carousel-track .product-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
        min-height: 330px;
        padding: 42px 64px;
        border: 0;
        border-radius: 0;
        background:
            linear-gradient(105deg, #fff0a8 0%, #fff8d4 48%, #ffe16c 100%);
        box-shadow: none;
        color: #2c2210;
    }

    .main-products.home-carousel-track .product-image {
        grid-column: 2;
        grid-row: 1;
        height: 250px;
        margin: 0;
        filter: drop-shadow(0 20px 18px rgba(62, 39, 0, 0.28));
    }

    .main-products.home-carousel-track .product-info {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        max-width: 540px;
        margin: 0;
    }

    .main-products.home-carousel-track .product-name {
        margin-bottom: 18px;
        color: #251d0f;
        font-family: 'Outfit', sans-serif;
        font-size: 2rem;
        font-weight: 800;
    }

    .main-products.home-carousel-track .product-price {
        color: #251d0f;
        font-size: 2rem;
    }

    .main-products.home-carousel-track .product-bottom {
        justify-content: flex-start;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .main-products.home-carousel-track .product-card {
        min-height: 320px;
        padding: 28px 22px;
    }

    .main-products.home-carousel-track .product-image {
        height: 150px;
    }

    .main-products.home-carousel-track .product-name {
        font-size: 1.35rem;
    }
}

.store-page {
    min-height: 100vh;
    background: var(--bg-dark);
    color: var(--text-primary);
}

.store-shell {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 32px 24px 56px;
}

.store-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 24px 0;
}

.store-heading h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
}

.store-heading p {
    max-width: 620px;
    margin-top: 8px;
    color: var(--text-secondary);
}

.store-toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.store-search,
.store-sort {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: inherit;
}

.store-search {
    flex: 1;
    padding: 0 14px;
}

.store-sort {
    padding: 0 12px;
}

.store-sort option {
    color: #111;
}

.store-results {
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.store-products-grid .product-card {
    min-width: 0;
}

.store-empty {
    grid-column: 1 / -1;
    padding: 40px 20px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    color: var(--text-secondary);
    text-align: center;
}

.top-nav {
    padding-top: 6px !important;
    padding-bottom: 0 !important;
}

@media (max-width: 760px) {
    .top-nav {
        padding-top: 4px !important;
        padding-bottom: 0 !important;
    }
}

.main-layout.layout-v2 {
    display: block;
    padding-top: 24px;
}

.hero-intro-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: start;
    gap: 22px;
    margin-bottom: 24px;
}

.hero-intro-row .hero-banner-v2 {
    min-height: 0;
    margin: 0;
    align-self: start;
    padding: 16px 28px 18px;
}

.hero-intro-row .hero-text-centered h1 {
    font-size: 2rem;
}

.hero-intro-row .hero-text-centered .glow-text {
    font-size: 2.8rem;
}

.hero-intro-row .hero-text-centered p {
    max-width: 680px;
    margin: 10px auto 0;
    font-size: 0.85rem;
    line-height: 1.45;
}

.hero-intro-row .premium-afiliate-card {
    width: 100%;
    max-width: none;
    align-self: start;
    margin: 0;
    padding: 12px 10px;
    border-radius: 12px;
}

.hero-intro-row .premium-afiliate-card .pac-icon {
    width: 30px;
    height: 24px;
    margin-bottom: 5px;
}

.hero-intro-row .premium-afiliate-card .pac-btn-gold {
    margin-bottom: 6px;
    padding: 3px 8px;
    font-size: 0.62rem;
}

.hero-intro-row .pac-text-main {
    font-size: 1.05rem;
}

.hero-intro-row .pac-text-sub,
.hero-intro-row .pac-text-orange {
    font-size: 0.65rem;
}

.hero-intro-row .pac-text-sub {
    margin-bottom: 5px;
}

.hero-intro-row .pac-text-huge {
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.hero-intro-row .pac-btn-action {
    padding: 7px 6px;
    font-size: 0.62rem;
}

@media (max-width: 760px) {
    .brand-logo img {
        width: 180px;
        height: 72px;
    }

    .top-nav {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .main-layout.layout-v2 {
        width: 100%;
        max-width: none;
    }

    .hero-intro-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-intro-row .hero-banner-v2 {
        padding: 20px 16px;
    }

    .hero-intro-row .hero-text-centered h1 {
        font-size: 1.35rem;
    }

    .hero-intro-row .hero-text-centered .glow-text {
        font-size: 2.2rem;
    }

    .hero-intro-row .hero-text-centered p {
        font-size: 0.78rem;
    }

    .hero-intro-row .premium-afiliate-card {
        max-width: 280px;
        margin: 0 auto;
    }
}

.site-footer {
    margin-top: 32px;
    padding: 28px 36px 22px;
    border-top: 1px solid rgba(245, 132, 40, 0.18);
    background: linear-gradient(180deg, rgba(16, 28, 53, 0.52), rgba(5, 8, 17, 0.62));
}

.footer-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-benefit {
    min-height: 190px;
    padding: 24px 20px;
    background: rgba(13, 25, 48, 0.94);
    text-align: center;
}

.footer-benefit i {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    place-items: center;
    border: 1px solid rgba(245, 132, 40, 0.35);
    border-radius: 50%;
    background: rgba(245, 132, 40, 0.12);
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.footer-benefit h3 {
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.footer-benefit p,
.footer-benefit a,
.footer-panel-link span,
.footer-contact,
.footer-more {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

.footer-benefit p {
    min-height: 38px;
    margin-bottom: 12px;
}

.footer-benefit a,
.footer-more a {
    color: #f7b36c;
    text-decoration: none;
}

.footer-benefit a:hover,
.footer-more a:hover {
    color: #fff;
}

.footer-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.footer-panel-link {
    display: flex;
    min-height: 82px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: var(--transition);
}

.footer-panel-link:hover {
    border-color: rgba(245, 132, 40, 0.42);
    background: rgba(245, 132, 40, 0.1);
    transform: translateY(-2px);
}

.footer-panel-link strong {
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 6px 20px;
    text-align: center;
}

.footer-contact i {
    margin-right: 6px;
    color: var(--accent-orange);
}

.footer-contact strong {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
}

.footer-more {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-more-toggle {
    margin-bottom: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.footer-more nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

@media (max-width: 700px) {
    .site-footer {
        padding: 22px 16px 18px;
    }

    .footer-benefits,
    .footer-panels {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        align-items: stretch;
        flex-direction: column;
    }
}

.split-carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.split-carousel-column {
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(9, 16, 32, 0.72);
}

.split-carousel-left {
    background: linear-gradient(145deg, rgba(245, 132, 40, 0.13), rgba(9, 16, 32, 0.82) 48%);
}

.split-carousel-right {
    background: linear-gradient(145deg, rgba(68, 113, 190, 0.16), rgba(9, 16, 32, 0.82) 48%);
}

.split-carousel-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 4px 12px;
}

.split-carousel-heading h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.split-carousel-heading span {
    color: var(--text-secondary);
    font-size: 0.72rem;
}

.split-carousel .home-carousel-viewport {
    height: clamp(310px, 32vw, 410px);
    border-radius: 12px;
}

.split-carousel .home-carousel-track {
    flex-direction: column;
    height: 100%;
    gap: 12px;
}

.split-carousel .home-carousel-track .product-card {
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    min-width: 0;
    min-height: 0;
    height: 100%;
    padding: 24px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(8, 14, 29, 0.96));
    box-shadow: none;
}

.split-carousel .home-carousel-track .product-image {
    width: 44%;
    height: 190px;
    flex: 0 0 44%;
    margin: 0;
}

.split-carousel .home-carousel-track .product-info {
    min-width: 0;
    margin: 0;
}

.split-carousel .home-carousel-track .product-name {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.split-carousel .home-carousel-track .product-price {
    font-size: 1.35rem;
}

.split-carousel .carousel-controls {
    justify-content: center;
    margin-top: 12px;
}

.split-carousel-column:hover .home-carousel-track {
    transition-duration: 0.6s;
}

@media (max-width: 760px) {
    .split-carousel {
        grid-template-columns: 1fr;
    }

    .split-carousel .home-carousel-viewport {
        height: 300px;
    }

    .split-carousel .home-carousel-track .product-image {
        height: 145px;
    }
}

@media (max-width: 760px) {
    .store-heading {
        display: block;
    }

    .store-heading h1 {
        font-size: 1.9rem;
    }

    .store-toolbar {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .store-shell {
        padding-inline: 14px;
    }

    .store-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Ajuste tipografico final para mantener una escala comoda en todas las pantallas. */
.top-nav .nav-link,
.main-links a {
    font-size: 0.8rem;
}

.hero-text-centered h1 {
    font-size: 2.8rem;
}

.hero-text-centered .glow-text {
    font-size: 3.3rem;
}

.hero-text-centered p {
    font-size: 0.9rem;
}

.product-name {
    font-size: 0.75rem;
}

.product-price {
    font-size: 1.2rem;
}

.section-title h3 {
    font-size: 0.95rem;
}

.pac-text-main {
    font-size: 1.3rem;
}

.pac-text-sub,
.pac-text-orange {
    font-size: 0.8rem;
}

.pac-text-huge {
    font-size: 2.7rem;
}

@media (max-width: 768px) {
    .hero-text-centered h1 {
        font-size: 1.1rem;
    }

    .hero-text-centered .glow-text {
        font-size: 2rem;
    }

    .hero-text-centered p {
        font-size: 0.75rem;
    }

    .product-name {
        font-size: 0.7rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .section-title h3 {
        font-size: 0.85rem;
    }
}

.top-nav {
    padding-top: 6px !important;
    padding-bottom: 0 !important;
}

@media (max-width: 760px) {
    .top-nav {
        padding-top: 4px !important;
        padding-bottom: 0 !important;
    }
}
