/* Estilos específicos para WaveZip */

:root {
    --wavezip-primary: #2563eb;
    --wavezip-secondary: #1d4ed8;
    --wavezip-accent: #60a5fa;
    --code-background: #1e1e1e;
    --code-text: #d4d4d4;
}

/* Hero Section */
.wavezip-hero {
    background: linear-gradient(135deg, var(--wavezip-primary), var(--wavezip-secondary));
    padding: 8rem 0 6rem;
    color: white;
}

.wavezip-hero .container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.wavezip-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Code Window */
.code-window {
    background: var(--code-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: #2d2d2d;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.window-controls span:nth-child(2) {
    background: #ffbd2e;
}

.window-controls span:nth-child(3) {
    background: #27c93f;
}

.code-title {
    color: var(--code-text);
    font-size: 0.875rem;
    opacity: 0.8;
}

.code-content {
    padding: 1.5rem;
}

.code-content pre {
    margin: 0;
    font-family: 'Fira Code', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--code-text);
}

/* API Explorer */
.wavezip-explorer {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

.explorer-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.explorer-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 6px;
    font-size: 1rem;
}

.response-window {
    background: var(--code-background);
    border-radius: 8px;
    overflow: hidden;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--code-text);
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.copy-btn:hover {
    opacity: 1;
}

/* Features Section */
.wavezip-features {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--wavezip-accent);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wavezip-limits {
    padding: 6rem 0;
}

.wavezip-limits .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.limits-grid {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.limit-card{
    display: grid;
    grid-template-rows: 1fr 1fr;
    align-items: center;
}

.limit-card .header-grid {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 6px;
    align-items: center;
}

.limit-card .header-grid .limit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA Section */
.wavezip-cta {
    background: linear-gradient(135deg, var(--wavezip-primary), var(--wavezip-secondary));
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.cta-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

/* FAQs */
.wavezip-faqs {
    padding: 6rem 0;
}

.faqs-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-answer {
    padding: 0 0 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .wavezip-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .api-stats {
        justify-content: center;
    }

    .explorer-form {
        flex-direction: column;
    }

    .cta-form {
        flex-direction: column;
        padding: 0 1rem;
    }
}