/* Desktop Specific Styles - ForYouSpecial */

/* Hero Desktop */
.hero-desktop {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Terminal Desktop */
.terminal-desktop {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.6);
}

.terminal-dot:nth-child(2) {
    background: rgba(255, 107, 157, 0.4);
}

.terminal-dot:nth-child(3) {
    background: rgba(255, 107, 157, 0.3);
}

.terminal-title {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
}

.terminal-body {
    padding: 2rem 2.5rem;
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace;
    font-size: 1rem;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.35rem;
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
    line-height: 1.5;
}

.terminal-line:empty {
    margin-bottom: 0.6rem;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.terminal-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--primary-pink);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.terminal-prompt {
    color: var(--accent-pink-light);
}

.terminal-text {
    color: #d4d4d4;
}

.terminal-highlight {
    color: var(--primary-pink);
    font-weight: 600;
}

.terminal-heart {
    color: var(--primary-pink);
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.terminal-success {
    color: #27c93f;
}

.terminal-info {
    color: #61dafb;
}

.terminal-image-preview {
    display: inline-block;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 8px;
    animation: imageSlideIn 0.5s ease;
    position: relative;
    width: 100%;
}

.terminal-image-slider {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 157, 0.5) transparent;
}

.terminal-image-slider::-webkit-scrollbar {
    height: 4px;
}

.terminal-image-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.terminal-image-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 157, 0.5);
    border-radius: 2px;
}

.terminal-image-slider img {
    max-width: 120px;
    max-height: 80px;
    border-radius: 6px;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    animation: imageSlideIn 0.5s ease;
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.terminal-upload-progress {
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--accent-pink-light);
}

.terminal-upload-progress::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-pink);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hero Text Desktop */
.hero-text-desktop {
    text-align: left;
}

.hero-title-desktop {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.75rem;
    letter-spacing: -0.04em;
    text-shadow: 0 0 60px rgba(255, 107, 157, 0.2);
}

.hero-subtitle-desktop {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 600px;
}

.cta-primary-desktop {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1875rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.cta-primary-desktop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary-desktop:hover::before {
    width: 500px;
    height: 500px;
}

.cta-primary-desktop:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-glow-strong);
}

.hero-stats-desktop {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Features Desktop */
.features-desktop {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-desktop {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.features-grid-desktop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card-desktop {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
}

.feature-card-desktop:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
}

.feature-icon-desktop {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card-desktop h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card-desktop p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Desktop */
.testimonials-desktop {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-desktop {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    text-align: center;
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-stars {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Gift Slider Desktop — estilo hero, 10s por slide */
.gift-slider-desktop {
    position: relative;
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
}
.gift-slider-inner-desktop {
    position: relative;
    width: 100%;
    min-height: 380px;
}
.gift-slide-desktop {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gift-slide-desktop.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}
.gift-slide-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}
.gift-slide-cartinha { background: linear-gradient(165deg, rgba(26,10,20,0.96) 0%, rgba(15,8,18,0.98) 100%); }
.gift-slide-cartinha::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(236,72,153,0.18) 0%, transparent 50%); }
.gift-slide-canva { background: linear-gradient(165deg, rgba(18,10,26,0.96) 0%, rgba(13,8,24,0.98) 100%); }
.gift-slide-canva::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124,58,237,0.2) 0%, transparent 50%); }
.gift-slide-capsule { background: linear-gradient(165deg, rgba(8,22,26,0.96) 0%, rgba(6,18,24,0.98) 100%); }
.gift-slide-capsule::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(13,148,136,0.16) 0%, transparent 50%); }
.gift-slide-content-desktop {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
}
.gift-slide-icon-desktop {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 24px rgba(255,255,255,0.2));
}
.gift-slide-headline-desktop {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.gift-slide-headline-desktop .highlight-gradient {
    background: linear-gradient(135deg, #ff6b9d 0%, #c77dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gift-slide-desc-desktop {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}
.gift-slide-cta-desktop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c77dff 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(255,107,157,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.gift-slide-cta-desktop:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(255,107,157,0.45); }
.gift-slider-dots-desktop {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}
.gift-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gift-slider-dot:hover { background: rgba(255,255,255,0.3); }
.gift-slider-dot.active { background: #fff; border-color: #fff; box-shadow: 0 0 12px rgba(255,255,255,0.6); }
.gift-slider-hint-desktop {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    margin-top: 0.5rem;
}

/* Product Types — seletor + tutorial (estilo create/choose) Desktop */
.product-types-desktop {
    position: relative;
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-radius: 32px;
    overflow: hidden;
    transition: background 0.6s ease;
}

.product-types-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
    transition: opacity 0.6s ease;
}
.product-types-desktop.product-types-theme-cartinha .product-types-atmosphere {
    background: linear-gradient(165deg, rgba(26, 10, 20, 0.95) 0%, rgba(15, 8, 18, 0.98) 50%, rgba(20, 8, 24, 0.95) 100%);
    box-shadow: inset 0 0 100px rgba(236, 72, 153, 0.08);
}
.product-types-desktop.product-types-theme-cartinha .product-types-atmosphere::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(190, 24, 93, 0.08) 0%, transparent 45%);
}
.product-types-desktop.product-types-theme-canva .product-types-atmosphere {
    background: linear-gradient(165deg, rgba(18, 10, 26, 0.95) 0%, rgba(13, 8, 24, 0.98) 50%, rgba(20, 12, 36, 0.95) 100%);
    box-shadow: inset 0 0 100px rgba(124, 58, 237, 0.08);
}
.product-types-desktop.product-types-theme-canva .product-types-atmosphere::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 45%);
}
.product-types-desktop.product-types-theme-capsule .product-types-atmosphere {
    background: linear-gradient(165deg, rgba(8, 22, 26, 0.95) 0%, rgba(6, 18, 24, 0.98) 50%, rgba(10, 28, 34, 0.95) 100%);
    box-shadow: inset 0 0 100px rgba(13, 148, 136, 0.08);
}
.product-types-desktop.product-types-theme-capsule .product-types-atmosphere::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 70%, rgba(45, 212, 191, 0.08) 0%, transparent 45%);
}

