/* Unete Page Styles */

.unete-page {
    padding: 40px 0;
    min-height: 60vh;
    background-color: #f8f9fa;
}

.unete-intro {
    text-align: center;
    margin-bottom: 50px;
}

.unete-intro h1 {
    font-size: 2.5rem;
    color: var(--primary-blue, #1d277c);
    /* Fallback or var */
    margin-bottom: 15px;
    font-weight: 800;
}

.unete-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.unete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.unete-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.unete-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.icon-wrapper.blue {
    background-color: #1d277c;
}

.unete-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.unete-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Specific Card Styles */

/* QR Card */
.qr-placeholder {
    width: 200px;
    height: 200px;
    background-color: white;
    /* Clean background */
    border: 1px solid #eee;
    /* Subtle border instead of dashed */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* Internal padding */
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
}

/* Buttons */
.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-whatsapp-large:hover {
    background-color: #1ebc57;
}

.btn-primary-large {
    background-color: #1d277c;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary-large:hover {
    background-color: #151d5c;
}

.small-text {
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.7;
}