/* ========================================
   SPECIAL.HTML - Estilos Específicos
   ======================================== */

/* ========================================
   HERO SECTION - Premium +18 Design
   ======================================== */

/* Static Premium Gradient Background (performance optimized) */
.hero-18 {
    min-height: auto;
    padding: 6rem 1rem 2rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a1f 0%, #2d1b69 35%, #4a1942 65%, #1a0a1f 100%);
}

/* Static Overlay Pattern (performance optimized) */
.hero-18::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(196, 30, 58, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(183, 110, 121, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(45, 27, 105, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Static Starfield Pattern (performance optimized - no animation) */
.hero-18::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 20px 30px, rgba(255, 107, 157, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 40px 70px, rgba(212, 175, 55, 0.5), transparent),
        radial-gradient(1px 1px at 50px 160px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1.5px 1.5px at 90px 40px, rgba(183, 110, 121, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 107, 157, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 160px 120px, rgba(212, 175, 55, 0.6), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 250px 150px, rgba(183, 110, 121, 0.4), transparent),
        radial-gradient(1.5px 1.5px at 300px 30px, rgba(255, 107, 157, 0.5), transparent),
        radial-gradient(2px 2px at 350px 100px, rgba(212, 175, 55, 0.4), transparent);
    background-repeat: repeat;
    background-size: 400px 200px;
    pointer-events: none;
    opacity: 0.8;
}

/* Glassmorphism Content Container */
.hero-18-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo with Glow Effect */
.hero-logo {
    display: block;
    margin: 0 auto 2rem;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.5)) drop-shadow(0 0 60px rgba(196, 30, 58, 0.3)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    animation: logoEntrance 1s ease-out 0.3s backwards, logoGlow 4s ease-in-out infinite 1.3s;
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.5)) drop-shadow(0 0 60px rgba(196, 30, 58, 0.3)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
        transform: translateY(0);
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.7)) drop-shadow(0 0 80px rgba(196, 30, 58, 0.5)) drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
        transform: translateY(-8px);
    }
}

/* Title with Gradient Text */
.hero-18-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 50%, #d4af37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: titleEntrance 0.8s ease-out 0.3s backwards;
}

@keyframes titleEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle with subtle animation */
.hero-18-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    animation: subtitleEntrance 0.8s ease-out 0.4s backwards;
}

@keyframes subtitleEntrance {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HERO FEATURE CARDS
   ======================================== */

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    animation: featuresEntrance 0.8s ease-out 0.5s backwards;
}

@keyframes featuresEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 0.875rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-card .feature-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.feature-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.feature-card p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.35;
}

/* Premium CTA Button */
.hero-18-content .cta-button {
    background: linear-gradient(135deg, #c41e3a 0%, #ff6b9d 50%, #d4af37 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px rgba(196, 30, 58, 0.4),
        0 0 40px rgba(255, 107, 157, 0.2);
    animation: ctaEntrance 1s ease-out 0.9s backwards, ctaGradient 5s ease infinite;
}

@keyframes ctaEntrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-18-content .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-18-content .cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(196, 30, 58, 0.5),
        0 0 60px rgba(255, 107, 157, 0.4);
}

.hero-18-content .cta-button:hover::before {
    left: 100%;
}

.hero-18-content .cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* ========================================
   PREMIUM FOOTER
   ======================================== */

.footer-premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #1a0a1f, #2d1b69, #c41e3a, #1a0a1f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 2.5rem 1rem;
}

/* Footer Particles */
.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 30px 20px, rgba(255, 107, 157, 0.6), transparent),
        radial-gradient(2px 2px at 80px 50px, rgba(212, 175, 55, 0.5), transparent),
        radial-gradient(2px 2px at 150px 30px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 200px 60px, rgba(183, 110, 121, 0.5), transparent),
        radial-gradient(2px 2px at 280px 25px, rgba(255, 107, 157, 0.4), transparent);
    background-repeat: repeat;
    background-size: 350px 100px;
    animation: particleFloat 25s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

/* ========================================
   COMPACT FOOTER
   ======================================== */

.footer-compact {
    background: linear-gradient(135deg, rgba(26, 10, 31, 0.95), rgba(45, 27, 105, 0.95));
    padding: 0.75rem 1rem;
    padding-bottom: 5rem;
    /* Space for fixed cart */
    border-top: 1px solid rgba(255, 107, 157, 0.15);
}

.footer-compact-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cherry Icon with Animation */
.footer-cherry {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 6px rgba(255, 107, 157, 0.5));
    animation: cherryBounce 3s ease-in-out infinite;
}

@keyframes cherryBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-5deg);
    }

    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

