/**
 * LDC Landing Addons - CSS Complementar
 * 
 * Estilos EXTRAS que complementam o CSS existente
 */

/* Pix Container */
.ldc-pix-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.ldc-qrcode-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ldc-qrcode-wrapper img {
    max-width: 100%;
    height: auto;
}

.ldc-copia-cola {
    margin-top: 20px;
}

/* Áreas de Atendimento */
.ldc-areas-atendimento {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ldc-areas-atendimento h3 {
    margin-top: 0;
    color: #2c3e50;
    margin-bottom: 20px;
}

.ldc-lista-cidades {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ldc-cidade-item {
    padding: 15px 20px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ldc-cidade-nome {
    font-size: 16px;
    color: #2c3e50;
}

.ldc-cidade-cep {
    font-size: 13px;
    color: #7f8c8d;
}

/* Status Pedido */
.ldc-status-pedido {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ldc-status-pedido h3 {
    margin-top: 0;
    color: #2c3e50;
}

.ldc-consulta-form {
    margin: 20px 0;
}

.ldc-status-resultado {
    margin-top: 20px;
}

/* WhatsApp Button */
.ldc-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366 !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.ldc-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: white !important;
    text-decoration: none;
}

.ldc-whatsapp-btn i {
    font-size: 20px;
}

/* Mensagens de Status */
.ldc-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 5px;
    border-left: 4px solid #dc3545;
}

.ldc-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 12px 20px;
    border-radius: 5px;
    border-left: 4px solid #17a2b8;
}

.ldc-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 5px;
    border-left: 4px solid #28a745;
}

/* Responsividade */
@media (max-width: 768px) {
    .ldc-cidade-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ldc-pix-container,
    .ldc-areas-atendimento,
    .ldc-status-pedido {
        padding: 20px;
    }
}
