/* =============================== */
/* EDEN CONTENT SECTION - IMPROVED */
/* Seção de Conteúdos Profissional */
/* =============================== */

:root {
    --eden-bg-dark: #020f0a;
    --eden-bg-light: #0a1a14;
    --eden-bg-card: rgba(10, 26, 20, 0.6);
    --eden-green: #1f6b41;
    --eden-green-light: #2a8f56;
    --eden-green-dark: #0d3824;
    --eden-gold: #e5bd64;
    --eden-gold-light: #fff0a8;
    --eden-gold-dark: #d4a854;
    --eden-text: #f4ead0;
    --eden-text-secondary: #c9b5a0;
    --eden-text-muted: #8b7a68;
    --eden-border: rgba(229, 189, 100, 0.2);
}

/* =============================== */
/* SECTION CONTAINER */
/* =============================== */

.eden-rewards-section1 {
    max-width: 1360px;
    margin: 80px auto;
    padding: 60px 40px;
    background: linear-gradient(
        135deg,
        rgba(13, 56, 36, 0.15) 0%,
        rgba(5, 31, 20, 0.25) 50%,
        rgba(2, 15, 10, 0.15) 100%
    );
    border: 1px solid var(--eden-border);
    border-radius: 24px;
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.3),
        inset 0 0 50px rgba(229, 189, 100, 0.03);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo animado (opcional) */
.eden-rewards-section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(31, 107, 65, 0.08) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.eden-rewards-section1 > * {
    position: relative;
    z-index: 2;
}

/* =============================== */
/* HEADER */
/* =============================== */

.eden-content-header1 {
    text-align: center;
    margin-bottom: 60px;
}

.eden-content-header1 > span:first-child {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(229, 189, 100, 0.12);
    border: 1px solid rgba(229, 189, 100, 0.28);
    border-radius: 999px;
    color: var(--eden-gold-light);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.eden-section-title1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 0 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.eden-section-title1 span {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--eden-gold), transparent);
    box-shadow: 0 0 12px rgba(229, 189, 100, 0.4);
}

.eden-section-title1 span:first-child {
    animation: expandLeft 0.8s ease 0.3s both;
}

.eden-section-title1 span:last-child {
    animation: expandRight 0.8s ease 0.3s both;
}

.eden-section-title1::after {
    content: attr(data-text);
}

.eden-section-title1 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--eden-gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(229, 189, 100, 0.15);
    line-height: 1.2;
}

.eden-content-header1 > p {
    color: var(--eden-text-secondary);
    font-size: 15px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* =============================== */
/* GRID DE CONTEÚDOS */
/* =============================== */

.eden-content-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

/* =============================== */
/* CONTENT CARD */
/* =============================== */

.eden-content-card1 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(6, 36, 23, 0.6) 0%,
        rgba(2, 18, 12, 0.8) 100%
    );
    border: 1px solid var(--eden-border);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(229, 189, 100, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease both;
}

.eden-content-card1:nth-child(1) {
    animation-delay: 0.3s;
}

.eden-content-card1:nth-child(2) {
    animation-delay: 0.4s;
}

.eden-content-card1:nth-child(3) {
    animation-delay: 0.5s;
}

.eden-content-card1:hover {
    transform: translateY(-12px);
    border-color: rgba(229, 189, 100, 0.5);
    box-shadow:
        0 20px 50px rgba(229, 189, 100, 0.15),
        inset 0 0 30px rgba(229, 189, 100, 0.08),
        0 0 40px rgba(229, 189, 100, 0.1);
    background: linear-gradient(
        135deg,
        rgba(31, 107, 65, 0.15) 0%,
        rgba(20, 60, 40, 0.25) 100%
    );
}

/* =============================== */
/* CONTENT PREVIEW */
/* =============================== */

.eden-content-preview1 {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(229, 189, 100, 0.15);
}

.eden-content-preview1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.eden-content-card1:hover .eden-content-preview1 img {
    transform: scale(1.08);
    filter: brightness(1.15) contrast(1.1);
}

/* =============================== */
/* CONTENT INFO */
/* =============================== */

.eden-content-info1 {
    padding: 28px;
}

.eden-content-info1 h3 {
    margin: 0 0 16px;
    color: var(--eden-gold-light);
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.eden-content-info1 h3::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, var(--eden-gold), var(--eden-green-light));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(229, 189, 100, 0.3);
}

