/* 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: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.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 i {
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-actions a:hover i {
    color: var(--accent-orange);
    transform: scale(1.1);
}

/* 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-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(180deg, #df9510, #a9680c);
    color: #fff;
    width: 100%;
    padding: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    position: relative;
    z-index: 1;
}
.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(180deg, #df9510, #a9680c);
    color: #fff;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.hero-banner-v2 {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 10px;
}
.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;
    }
}