.footer-cherry:hover {
    animation: cherrySpin 0.6s ease-in-out;
    filter: drop-shadow(0 0 12px rgba(255, 107, 157, 0.8));
}

@keyframes cherrySpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.footer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.footer-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff6b9d;
    padding: 2px 8px;
    background: rgba(255, 107, 157, 0.15);
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.footer-social-compact {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.footer-social-compact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social-compact a:hover {
    background: rgba(255, 107, 157, 0.2);
    color: #ff6b9d;
    transform: scale(1.1);
}

.footer-social-compact svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   HERO PLATFORM LINKS (inline)
   ======================================== */

.hero-platforms {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: featuresEntrance 0.8s ease-out 1s backwards;
}

.platforms-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.platforms-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.platforms-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    user-select: none;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on hover */
.platform-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.platform-link:hover::before {
    left: 100%;
}

.platform-logo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.platform-link:hover .platform-logo {
    transform: scale(1.15);
}

/* Privacy — orange theme (brand color) */
.platform-privacy {
    background: rgba(243, 146, 55, 0.1);
    color: rgba(251, 176, 64, 0.95);
    border: 1px solid rgba(243, 146, 55, 0.2);
}

.platform-privacy:hover {
    background: rgba(243, 146, 55, 0.2);
    color: #fbb040;
    border-color: rgba(243, 146, 55, 0.4);
    box-shadow: 0 0 16px rgba(243, 146, 55, 0.25);
    transform: translateY(-1px);
}

/* OnlyFans — blue/verified theme */
.platform-onlyfans {
    background: rgba(0, 174, 239, 0.1);
    color: rgba(56, 189, 248, 0.9);
    border: 1px solid rgba(0, 174, 239, 0.2);
}

.platform-onlyfans:hover {
    background: rgba(0, 174, 239, 0.2);
    color: #38bdf8;
    border-color: rgba(0, 174, 239, 0.4);
    box-shadow: 0 0 16px rgba(0, 174, 239, 0.2);
    transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 520px) {
    .hero-platforms {
        gap: 0.4rem;
    }

    .platforms-label {
        font-size: 0.78rem;
    }
}

/* Age Warning */
.age-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.age-warning h3 {
    color: #ff4444;
    margin-bottom: 1rem;
}

/* ========================================
   PREMIUM FORM SECTION
   ======================================== */

.form-section {
    position: relative;
    background: linear-gradient(-45deg, #1a0a1f, #2d1b69, #1a0a1f, #2d1b69);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    padding: 4rem 1rem;
    overflow: hidden;
}

/* Particles overlay for form section */
.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 50px 50px, rgba(255, 107, 157, 0.5), transparent),
        radial-gradient(2px 2px at 150px 100px, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(2px 2px at 250px 50px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 350px 120px, rgba(183, 110, 121, 0.4), transparent);
    background-repeat: repeat;
    background-size: 400px 150px;
    animation: particleFloat 30s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

.form-section .container {
    position: relative;
    z-index: 10;
}

/* Section Title Premium */
.form-section .section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 50%, #d4af37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
}

.form-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Form Container */
.form-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   PREMIUM FORM CARDS
   ======================================== */

.form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.form-card:hover {
    border-color: rgba(255, 107, 157, 0.25);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.header-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.required {
    color: #ff6b9d;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 4px;
    text-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.optional {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.price-info {
    color: #d4af37;
    font-size: 0.85rem;
    background: rgba(212, 175, 55, 0.15);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Form Group */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Select and Inputs */
.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.form-group select option {
    background: #2d1b69;
    color: #fff;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   PREMIUM CHECKBOX ITEMS
   ======================================== */

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.checkbox-item {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 56px;
    position: relative;
    overflow: hidden;
}

/* Animated glow effect on hover */
.checkbox-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s ease;
}

.checkbox-item:hover::before {
    left: 100%;
}

.checkbox-item:hover {
    background: rgba(255, 107, 157, 0.12);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
}

.checkbox-item.selected,
.checkbox-item:has(input[type="checkbox"]:checked) {
    background: rgba(255, 107, 157, 0.15);
    border-color: #ff6b9d;
    box-shadow: 0 0 25px rgba(255, 107, 157, 0.3);
    animation: selectedPulse 2s ease-in-out infinite;
}

@keyframes selectedPulse {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(255, 107, 157, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 107, 157, 0.5);
    }
}

.checkbox-item input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    accent-color: #ff6b9d;
    cursor: pointer;
    border-radius: 4px;
}

.checkbox-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    justify-self: start !important;
}

.checkbox-price {
    color: #d4af37;
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    justify-self: end !important;
    position: relative;
    overflow: hidden;
}

/* Price badge - static style (animation removed for performance) */

/* ========================================
   PREMIUM HEADER
   ======================================== */

.header {
    background: rgba(26, 10, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Animated gradient border bottom */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #c41e3a, #ff6b9d, #d4af37, #ff6b9d, #c41e3a);
    background-size: 200% 100%;
    animation: headerBorderGlow 4s linear infinite;
}

@keyframes headerBorderGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.header .logo-img {
    height: 56px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.3));
}

.header .logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5));
}