.eden-content-card1:hover .eden-content-info1 h3 {
    color: var(--eden-gold);
    text-shadow: 0 0 12px rgba(229, 189, 100, 0.3);
}

.eden-content-info1 p {
    margin: 0;
    color: var(--eden-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    max-height: 200px;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.eden-content-card1:hover .eden-content-info1 p {
    color: var(--eden-text);
}

/* =============================== */
/* CALL TO ACTION */
/* =============================== */

.eden-rewards-register-action1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
    background: linear-gradient(
        135deg,
        rgba(31, 107, 65, 0.1) 0%,
        rgba(229, 189, 100, 0.05) 100%
    );
    border: 1px solid rgba(229, 189, 100, 0.2);
    border-radius: 16px;
    animation: fadeInUp 0.8s ease 0.5s both;
    text-align: center;
}

.eden-rewards-register-action1 p {
    margin: 0;
    color: var(--eden-text-secondary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =============================== */
/* BUTTON */
/* =============================== */



/* =============================== */
/* ANIMAÇÕES */
/* =============================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 40px;
        opacity: 1;
    }
}

@keyframes expandRight {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 40px;
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================== */
/* RESPONSIVO */
/* =============================== */

@media (max-width: 1024px) {
    .eden-rewards-section1 {
        padding: 50px 32px;
        margin: 60px auto;
    }

    .eden-content-header1 {
        margin-bottom: 50px;
    }

    .eden-section-title1 {
        font-size: 28px;
    }

    .eden-content-grid1 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }

    .eden-content-info1 {
        padding: 24px;
    }

    .eden-content-info1 h3 {
        font-size: 18px;
    }

    .eden-content-info1 p {
        font-size: 13px;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 768px) {
    .eden-rewards-section1 {
        padding: 40px 24px;
        margin: 50px auto;
        border-radius: 16px;
    }

    .eden-content-header1 {
        margin-bottom: 40px;
    }

    .eden-content-header1 > span:first-child {
        font-size: 10px;
        padding: 6px 12px;
    }

    .eden-section-title1 {
        font-size: 24px;
        gap: 12px;
    }

    .eden-section-title1 span {
        width: 30px;
        height: 2px;
    }

    .eden-content-grid1 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .eden-content-card1 {
        border-radius: 16px;
    }

    .eden-content-info1 {
        padding: 20px;
    }

    .eden-content-info1 h3 {
        font-size: 16px;
    }

    .eden-content-info1 p {
        font-size: 12px;
        -webkit-line-clamp: 3;
    }

    .eden-rewards-register-action1 {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .eden-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .eden-rewards-section1 {
        padding: 32px 18px;
        margin: 40px 18px;
    }

    .eden-content-header1 {
        margin-bottom: 32px;
    }

    .eden-section-title1 {
        font-size: 20px;
        gap: 10px;
    }

    .eden-section-title1 span {
        width: 24px;
        display: none;
    }

    .eden-content-preview1 {
        padding-bottom: 60%;
    }

    .eden-content-info1 {
        padding: 18px;
    }

    .eden-content-info1 h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .eden-content-info1 h3::before {
        height: 16px;
    }

    .eden-content-info1 p {
        font-size: 12px;
        line-height: 1.6;
        -webkit-line-clamp: 2;
    }

    .eden-rewards-register-action1 {
        padding: 24px 16px;
    }

    .eden-rewards-register-action1 p {
        font-size: 13px;
    }
}

/* =============================== */
/* DARK MODE SUPPORT */
/* =============================== */

@media (prefers-color-scheme: dark) {
    .eden-content-card1 {
        border-color: rgba(229, 189, 100, 0.15);
    }

    .eden-content-card1:hover {
        border-color: rgba(229, 189, 100, 0.4);
    }
}

/* =============================== */
/* ACESSIBILIDADE */
/* =============================== */

@media (prefers-reduced-motion: reduce) {
    .eden-content-header1 > span:first-child,
    .eden-section-title1,
    .eden-content-card1,
    .eden-rewards-register-action1 {
        animation: none;
    }

    .eden-content-card1,
    .eden-content-preview1 img,
    .eden-btn {
        transition: none;
    }
}

