/* ================================================================
   GDA OFERTAS - ESTILOS PRINCIPAIS
   ================================================================ */

:root {
    --gda-primary: #3666af;
    --gda-primary-hover: #2a4f85;
    --gda-secondary: #67b553;
    --gda-text: #333333;
    --gda-text-light: #666666;
    --gda-border: #e0e0e0;
    --gda-bg-light: #f5f7fb;
    --gda-white: #ffffff;
}

/* ================================================================
   GRID DE OFERTAS
   ================================================================ */

.gda-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

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

.gda-grid--3-colunas {
    grid-template-columns: repeat(3, 1fr);
}

.gda-grid--4-colunas {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsivo */
@media (max-width: 1024px) {
    .gda-grid--4-colunas {
        grid-template-columns: repeat(3, 1fr);
    }

    .gda-grid--3-colunas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gda-grid--4-colunas,
    .gda-grid--3-colunas,
    .gda-grid--2-colunas {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .gda-grid--4-colunas,
    .gda-grid--3-colunas,
    .gda-grid--2-colunas {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ================================================================
   CONTAINER GERAL
   ================================================================ */

.gda-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gda-section {
    margin: 40px 0;
}

.gda-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gda-text);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--gda-primary);
    padding-bottom: 10px;
}

/* ================================================================
   LOADER E SKELETON
   ================================================================ */

.gda-loading {
    text-align: center;
    padding: 40px;
}

.gda-spinner {
    border: 4px solid var(--gda-bg-light);
    border-top: 4px solid var(--gda-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: gda-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes gda-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================================================================
   HELPER CLASSES
   ================================================================ */

.gda-text-center {
    text-align: center;
}

.gda-mt-20 {
    margin-top: 20px;
}

.gda-mb-20 {
    margin-bottom: 20px;
}

.gda-p-20 {
    padding: 20px;
}

.gda-hidden {
    display: none !important;
}

.gda-visible {
    display: block !important;
}

/* ================================================================
   ACESSIBILIDADE
   ================================================================ */

.gda-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ================================================================
   TRANSIÇÃO E ANIMAÇÕES
   ================================================================ */

* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gda-no-transition {
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