.header .nav {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px;
}

.header .nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.header .nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #d4af37);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header .nav-link:hover {
    color: #fff;
    background: rgba(255, 107, 157, 0.15);
}

.header .nav-link:hover::before {
    width: 60%;
}

.header .nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 14px;
    font-size: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header .nav-toggle:hover {
    background: rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.4);
}

/* ========================================
   PREMIUM FOOTER CART
   ======================================== */

.footer-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(26, 10, 31, 0.98), rgba(45, 27, 105, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.footer-cart-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-cart-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-cart-summary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.footer-cart-icon-wrapper {
    position: relative;
}

.footer-cart-icon {
    width: 28px;
    height: 28px;
    color: #ff6b9d;
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.5));
}

.footer-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #c41e3a, #ff6b9d);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.footer-cart-info {
    color: #fff;
}

.footer-cart-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-cart-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
}

.footer-cart-expand-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.footer-checkout-btn {
    background: linear-gradient(135deg, #c41e3a, #ff6b9d);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.footer-checkout-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
}

.footer-checkout-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    cursor: not-allowed;
}

.footer-checkout-btn svg {
    width: 18px;
    height: 18px;
}

.footer-cart-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.footer-cart.expanded .footer-cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.footer-cart.expanded .footer-cart-expand-icon {
    transform: rotate(180deg);
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
}

.language-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.4);
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 10, 31, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 12px;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    min-width: 150px;
    overflow: hidden;
}

