/* =============================================
   INTENÇÕES DE MISSA — CSS
   Extends oratorio.css + ../style.css
   ============================================= */

/* ============ HERO OVERRIDE ============ */
/* Hero com imagem de fundo */
.int-hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

.int-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(44, 36, 32, 0.65) 0%,
            rgba(44, 36, 32, 0.55) 40%,
            rgba(44, 36, 32, 0.75) 100%
        ),
        radial-gradient(ellipse at 50% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 40%, rgba(201, 168, 96, 0.08) 0%, transparent 45%);
    z-index: 1;
}

/* ============ ENVIAR SECTION ============ */
.int-enviar-section {
    padding: 120px 40px;
    background: var(--cream);
    position: relative;
}

.int-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
}

/* Info Card Body */
.int-info-body {
    padding: 24px 28px 28px;
}

.int-info-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Tipos de intenção */
.int-tipos h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.int-tipos h4 i {
    color: var(--primary-light);
    font-size: 14px;
}

.int-tipo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.int-tipo-item:last-child {
    border-bottom: none;
}

.int-tipo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--tipo-color) 12%, transparent);
    border-radius: 50%;
    flex-shrink: 0;
}

.int-tipo-icon i {
    font-size: 14px;
    color: var(--tipo-color);
}

.int-tipo-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.int-tipo-item span {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

/* ============ FORM EXTRAS ============ */
/* Select */
.int-select {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    outline: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B7B73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.int-select:focus {
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 168, 96, 0.1);
}

/* Textarea */
.ora-form textarea {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    outline: none;
    resize: vertical;
    min-height: 120px;
    transition: all var(--transition-fast);
    line-height: 1.7;
}

.ora-form textarea::placeholder {
    color: var(--gray-light);
}

.ora-form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 168, 96, 0.1);
}

.int-char-count {
    text-align: right;
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 6px;
    font-family: var(--font-body);
}

/* ============ MURAL SECTION (dark) ============ */
.int-mural-section {
    padding: 120px 40px;
    background: var(--gradient-dark);
    position: relative;
}

/* Counter Chips / Filters */
.int-counters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.int-counter-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.int-counter-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 96, 0.3);
}

.int-counter-chip.active {
    background: rgba(201, 168, 96, 0.15);
    border-color: rgba(201, 168, 96, 0.4);
}

.int-counter-chip i {
    font-size: 13px;
    color: var(--gold);
}

.int-counter-num {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
}

.int-counter-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ============ MURAL CARDS ============ */
.int-mural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.int-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 28px 24px 22px;
    backdrop-filter: blur(6px);
    transition: all var(--transition-base);
    animation: oraSlideUp 0.5s ease both;
    overflow: hidden;
}

.int-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 168, 96, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Top colored accent */
.int-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.int-card[data-tipo="cura"] .int-card__accent         { background: linear-gradient(90deg, #22c55e, #86efac); }
.int-card[data-tipo="libertacao"] .int-card__accent    { background: linear-gradient(90deg, #7c3aed, #c4b5fd); }
.int-card[data-tipo="acao_gracas"] .int-card__accent   { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.int-card[data-tipo="outra"] .int-card__accent         { background: linear-gradient(90deg, #6b7280, #d1d5db); }

/* Card header */
.int-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.int-card__nome {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
}

.int-card__tipo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.int-card[data-tipo="cura"] .int-card__tipo-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}
.int-card[data-tipo="libertacao"] .int-card__tipo-badge {
    background: rgba(124, 58, 237, 0.15);
    color: #c4b5fd;
}
.int-card[data-tipo="acao_gracas"] .int-card__tipo-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
}
.int-card[data-tipo="outra"] .int-card__tipo-badge {
    background: rgba(107, 114, 128, 0.15);
    color: #d1d5db;
}

/* Card text */
.int-card__texto {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.int-card__data {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.int-card__data i {
    font-size: 10px;
}

/* Stagger */
.int-card:nth-child(1)  { animation-delay: 0s; }
.int-card:nth-child(2)  { animation-delay: 0.06s; }
.int-card:nth-child(3)  { animation-delay: 0.12s; }
.int-card:nth-child(4)  { animation-delay: 0.18s; }
.int-card:nth-child(5)  { animation-delay: 0.24s; }
.int-card:nth-child(6)  { animation-delay: 0.3s; }

/* Reuse animation from oratorio.css */
@keyframes oraSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .int-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .int-enviar-section,
    .int-mural-section {
        padding: 80px 20px;
    }

    .int-mural-grid {
        grid-template-columns: 1fr;
    }

    .int-counters {
        gap: 8px;
    }

    .int-counter-chip {
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .int-info-body {
        padding: 20px 16px 24px;
    }

    .int-counter-label {
        display: none;
    }

    .int-card {
        padding: 22px 18px 18px;
    }
}