/* 
  BOSYN CTA Component Styles
*/

.cta-section {
    background-color: var(--bg-offwhite);
    padding: var(--space-4xl) var(--space-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-container {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.cta-container a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.cta-button {
    background-color: var(--black-logo);
    color: var(--bg-offwhite);
    font-family: var(--font-family-title);
    font-weight: var(--font-weight-title);
    font-size: 1.25rem;
    padding: var(--space-md) var(--space-2xl);
    border: none;
    border-radius: var(--radius-interactive); /* Regra de Ouro: 4px */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 0 rgba(0, 240, 255, 0.2); /* Sutil rastro tech */
}

.cta-button:hover {
    background-color: #1a1e22; /* Leve clareada */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 0 12px rgba(0, 240, 255, 0.3);
}

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

.cta-microcopy {
    font-family: var(--font-family-data);
    font-weight: var(--font-weight-data);
    font-size: 0.85rem;
    color: var(--text-charcoal);
    opacity: 0.6;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .cta-button {
        padding: var(--space-md) var(--space-lg);
        font-size: 1.1rem;
        width: 100%;
    }
}
