/* =========================================
   ELIMINAR CUENTA - PUBLIC PAGE
   Rastro Ripollet - v1.0
   ========================================= */

.page-container {
    min-height: calc(100vh - 100px);
    background-color: #fafafa;
    padding-bottom: 80px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 1024px) {
    .info-section {
        grid-template-columns: 1.4fr 1fr 1fr;
        align-items: stretch;
    }
}

/* Base Card Style */
.info-card, .detail-card, .support-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.info-card {
    text-align: center;
    border: 2px solid #1a1a1a;
    justify-content: center;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #f4f4f4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a1a1a;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 15px;
}

.steps-list {
    text-align: left;
    max-width: 100%;
    margin: 0 0 24px 0;
    padding-left: 20px;
    color: #444;
    font-size: 14px;
}

.steps-list li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.inline-link {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin: 0 auto;
}

@media (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        background: #000;
    }
}

/* Details Grid */
.details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    flex: 1;
}

.detail-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.detail-card p, .detail-card li {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.detail-card ul.clean-list {
    padding-left: 0;
    margin-top: 12px;
    list-style: none;
}

.detail-card .clean-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 13.5px;
}

.detail-card .clean-list li svg {
    flex-shrink: 0;
    color: #1a1a1a;
    opacity: 0.7;
}

/* Support Card */
.support-card {
    background: #fdfdfd;
    text-align: center;
    justify-content: center;
}

.support-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.support-card p {
    color: #666;
    margin-bottom: 16px;
    font-size: 14px;
}

.email-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f0f0f0;
    width: fit-content;
    margin: 0 auto 16px;
    padding: 10px 20px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

@media (hover: hover) {
    .email-box:hover {
        background: #e5e5e5;
    }
}

.email-box a {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.small-text {
    font-size: 12px;
    color: #888 !important;
    max-width: 100%;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1023px) {
    .info-card, .detail-card, .support-card {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-header {
        padding: 40px 20px 20px;
    }
}