.language-dropdown.show {
    display: block;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.language-option:hover {
    background: rgba(255, 107, 157, 0.15);
    color: #fff;
}

.language-option.active {
    background: linear-gradient(135deg, #c41e3a, #ff6b9d);
    color: white;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-18 {
        min-height: 60vh;
        padding: 2rem 1rem;
        padding-top: 100px;
        /* Compensar header fixo */
    }

    .hero-18-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 0 1rem;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }

    .hero-18-title {
        font-size: 2.2rem;
    }

    .hero-18-subtitle {
        font-size: 0.9rem;
    }

    .hero-18-content .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Reduce particle density on mobile */
    .hero-18::after {
        background-size: 300px 150px;
    }

    /* Mobile Typography - Smaller fonts for better space usage */
    .form-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .form-section .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .price-info {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }

    .checkbox-price {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .checkbox-item {
        padding: 10px 12px;
        min-height: 48px;
        gap: 8px;
    }

    .form-group select,
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 12px 14px;
    }

    /* Feature cards text */
    .feature-card h3 {
        font-size: 0.85rem;
    }

    .feature-card p {
        font-size: 0.7rem;
    }

    .feature-card .feature-icon {
        font-size: 1.3rem;
    }

    .cart-widget {
        position: static;
        transform: none;
        margin: 20px auto;
        max-width: 100%;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 16px;
        margin-bottom: 1rem;
    }

    /* Footer Cart - Smaller fonts for mobile (use .special-theme for specificity) */
    .special-theme .footer-cart-total {
        font-size: 0.95rem;
    }

    .special-theme .footer-cart-count {
        font-size: 0.75rem;
    }

    .special-theme .footer-checkout-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .special-theme .footer-cart-content {
        padding: 10px 16px;
    }

    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
    }

    /* Mobile Navigation - Fix dropdown menu */
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header .nav-toggle {
        display: block;
    }

    .header .nav {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        background: rgba(26, 10, 31, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 107, 157, 0.3);
        display: none;
        gap: 0.5rem;
    }

    .header .nav.open {
        display: flex;
    }

    .header .nav-link {
        padding: 12px 16px;
        text-align: center;
        border-radius: 12px;
        font-size: 1rem;
    }

    .header .nav-link:hover {
        background: rgba(255, 107, 157, 0.2);
    }

    .header .nav .language-selector {
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header .nav .language-btn {
        width: 100%;
        justify-content: center;
    }

    .header .nav .language-dropdown {
        position: static;
        margin-top: 0.5rem;
        width: 100%;
    }

    /* Feature Cards - Stack on mobile */
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-card .feature-icon {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 0.95rem;
    }

    .feature-card p {
        font-size: 0.75rem;
    }

    /* Premium Footer - Mobile */
    .footer-premium {
        padding: 2rem 1rem;
    }

    .footer-premium-content {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .footer-brand {
        font-size: 0.9rem;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   MODAL PAYPAL (EN/ES)
   ======================================== */

.paypal-modal-content {
    max-width: 600px;
}

.paypal-modal-body {
    text-align: center;
}

.paypal-success-message {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successPulse 1.5s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.paypal-success-message p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.paypal-total {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.paypal-total strong {
    font-size: 2rem;
    display: block;
    margin-top: 0.5rem;
}

.paypal-instructions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-bottom: 2rem;
}

.paypal-instructions p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.paypal-form-container {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #ffc439 0%, #ffaa00 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 196, 57, 0.3);
}

.paypal-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.paypal-button-image {
    cursor: pointer;
    transition: transform 0.2s;
    max-width: 200px;
}

.paypal-button-image:hover {
    transform: scale(1.05);
}

.paypal-footer-note {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.paypal-footer-note p {
    margin: 0;
    color: #1976d2;
    font-size: 0.95rem;
}

.paypal-close-btn {
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.paypal-close-btn:hover {
    background: #5a6268;
}

/* Responsive para modal PayPal */
@media (max-width: 768px) {
    .paypal-modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .paypal-success-message {
        padding: 1.5rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .paypal-total strong {
        font-size: 1.5rem;
    }

    .paypal-form-container {
        padding: 1.5rem;
    }
}

/* ========================================
   MODAL PIX - Estilo similar à imagem de referência
   ======================================== */

.pix-modal-content {
    background: linear-gradient(135deg, #f5e6f5 0%, #e8d4f0 100%);
    border-radius: 20px;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pix-modal-header {
    background: transparent;
    border-bottom: none;
    padding: 1rem 1.5rem 0;
    text-align: right;
}

.pix-modal-body {
    padding: 2rem;
    text-align: center;
}

.pix-icon {
    margin-bottom: 1.5rem;
}

.pix-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b366d9 0%, #9b59b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(179, 102, 217, 0.4);
}

.pix-logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.pix-title {
    color: #b366d9;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pix-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pix-qrcode-container {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 300px;
    box-shadow: 0 8px 20px rgba(179, 102, 217, 0.15);
}

.pix-qrcode-image {
    width: 100%;
    height: auto;
    display: block;
}

.pix-info {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pix-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.pix-label {
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
}

.pix-value {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.pix-info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 0.5rem 0;
}

.pix-code-container {
    margin-top: 0.5rem;
}

.pix-code-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    color: #555;
    background: #f9f9f9;
    word-break: break-all;
    text-align: left;
}

.pix-copy-button {
    background: linear-gradient(135deg, #b366d9 0%, #9b59b6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(179, 102, 217, 0.4);
    margin-bottom: 1.5rem;
}

.pix-copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 102, 217, 0.5);
}

.pix-copy-button:active {
    transform: translateY(0);
}

.pix-footer-note {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1rem;
    border-left: 4px solid #b366d9;
}

.pix-footer-note p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   BOTÕES DE PAGAMENTO MODERNOS
   ======================================== */

.payment-options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-option-card {
    position: relative;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payment-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.payment-option-card:hover::before {
    opacity: 1;
}

.payment-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.4s ease;
}

.payment-option-card:hover .payment-card-content {
    transform: translateY(-4px);
}

.payment-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.payment-option-card:hover .payment-icon-wrapper {
    animation: pulse 0.6s ease-in-out;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.payment-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.4s ease;
}

.payment-option-card:hover .payment-icon {
    filter: brightness(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.payment-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.payment-option-card:hover .payment-name {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-description {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    transition: color 0.3s ease;
}

.payment-option-card:hover .payment-description {
    color: #764ba2;
}

.payment-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.payment-option-card input[type="radio"]:checked~.payment-check {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.payment-option-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    transform: translateY(-4px);
}

.payment-option-card input[type="radio"]:checked~* {
    animation: checkSelected 0.6s ease-out;
}

@keyframes checkSelected {
    0% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.payment-option-card input[type="radio"]:checked {
    &+.payment-card-content {
        border-color: #667eea;
    }
}

.payment-option-card input[type="radio"]:checked~.payment-card-content,
.payment-option-card:has(input[type="radio"]:checked) {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

/* Efeito de brilho ao passar o mouse */
.payment-option-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.payment-option-card:hover::after {
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Responsividade do Modal PIX */
@media (max-width: 768px) {
    .pix-modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .pix-modal-body {
        padding: 1.5rem;
    }

    .pix-title {
        font-size: 1.5rem;
    }

    .pix-circle {
        width: 60px;
        height: 60px;
    }

    .pix-circle svg {
        width: 35px;
        height: 35px;
    }

    .pix-qrcode-container {
        max-width: 250px;
        padding: 1rem;
    }

    .pix-copy-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}