.product-types-desktop .section-title-desktop,
.product-types-desktop .section-subtitle-desktop,
.product-types-desktop .product-types-selector-desktop,
.product-types-desktop .product-types-tutorial-desktop,
.product-types-desktop .cta-product-types { position: relative; z-index: 1; }

.product-types-desktop .section-subtitle-desktop { margin-bottom: 2rem; }

/* Seletor (tabs) */
.product-types-selector-desktop {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.product-type-tab-desktop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-type-tab-desktop:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.product-type-tab-desktop.active {
    border-color: rgba(255, 107, 157, 0.5);
    background: rgba(255, 107, 157, 0.15);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.2);
}
.product-types-desktop.product-types-theme-canva .product-type-tab-desktop.active {
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}
.product-types-desktop.product-types-theme-capsule .product-type-tab-desktop.active {
    border-color: rgba(13, 148, 136, 0.5);
    background: rgba(13, 148, 136, 0.15);
    box-shadow: 0 0 30px rgba(13, 148, 136, 0.2);
}
.product-type-tab-icon { font-size: 1.4rem; }
.product-type-tab-label { white-space: nowrap; }

/* Tutorial (painel que muda) */
.product-types-tutorial-desktop {
    max-width: 520px;
    margin: 0 auto 2.5rem;
    text-align: left;
}
.product-types-tutorial-panel {
    display: none;
    padding: 1.75rem 2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: productTypesFadeIn 0.4s ease;
}
.product-types-tutorial-panel.active { display: block; }
@keyframes productTypesFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-types-desktop.product-types-theme-cartinha .product-types-tutorial-panel.active {
    border-color: rgba(236, 72, 153, 0.2);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.06);
}
.product-types-desktop.product-types-theme-canva .product-types-tutorial-panel.active {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.06);
}
.product-types-desktop.product-types-theme-capsule .product-types-tutorial-panel.active {
    border-color: rgba(13, 148, 136, 0.2);
    box-shadow: 0 0 40px rgba(13, 148, 136, 0.06);
}
.product-types-tutorial-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}
.product-types-tutorial-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}
.product-types-tutorial-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.5;
}
.product-types-tutorial-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}
.product-types-desktop.product-types-theme-cartinha .product-types-tutorial-list li::before { color: #f472b6; }
.product-types-desktop.product-types-theme-canva .product-types-tutorial-list li::before { color: #a78bfa; }
.product-types-desktop.product-types-theme-capsule .product-types-tutorial-list li::before { color: #2dd4bf; }
.product-types-tutorial-ideal {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.product-types-tutorial-ideal strong { color: rgba(255, 255, 255, 0.9); }

.cta-product-types { margin-top: 0.5rem; }

/* Use Cases Desktop */
.usecases-desktop {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle-desktop {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.usecases-grid-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.usecase-card-desktop {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
}

.usecase-card-desktop:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 157, 0.3);
}

.usecase-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.usecase-card-desktop h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.usecase-card-desktop p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Trust Desktop */
.trust-desktop {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card-desktop {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    text-align: center;
}

.trust-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.trust-title-desktop {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.trust-text-desktop {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer Desktop */
.footer-desktop {
    padding: 3rem 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 157, 0.1);
    color: var(--text-muted);
}

/* Responsive Desktop */
@media (max-width: 1024px) {
    .hero-content-desktop {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text-desktop {
        text-align: center;
    }
    
    .features-grid-desktop,
    .testimonials-grid-desktop {
        grid-template-columns: repeat(2, 1fr);
    }

    .usecases-grid-desktop {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-desktop {
        padding: 60px 20px;
    }
    
    .features-desktop,
    .testimonials-desktop,
    .usecases-desktop,
    .trust-desktop {
        padding: 60px 20px;
    }
    
    .features-grid-desktop,
    .testimonials-grid-desktop,
    .usecases-grid-desktop {
        grid-template-columns: 1fr;
    }
}

